@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary Colors */
    --primary-red: #DC143C;
    --primary-dark-blue: #003366;
    --primary-green: #228B22;

    /* Gradient Variations */
    --gradient-blue-red: linear-gradient(135deg, #003366 0%, #DC143C 100%);
    --gradient-green-blue: linear-gradient(135deg, #228B22 0%, #003366 100%);
    --gradient-red-green: linear-gradient(135deg, #DC143C 0%, #228B22 100%);

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-dark: #1A1A1A;

    /* Accent Colors */
    --red-light: #FF6B6B;
    --blue-light: #4A90E2;
    --green-light: #4CAF50;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-gray);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Header Styles */
header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark-blue);
    font-family: 'Poppins', sans-serif;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-gray);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-blue-red);
    transform: translateX(-50%);
    transition: var(--transition-normal);
}

nav ul li a:hover {
    color: var(--primary-red);
    background: rgba(220, 20, 60, 0.05);
}

nav ul li a:hover::before {
    width: 80%;
}

nav ul li a.active {
    background: var(--gradient-blue-red);
    color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-dark-blue);
    transition: var(--transition-normal);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: var(--gradient-blue-red);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="rgba(255,255,255,0.05)" d="M0,0 C300,60 900,60 1200,0 L1200,120 L0,120 Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-dark-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: var(--primary-green);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-blue-red);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Cards Grid */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    margin: 3rem auto 0;
    width: 100%;
}

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex: 0 1 350px;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-blue-red);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue-red);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

.card p {
    color: var(--dark-gray);
    line-height: 1.8;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-left: 5px solid var(--primary-green);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-red);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.product-name {
    font-size: 1.3rem;
    color: var(--primary-dark-blue);
    font-weight: 600;
}

.product-details {
    color: var(--dark-gray);
    line-height: 1.8;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
}

/* New Alternating Product Layout */
.product-list-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.product-row:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-row:nth-child(even) {
    flex-direction: row-reverse;
}

.product-content {
    flex: 1;
}

.product-image {
    flex: 1;
    height: 350px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-row:hover .product-image img {
    transform: scale(1.05);
}

.product-row .product-name {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark-blue);
}

.product-meta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.meta-item {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.meta-item strong {
    color: var(--primary-red);
}

@media (max-width: 992px) {
    .product-row {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem;
    }

    .product-image {
        width: 100%;
        height: 300px;
    }
}

/* Vision, Mission, Values Section */
.vmv-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.vmv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border-top: 5px solid transparent;
    flex: 0 1 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vmv-card:nth-child(1) {
    border-top-color: var(--primary-red);
}

.vmv-card:nth-child(2) {
    border-top-color: var(--primary-dark-blue);
}

.vmv-card:nth-child(3) {
    border-top-color: var(--primary-green);
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-blue-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.vmv-card:nth-child(2) .vmv-icon {
    background: var(--gradient-green-blue);
}

.vmv-card:nth-child(3) .vmv-icon {
    background: var(--gradient-red-green);
}

.vmv-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

.vmv-card p {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.contact-item:hover {
    background: rgba(220, 20, 60, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-single-container {
    max-width: 600px;
    margin: 3rem auto 0;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-dark-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25d366;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn-large:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn-large span {
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-dark-blue);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: var(--gradient-blue-red);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Product Grid - Alternating Side-by-Side Layout */
.product-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    padding: 2rem;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

/* Alternate layout - even products flip the order */
.product-card:nth-child(even) {
    direction: rtl;
}

.product-card:nth-child(even)>* {
    direction: ltr;
}

.product-image-wrapper {
    height: 350px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.product-number-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-blue-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.product-card-body {
    padding: 1rem;
}

.product-title {
    font-size: 2rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.product-category {
    display: inline-block;
    background: var(--gradient-blue-red);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
}

.product-short-info {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.expand-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    background: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    transition: var(--transition-normal);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.expand-toggle:hover {
    background: var(--primary-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 51, 102, 0.4);
}

.expand-toggle::after {
    content: '▼';
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.product-card.expanded .expand-toggle {
    background: var(--primary-dark-blue);
}

.product-card.expanded .expand-toggle::after {
    transform: rotate(180deg);
}

.product-expanded-content {
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin-top: 0;
}

.product-card.expanded .product-expanded-content {
    max-height: 600px;
    padding: 2rem;
    margin-top: 2rem;
    border-top: 3px solid var(--primary-red);
}

.product-expanded-inner {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-detail-row {
    margin-bottom: 1.5rem;
}

.product-detail-row strong {
    display: block;
    color: var(--primary-dark-blue);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.product-detail-row p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.product-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.meta-badge {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary-dark-blue);
    transition: var(--transition-normal);
}

.meta-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.meta-badge strong {
    display: block;
    color: var(--primary-red);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-badge span {
    color: var(--primary-dark-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .product-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card:nth-child(even) {
        direction: ltr;
    }

    .product-image-wrapper {
        height: 280px;
    }

    .product-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .product-grid {
        gap: 2rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-image-wrapper {
        height: 220px;
    }

    .product-title {
        font-size: 1.4rem;
    }

    .product-number-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    background: var(--primary-dark-blue);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    display: block;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.contact-details a {
    transition: var(--transition-normal);
}

.contact-details a:hover {
    color: var(--primary-red) !important;
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-lg);
        padding: 1rem 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        padding: 1rem 2rem;
        border-radius: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .vmv-container {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }

    .logo {
        height: 45px;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 1.5rem;
    }
}