/* style.css */
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette matching the logo's theme */
    --primary: #1a365d; /* Dark blue from logo */
    --secondary: #2d7dd2; /* Accent blue */
    --accent: #00674F; /* Teal accent */
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --emerald_green: #00674F;
    --gold: #c09d50;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ab862f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.nav-menu .btn-outline {
    border-color: var(--gold);
    color: var(--gold);
    padding: 8px 20px;
}

.nav-menu .btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Add animation classes */
.service-card, .benefit-item, .process-step, .service-detail-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.animate, .benefit-item.animate, .process-step.animate, .service-detail-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Active state for navigation */
.nav-menu a.active {
    color: var(--accent) !important;
    font-weight: 600 !important;
}

.nav-menu a.active::after {
    width: 100% !important;
    background-color: var(--accent) !important;
}

/* Ensure Home link gets proper styling when active */
.nav-menu a[href="index.html"].active {
    color: var(--accent) !important;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.highlight {
    color: var(--accent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 15px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 0 auto;
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 90px; /* Adjust based on your logo size */
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.1;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* Remove the old logo styles that might conflict */
.logo {
    /* Remove these old styles if they exist */
    flex-direction: row !important;
    align-items: center !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Regular navigation links */
.nav-menu li a:not(.btn-outline) {
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

.nav-menu li a:not(.btn-outline):hover {
    color: var(--accent);
}

.nav-menu li a:not(.btn-outline).active {
    color: var(--accent);
    font-weight: 600;
}

/* Green underline for regular navigation links only */
.nav-menu li a:not(.btn-outline)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent); /* Green color */
    transition: var(--transition);
}

.nav-menu li a:not(.btn-outline):hover::after {
    width: 100%;
}

/* Special styling for the Get in Touch button */
/* Get in Touch button styling */
.nav-menu .btn-outline {
    border-color: var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    position: relative;
    margin-bottom: 6px; /* Create space for the golden line below */
}

.nav-menu .btn-outline:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

/* Golden line BELOW the button - outside the boundary */
.nav-menu .btn-outline::after {
    content: '';
    position: absolute;
    bottom: -6px; /* Position OUTSIDE below the button */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: width 0.3s ease;
    z-index: 1; /* Ensure it appears above other elements */
}

.nav-menu .btn-outline:hover::after {
    width: 80%; /* Width of the golden line (80% of button width) */
}

/* Remove any existing underline effects for the button */
.nav-menu .btn-outline:not(.btn-outline)::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

/* Video Background Container */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* Video Styling */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    filter: brightness(0.9); /* Slight brightness for better text contrast */
}

/* Light video overlay - Reduced opacity to show video clearly */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.3); /* Much lighter overlay */
    z-index: -1;
}

/* Hero Content Container */
.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

/* Alternative: Gradient Blur Card */
.hero-blur-card {
    position: absolute;
    top: -30px;
    left: -40px;
    right: -40px;
    bottom: -30px;
    background: 
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.05) 100%
        );
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: -1;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Add a subtle glow effect around the blur card */
.hero-blur-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 70%
    );
    border-radius: 20px;
    z-index: -1;
}

/* Text Content Container */
.hero-text-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Video fallback if video fails to load */
.hero:has(.hero-video:not([src])) .video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a365d 0%, #2d7dd2 100%);
    z-index: -1;
}

/* Trust Bar - Complete Fix */
.trust-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 25px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.trust-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 600;
}

.marketplace-logos-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
}

/* CRITICAL FIX: Start with track positioned to hide Amazon */
.marketplace-logos-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
    padding: 0 40px;
    /* Start with Amazon logo completely hidden under gradient */
    transform: translateX(220px); /* Large offset to hide first Amazon */
}

/* CRITICAL FIX: Animation with large initial offset */
@keyframes scrollLogos {
    0% {
        transform: translateX(220px); /* Start hidden */
    }
    100% {
        transform: translateX(calc(-50% + 220px)); /* Move half width minus offset */
    }
}

.marketplace-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    min-width: 140px;
}

.marketplace-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Fallback text styles */
.logo-fallback {
    display: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    text-align: center;
}

/* CRITICAL FIX: Much wider and stronger left gradient */
.marketplace-logos-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 250px; /* Much wider */
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg, 
        var(--primary) 0%, 
        var(--primary) 80px,      /* Solid for first 80px */
        rgba(26, 54, 93, 0.95) 120px, /* Very strong fade */
        rgba(26, 54, 93, 0.85) 160px,
        rgba(26, 54, 93, 0.7) 200px,
        transparent 250px
    );
}

.marketplace-logos-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(270deg, var(--primary) 0%, transparent 100%);
}
/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-quote {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    max-width: 600px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}

.quote-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
}

/* Services Preview */
.services-preview {
    background-color: #f8f9fa;
    padding: 80px 0;
    border-top: 1px solid #eaecef;
    border-bottom: 1px solid #eaecef;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: #27405e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Why Us Section */
.why-us {
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    border-left: 2px solid var(--emerald_green);
    background: linear-gradient(
        to right,
        rgba(100, 255, 218, 0.10),
        transparent
    );
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.benefit-item:hover {
    background: linear-gradient(
        to right,
        rgba(100, 255, 218, 0.18),
        transparent
    );
}

.benefit-icon {
    font-size: 2rem;
    color: #27405e; /* --accent */
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-title {
    color: #0f2a47; /* --white */
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-description {
    font-size: 0.9rem;
    color: #8892b0; /* --secondary (implicit but recommended) */
}


/* Approach Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--accent);
    font-weight: 300;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-description {
    color: var(--gray);
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #0f2948;
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-description {
    opacity: 0.8;
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    opacity: 0.8;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--emerald_green);
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--accent);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}
/* Footer Logo Styles */
.footer-logo .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo .logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.5px;
    white-space: nowrap; /* Ensures text stays in one line */
}

.footer-logo .logo-tagline {
    font-size: 0.7rem;
    color: var(--accent); /* Using gold color to match theme */
    font-weight: 600;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.footer-description {
    opacity: 0.8;
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}
/* Footer container spacing */
.footer .container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Ensure footer content has proper spacing */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
    margin-left: 0;
    padding-left: 0;
}
/* Services Page */
.page-hero {
    background: linear-gradient(135deg, #0f2a47 0%, #00674F 100%);
    color: var(--white);
    padding: 150px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.page-hero-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 40px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent);
}

.service-detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 201, 183, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.service-detail-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

.service-detail-title {
    font-size: 1.8rem;
    color: var(--primary);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-detail-what h3,
.service-detail-outcome h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-detail-what ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-detail-what ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

.service-detail-outcome p {
    font-size: 1.1rem;
    background-color: rgba(0, 201, 183, 0.1);
    padding: 20px;
    border-radius: 6px;
    border-left: 3px solid var(--accent);
}

/* ===== 4-Step Growth Framework (Redesign) ===== */

.approach-alt {
    background-color: #f8f9fa;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(192, 157, 80, 0.15);
    color: var(--gold);
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}
/* =========================================
   10. APPROACH (Legacy Process)
   ========================================= */

.framework-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px;
}

.framework-row.reverse {
    flex-direction: row-reverse;
}

.framework-visual {
    flex: 1;
    position: relative;
}

.framework-card {
    background: #112240; /* --bg-light */
    border: 2px solid var(--emerald_green); /* --accent */
    padding: 40px;
    border-radius: 8px; /* --radius */
    position: relative;
    overflow: hidden;
}

.framework-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(100, 255, 218, 0.05) 50%,
        transparent 60%
    );
    background-size: 200% 200%;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.step-number-lg {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    right: 20px;
}

.framework-card p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e6f1ff; /* --white */
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.framework-content {
    flex: 1;
}

.framework-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
}

.framework-content h3 {
    font-size: 2rem;
    color: #0f2a47; /* --white */
    margin-bottom: 15px;
}

/* Contact Page */
/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a6d 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 30px;
    align-items: start;
}

/* Contact Information */
.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-info-text {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-detail-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-detail-content p {
    color: var(--gray);
    margin-bottom: 3px;
    font-size: 0.95rem;
}

/* Social Contact */
.social-contact h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.social-icons-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    color: var(--dark);
    transition: var(--transition);
}

.social-icon-contact:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.social-icon-contact i {
    font-size: 1.1rem;
}

.social-icon-contact span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Form */
.contact-section {
    background: var(--light);
}
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form-header p {
    color: var(--gray);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 103, 79, 0.1);
}

.form-group.focused label {
    color: var(--accent);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.btn-submit {
    align-self: flex-start;
    padding: 14px 40px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-submit i {
    font-size: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: -10px;
}

/* FAQ Section */
.faq-section {
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 103, 79, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: modalFade 0.3s ease;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}


/* Redesign: What we do  */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

/* Center last row if fewer items */
.services-grid > .service-card {
    justify-self: center;
    max-width: 360px;
    width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1025px) {
    .services-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .services-grid .service-card {
        grid-column: span 2;
    }

    /* Center the last two cards */
    .services-grid .service-card:nth-last-child(2) {
        grid-column: 2 / span 2;
    }

    .services-grid .service-card:last-child {
        grid-column: 4 / span 2;
    }
}

/* Redesign: Why Brands Choose Us */
/* ===== Redesign: Why Brands Choose Us ===== */

.benefits-grid {
    display: grid;
    gap: 30px;
    justify-content: center;
}

/* Card consistency */
.benefits-grid > .benefit-item {
    max-width: 360px;
    width: 100%;
    justify-self: center;
}

/* Tablet */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Desktop: 3 + 2 centered layout */
@media (min-width: 1025px) {
    .benefits-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .benefits-grid .benefit-item {
        grid-column: span 2;
    }

    /* Center the last two cards */
    .benefits-grid .benefit-item:nth-last-child(2) {
        grid-column: 2 / span 2;
    }

    .benefits-grid .benefit-item:last-child {
        grid-column: 4 / span 2;
    }
}
