/* ========================================
   AFJA Trading Limited - Design System
   ======================================== */

/* CSS Variables - Design System */
:root {
    /* Colors */
    --primary: #308FA1;
    --dark-bg: #023347;
    --light-bg: #F5F9FA;
    --text-dark: #1E1E1E;
    --text-light: #FFFFFF;
    --muted-text: #6D6D6D;
    --gray-border: #E6E6E6;
    --footer-gray: #B6B6B6;
    --accent-gradient: linear-gradient(176.13deg, #308FA1 34.01%, rgba(48, 143, 161, 0) 57.61%);
    --hero-badge-bg: rgba(47, 143, 114, 0.1);
    --hero-badge-border: #2F8F72;
    --hero-badge-text: #2F8F72;
    
    /* Typography */
    --heading-font: 'Gilroy', 'Outfit', sans-serif;
    --body-font: 'Gilroy', 'Outfit', sans-serif;
    
    /* Font Sizes */
    --h1-size: 60px;
    --h2-size: 48px;
    --h3-size: 36px;
    --body-large: 20px;
    --body-medium: 16px;
    
    /* Line Heights */
    --line-height: 145%;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 20px;
    --spacing-xl: 40px;
    --spacing-2xl: 80px;
    --spacing-3xl: 120px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Container */
    --container-desktop: 1280px;
    --container-tablet: 768px;
    --container-mobile: 375px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--body-medium);
    line-height: var(--line-height);
    color: var(--text-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: var(--line-height);
    margin-bottom: var(--spacing-lg);
}

h1 {
    font-size: var(--h1-size);
    font-weight: 700;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 600;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 500;
}

.body-large {
    font-size: var(--body-large);
    line-height: var(--line-height);
}

.body-medium {
    font-size: var(--body-medium);
    line-height: var(--line-height);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: var(--container-desktop);
    margin: 0 auto;
    padding: 0 var(--spacing-2xl);
}

/* Buttons */
.btn {
    font-family: var(--body-font);
    font-size: var(--body-medium);
    font-weight: 500;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #267182;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(48, 143, 161, 0.3);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: var(--text-dark);
    border: 1px solid var(--gray-border);
}

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

/* Navigation */
/* ========================================
   NAVIGATION / HEADER
   ======================================== */

.navbar {
    /* Default state - no glass effect */
    background-color: #FFFFFF;
    
    width: 100%;
    max-width: 1440px;
    height: 84px;
    margin: 0 auto;
    padding: 20px 80px;
    border-bottom: 1px solid #F0F0F0;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Glass effect when scrolled */
.navbar.scrolled {
    /* Glass Effect */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(240, 240, 240, 0.3);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

/* Pseudo-elements only show when scrolled */
.navbar.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
}

.navbar.scrolled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 0;
    pointer-events: none;
    z-index: 1;
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Left: Logo */
.nav-logo {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    color: #1E1E1E;
}

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

/* Center: Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    color: #373737;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #308FA1;
}

.nav-link.active {
    color: #308FA1;
    font-weight: 700;
}

/* Right: CTAs */
.nav-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-nav-primary,
.btn-nav-secondary {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 14px;
    line-height: 145%;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-nav-primary {
    background-color: #308FA1;
    color: #FFFFFF;
    border: none;
}

.btn-nav-primary:hover {
    background-color: #2A7E8E;
    transform: scale(1.03);
}

.btn-nav-secondary {
    background-color: #FFFFFF;
    color: #1E1E1E;
    border: 1px solid #E6E6E6;
}

.btn-nav-secondary:hover {
    background-color: #F5F5F5;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #1E1E1E;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION - Updated Design
   ======================================== */

.hero-section {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 0 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Spacing: 12px between text elements, 32px before buttons */
.hero-content > .badge-pill {
    margin: 0 0 12px 0;
}

.hero-content > .hero-heading {
    margin: 0 0 12px 0;
}

.hero-content > .hero-subtext {
    margin: 0 0 32px 0;
}

/* Badge Pill Component */
.badge-pill {
    background: var(--hero-badge-bg);
    border: 1px solid var(--hero-badge-border);
    border-radius: 60px;
    padding: 8px 16px;
    color: var(--hero-badge-text);
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    text-align: center;
    display: inline-block;
}

/* Hero Heading Container */
.hero-heading {
    font-family: var(--heading-font);
    text-align: center;
    width: 100%;
    max-width: 1074px;
    margin: 0;
    display: inline;
}

/* Heading Part 1 - "Experience Global" */
.heading-part-1 {
    font-weight: 400;
    font-size: 60px;
    line-height: 70px;
    color: #1E1E1E;
}

/* Heading Part 2 - "Garment Excellence" */
.heading-part-2 {
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    color: #0B3A4F;
}

/* Hero Subtext */
.hero-subtext {
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 155%;
    color: var(--muted-text);
    text-align: center;
    width: 100%;
    max-width: 614px;
    margin: 0;
}

/* CTA Buttons Container */
.hero-ctas {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

/* Primary CTA Button */
.btn-primary-hero {
    background-color: #308FA1;
    border-radius: 8px;
    padding: 14px 28px;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 145%;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary-hero:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.btn-primary-hero:focus {
    outline: 2px solid #308FA1;
    outline-offset: 2px;
}

/* Secondary CTA Button */
.btn-secondary-hero {
    background-color: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    padding: 14px 28px;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 145%;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-secondary-hero:hover {
    transform: scale(1.03);
    filter: brightness(0.95);
}

.btn-secondary-hero:focus {
    outline: 2px solid #308FA1;
    outline-offset: 2px;
}

/* Hero Carousel */
.hero-carousel {
    width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.carousel-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: nowrap;
    will-change: transform;
}

/* Infinite scroll animation - Right */
.carousel-row-right {
    animation: scrollRight 20s linear infinite;
}

/* Infinite scroll animation - Left */
.carousel-row-left {
    animation: scrollLeft 20s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-360px * 6 - 24px * 6));
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(calc(-360px * 6 - 24px * 6));
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.carousel-row:hover {
    animation-play-state: paused;
}

/* Image Card Component */
.image-card {
    width: 360px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: scale(1.03);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Accessibility - Keyboard Navigation Focus States */
.btn-primary-hero:focus-visible,
.btn-secondary-hero:focus-visible {
    outline: 3px solid #308FA1;
    outline-offset: 3px;
}

/* Accessibility - Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .image-card,
    .btn-primary-hero,
    .btn-secondary-hero,
    .carousel-row {
        transition: none;
        animation: none;
    }
    
    .image-card:hover {
        transform: none;
    }
    
    .btn-primary-hero:hover,
    .btn-secondary-hero:hover {
        transform: none;
    }
}

/* Print Styles for Hero Section */
@media print {
    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-carousel {
        display: none;
    }
    
    .hero-ctas {
        display: none;
    }
}

/* ========================================
   ABOUT US SECTION
   ======================================== */

.about-section {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 80px;
    display: flex;
    justify-content: center;
}

.about-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* Header Section */
.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.about-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    color: #0B3A4F;
    max-width: 969px;
    margin: 0;
}

.about-subtext {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #6D6D6D;
    max-width: 796px;
    margin: 0;
}

.about-subtext .highlight-green {
    font-weight: 700;
    color: #2F8F72;
}

/* Cards Section */
.about-cards {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center;
}

.about-card {
    flex: 1;
    background: #F5F9FA;
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(11, 58, 79, 0.12);
}

.card-number {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 80px;
    line-height: 1;
    background: linear-gradient(176.92deg, #308FA1 48.37%, rgba(48, 143, 161, 0) 70.66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.card-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #1E1E1E;
    margin: 0;
}

.card-description {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #6D6D6D;
    margin: 0;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */

.why-choose-section {
    background-color: #023347;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 80px;
    display: flex;
    justify-content: center;
}

.why-choose-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Section */
.why-choose-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    color: #FFFFFF;
    margin: 0;
}

.why-choose-subtext {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #A7B7C2;
    max-width: 442px;
    margin: 0;
}

/* Cards Grid */
.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1280px;
}

.why-card {
    background: #0B3A4F;
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    min-height: 231px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(48, 143, 161, 0.2);
}

.why-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 44px;
    object-fit: contain;
}

.why-card-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #EDFFFF;
    margin: 0 0 8px 0;
}

.why-card-description {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #7B9FB3;
    margin: 0;
}

/* ========================================
   CAPABILITIES SECTION
   ======================================== */

.capabilities-section {
    background-color: #F5F9FA;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.capabilities-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

/* Left Side: Image Card */
.capabilities-image-card {
    width: 500px;
    height: 576px;
    background-image: url('images/Our Capabilities/Frame 2087329551.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 28px 24px;
    background: linear-gradient(180deg, 
        rgba(47, 47, 45, 0) 0%, 
        rgba(47, 47, 45, 0.3) 30%, 
        rgba(47, 47, 45, 0.65) 55%, 
        rgba(47, 47, 45, 0.9) 75%, 
        #2F2F2D 90%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(1px);
}

.fabric-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
}

.fabric-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
}

.fabric-stat-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.08);
}

.fabric-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.orange-dot {
    background-color: #FF8A3D;
}

.purple-dot {
    background-color: #9B51E0;
}

.blue-dot {
    background-color: #2D9CDB;
}

.pink-dot {
    background-color: #EB5757;
}

.fabric-label {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #1E1E1E;
    white-space: nowrap;
}

/* Right Side: Content */
.capabilities-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.capabilities-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    color: #0B3A4F;
    margin: 0;
}

.capabilities-subtext {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #6D6D6D;
    max-width: 614px;
    margin: -24px 0 0 0;
}

.capabilities-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.capability-card {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 358px;
    height: 199px;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(11, 58, 79, 0.12);
}

.capability-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(152.56deg, #308FA1 -22.17%, rgba(48, 143, 161, 0) 204.17%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-number {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #FFFFFF;
}

.capability-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #1E1E1E;
    margin: 0;
}

.capability-description {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #6D6D6D;
    margin: 0;
}

/* ========================================
   PARTNERS SECTION
   ======================================== */

.partners-section {
    background-color: #023347;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.partners-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/Trusted%20By%20Global%20Leaders/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.partners-container {
    width: 100%;
    max-width: 1280px;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Header */
.partners-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.partners-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    color: #FFFFFF;
    margin: 0;
}

.partners-subtext {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #A7B7C2;
    max-width: 582px;
    margin: 0;
}

/* Partner Carousel */
.partners-carousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}

.partners-row {
    display: flex;
    gap: 40px;
    width: max-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

.partners-row-right {
    animation: scrollPartnersRight 40s linear infinite;
}

.partners-row-left {
    animation: scrollPartnersLeft 40s linear infinite;
}

.partner-logo {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
}

.partner-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.partners-row:hover {
    animation-play-state: paused;
}

/* Carousel Animations */
@keyframes scrollPartnersRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollPartnersLeft {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ========================================
   CERTIFICATIONS SECTION
   ======================================== */

.certifications-section {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 1440px;
    height: 576px;
    margin: 0 auto;
    padding: 120px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certifications-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 120px;
    align-items: center;
}

/* Left Column: Content */
.certifications-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.certifications-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    color: #0B3A4F;
    margin: 0;
    white-space: nowrap;
}

.certifications-subtext {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #6D6D6D;
    max-width: 636px;
    margin: 0;
}

.certifications-ctas {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-cert-primary,
.btn-cert-secondary {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 18px;
    line-height: 145%;
    padding: 14px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-cert-primary {
    background-color: #308FA1;
    color: #FFFFFF;
    border: none;
}

.btn-cert-primary:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.btn-cert-secondary {
    background-color: #FFFFFF;
    color: var(--text-dark);
    border: 1px solid #E6E6E6;
}

.btn-cert-secondary:hover {
    transform: scale(1.03);
    filter: brightness(0.95);
}

/* Right Column: Certification Logos Grid */
.certifications-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    flex-shrink: 0;
}

.cert-card {
    width: 180px;
    height: 120px;
    background-color: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: all 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.cert-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.2);
}

.cert-logo-placeholder {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 18px;
    color: #6D6D6D;
    text-align: center;
}

/* Global Leaders Section */
.global-leaders-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 100px 0;
}

.global-leaders-section h2,
.global-leaders-section p {
    color: var(--text-light);
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.leader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
}

.leader-placeholder {
    width: 180px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-gray);
    font-weight: 500;
}

/* CEO Quote Section */
/* ========================================
   CEO QUOTE SECTION
   ======================================== */

.ceo-quote-section {
    background-color: #F5F9FA;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.ceo-quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 12px;
    max-width: 1106px;
    width: 100%;
}

.quote-mark-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.quote-mark-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.ceo-quote-text {
    font-family: var(--heading-font);
    font-weight: 400;
    font-size: 36px;
    line-height: 155%;
    text-align: center;
    color: #1E1E1E;
    margin: 0;
    max-width: 1106px;
    width: 100%;
}

.ceo-quote-text .quote-highlight {
    font-weight: 600;
    color: #0B3A4F;
}

.ceo-author-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 273px;
}

.ceo-author-image {
    width: 80px;
    height: 80px;
    border-radius: 60px;
    flex-shrink: 0;
    overflow: hidden;
}

.ceo-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 273px;
}

.ceo-author-name {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 28px;
    line-height: 145%;
    text-align: center;
    color: #1E1E1E;
    margin: 0;
}

.ceo-author-title {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 20px;
    line-height: 145%;
    text-align: center;
    color: #6D6D6D;
    margin: 0;
}

/* Global Reach Section */
/* ========================================
   GLOBAL REACH SECTION
   ======================================== */

.global-reach-section {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.global-reach-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.global-reach-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.global-reach-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    text-align: center;
    color: #0B3A4F;
    margin: 0;
    max-width: 605px;
}

.global-reach-subtext {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    text-align: center;
    color: #6D6D6D;
    margin: 0;
    max-width: 858px;
}

/* Map Card */
.map-card {
    width: 100%;
    max-width: 1280px;
    height: 600px;
    border: 1px solid #F0F0F0;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    position: relative;
    background: url('images/Global%20Reach/Map.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Location Markers */
.location-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.marker-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(48, 143, 161, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-marker 2s infinite;
}

.marker-dot::after {
    content: '';
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #308FA1;
    box-shadow: 0 2px 8px rgba(48, 143, 161, 0.4);
}

.marker-label {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 14px;
    color: #0B3A4F;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

@keyframes pulse-marker {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(48, 143, 161, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(48, 143, 161, 0);
    }
}

/* China Marker */
.marker-1 {
    left: 50%;
    top: 14%;
    z-index: 10;
}

/* Vietnam Marker */
.marker-2 {
    left: 42%;
    top: 46%;
    z-index: 10;
}

/* Attribution Cards */
.attribution-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 20px;
    background: #FFFFFF;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    z-index: 3;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.4s ease;
    pointer-events: none;
}

/* Show both cards when section is in view (scroll animation) */
.global-reach-section.in-view .attribution-card {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

/* Delay for second card */
.global-reach-section.in-view .card-2 {
    transition-delay: 0.2s;
}

/* Show card on marker hover (only if section not yet in-view) */
.location-marker.marker-1:hover ~ .attribution-card.card-1 {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.location-marker.marker-2:hover ~ .attribution-card.card-2 {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

/* China Factory Card - positioned to the RIGHT of China marker */
.card-1 {
    width: 439px;
    left: calc(50% + 150px);
    top: 14%;
    transform: translateY(-50%);
}

/* Vietnam Factory Card - positioned to the LEFT of Vietnam marker */
.card-2 {
    width: 432px;
    left: calc(42% - 482px);
    top: 46%;
    transform: translateY(-50%);
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.card-title-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.card-flag {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    order: 1;
}

.card-location {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 20px;
    line-height: 145%;
    color: #222D39;
    margin: 0;
    order: 2;
}

.card-region {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    color: #0B3A4F;
    margin: 0;
}

.card-description {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 155%;
    color: #6E7580;
    margin: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Production Process Section */
/* ========================================
   PRODUCTION PROCESS SECTION
   ======================================== */

.production-process-section {
    background-color: #023347;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 80px;
    display: flex;
    justify-content: center;
}

.process-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Section */
.process-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    margin-bottom: 60px;
}

.process-heading {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    color: #FFFFFF;
    margin: 0;
}

.process-subtext {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #A7B7C2;
    max-width: 796px;
    margin: 0;
}

/* Cards Grid */
.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1280px;
}

.process-card {
    background: #0B3A4F;
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    min-height: 231px;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(48, 143, 161, 0.2);
}

.process-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 44px;
    object-fit: contain;
}

.process-card-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #EDFFFF;
    margin: 0 0 8px 0;
}

.process-card-description {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #7B9FB3;
    margin: 0;
}

/* ========================================
   FAQs Section
   ======================================== */

.faqs-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 120px 80px;
    gap: 120px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background: #FFFFFF;
}

/* Left Side: Text Content */
.faqs-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 519px;
    flex-shrink: 0;
}

.faqs-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 12px;
    width: 100%;
}

.faqs-heading {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    color: #0B3A4F;
    margin: 0;
}

.faqs-subtext {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    color: #6D6D6D;
    margin: 0;
}

/* CTA Buttons */
.faqs-cta-buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 12px;
}

.btn-faq-primary,
.btn-faq-secondary {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    gap: 6px;
    border-radius: 8px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 18px;
    line-height: 145%;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-faq-primary {
    background: #308FA1;
    color: #FFFFFF;
}

.btn-faq-primary:hover {
    background: #2A7E8E;
    transform: scale(1.03);
}

.btn-faq-secondary {
    background: #FFFFFF;
    color: #1E1E1E;
    border: 1px solid #E6E6E6;
}

.btn-faq-secondary:hover {
    background: #F5F5F5;
}

/* Right Side: FAQ Cards */
.faqs-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 16px;
    flex: 1;
    max-width: 641px;
}

.faq-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-card-question {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0;
    gap: 8px;
    width: 100%;
    cursor: pointer;
}

.faq-card-question h3 {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #222D39;
    margin: 0;
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    object-fit: contain;
}

.faq-card.active .faq-icon {
    content: url('Icons/FAQs/Up.svg');
}

.faq-card-answer {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin 0.3s ease;
}

.faq-card.active .faq-card-answer {
    max-height: 200px;
    margin-top: 8px;
}

.faq-card-answer p {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 155%;
    color: #6E7580;
    margin: 0;
}

/* ========================================
   Get in Touch Section
   ======================================== */

.contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 80px;
    gap: 60px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background: #F5F9FA;
}

/* Header */
.contact-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 12px;
    max-width: 858px;
}

.contact-heading {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 44px;
    line-height: 52px;
    text-align: center;
    color: #0B3A4F;
    margin: 0;
}

.contact-subtext {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    text-align: center;
    color: #6D6D6D;
    margin: 0;
}

/* Cards Container */
.contact-cards-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 40px;
    width: 100%;
    max-width: 1280px;
}

/* Left Card: Contact Info */
.contact-info-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 28px;
    gap: 40px;
    width: 432px;
    flex-shrink: 0;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 16px;
    width: 100%;
}

.contact-icon-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 48px;
    height: 48px;
    background: rgba(48, 143, 161, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    flex: 1;
}

.contact-label {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #222D39;
    margin: 0;
}

.contact-value {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #6E7580;
    margin: 0;
}

/* Right Card: Form */
.contact-form-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px;
    gap: 32px;
    flex: 1;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.contact-form-title {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 28px;
    line-height: 33px;
    color: #0B3A4F;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
}

/* Form Rows */
.form-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
    overflow: visible;
}

.form-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    flex: 1;
    overflow: visible;
}

.form-field-full {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 8px;
    width: 100%;
}

.form-label {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #222D39;
    margin: 0;
}

.required {
    color: #F62424;
    margin-left: 4px;
}

.form-input,
.form-textarea {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 8px;
    width: 100%;
    background: #FCFCFC;
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #222D39;
}

.form-input {
    height: 61px;
}

.form-textarea {
    height: 114px;
    resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #B8BBBF;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #308FA1;
}

/* Error state for form fields */
.form-input.error,
.form-textarea.error {
    border-color: #F62424 !important;
}

/* Smooth transition for border color changes */
.form-input,
.form-textarea {
    transition: border-color 0.3s ease;
}

.btn-contact-submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    gap: 6px;
    width: 100%;
    height: 54px;
    background: #308FA1;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 18px;
    line-height: 145%;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background: #2A7E8E;
    transform: scale(1.02);
}

.btn-contact-submit:disabled {
    background: #B6B6B6;
    cursor: not-allowed;
    transform: none;
}

/* Form Status Messages */
.form-status {
    padding: 16px 20px;
    border-radius: 8px;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    width: 100%;
    text-align: center;
    margin-top: -8px;
}

.form-status.success {
    background: rgba(47, 143, 114, 0.1);
    border: 1px solid #2F8F72;
    color: #2F8F72;
}

.form-status.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
}

.notification {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
    animation: slideIn 0.3s ease-out;
    position: relative;
}

.notification-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Icon colors based on notification type */
.notification-icon.icon-missing {
    filter: invert(29%) sepia(98%) saturate(3527%) hue-rotate(345deg) brightness(94%) contrast(96%);
    /* Red color for missing details - #F62424 */
}

.notification-icon.icon-error {
    filter: invert(68%) sepia(65%) saturate(2838%) hue-rotate(359deg) brightness(102%) contrast(102%);
    /* Orange/Yellow color for incorrect details - #FF9800 */
}

.notification-icon.icon-success {
    filter: invert(57%) sepia(25%) saturate(1359%) hue-rotate(101deg) brightness(93%) contrast(87%);
    /* Green color for success - #2F8F72 */
}

.notification.slide-out {
    animation: slideOut 0.3s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-title {
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #1E1E1E;
    margin: 0;
}

.notification-message {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #6D6D6D;
    margin: 0;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6D6D6D;
    font-size: 20px;
    line-height: 1;
    transition: color 0.2s ease;
    margin-left: 12px;
    flex-shrink: 0;
}

.notification-close:hover {
    color: #1E1E1E;
}

/* Phone Input Styling */
.phone-field-container {
    position: relative;
    width: 100%;
    overflow: visible;
}

.phone-input {
    padding-left: 100px !important;
    width: 100%;
    border: 1px solid #E6E6E6 !important;
    border-radius: 8px !important;
}

/* intl-tel-input wrapper */
.iti {
    width: 100%;
    display: block;
    position: relative;
    z-index: 50;
}

/* Ensure dropdown is positioned relative to the wrapper */
.iti--container {
    position: relative;
}

/* Flag container - position it inside the input field */
.iti__flag-container {
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    z-index: 10;
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 7px 0 0 7px;
    border: none !important;
}

.iti__selected-flag {
    background: transparent;
    border: none !important;
    padding: 0 16px 0 16px !important;
    height: 100%;
    min-height: 59px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default;
    transition: background 0.2s ease;
    position: relative;
    pointer-events: none;
}

/* Hide the dial code in the flag container */
.iti__selected-flag .iti__selected-dial-code {
    display: none !important;
}

/* Remove any potential lines or borders from flag elements */
.iti__flag-box,
.iti__flag {
    border: none !important;
    outline: none !important;
}

/* Remove the line that appears in the middle of the flag container */
.iti__selected-flag {
    border-right: none !important;
}

/* Hide any horizontal lines that might appear */
.iti__selected-flag::after {
    content: none !important;
}

/* Remove the line that appears across the input field */
.iti__selected-flag::before {
    content: none !important;
    display: none !important;
}

/* Target any potential line elements */
.iti .form-input::before,
.iti .form-input::after,
.phone-field-container::before,
.phone-field-container::after {
    content: none !important;
    display: none !important;
}

/* Remove the specific horizontal line inside the input field */
.iti__selected-flag::before,
.iti__selected-flag::after {
    content: none !important;
    display: none !important;
    border: none !important;
    background: none !important;
    height: 0 !important;
    width: 0 !important;
}

/* Target the specific line that appears across the flag container */
.iti__flag-container::before,
.iti__flag-container::after {
    content: none !important;
    display: none !important;
    border: none !important;
    background: none !important;
    height: 0 !important;
    width: 0 !important;
}

/* Target the specific line issue in intl-tel-input */
.iti__selected-flag {
    background-image: none !important;
    border-image: none !important;
    position: relative;
}

/* Remove any potential separator line between flag and input */
.iti__selected-flag::before {
    content: none !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: none !important;
    background: none !important;
    height: 0 !important;
    width: 0 !important;
    display: none !important;
}

/* Ensure no line appears at the bottom of the flag container */
.iti__flag-container {
    border-bottom: none !important;
}

/* Remove any potential horizontal rule or line element */
.iti__selected-flag hr,
.iti__flag-container hr,
.iti__selected-flag .line,
.iti__flag-container .line {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove any potential separator lines */
.iti__selected-flag .iti__separator {
    display: none !important;
}

/* Remove any box-shadow or outline that might appear as a line */
.iti__selected-flag,
.iti__flag-container {
    box-shadow: none !important;
    outline: none !important;
    text-shadow: none !important;
}

/* Target any potential line created by the intl-tel-input library */
.iti__selected-flag:focus,
.iti__flag-container:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}


/* Force remove any lines from flag elements */
.iti__flag-box::before,
.iti__flag-box::after,
.iti__flag::before,
.iti__flag::after {
    content: none !important;
    display: none !important;
    border: none !important;
}

/* Remove borders only from flag elements, not the entire dropdown */
.iti__selected-flag,
.iti__flag-container,
.iti__flag-box {
    border: none !important;
}

/* Restore dropdown functionality */
.iti__country-list {
    position: absolute !important;
    border-radius: 8px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid #E6E6E6;
    max-height: 300px;
    width: calc(100% - 2px) !important;
    font-family: var(--body-font);
    margin-top: 36px !important;
    margin-left: 0 !important;
    background: #FFFFFF;
    z-index: 9999 !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    display: block !important;
    visibility: visible !important;
}

/* Ensure dropdown items are visible */
.iti__country {
    padding: 0 16px 0 16px !important;
    height: 44px !important;
    gap: 4px !important;
    display: flex !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.iti__selected-flag:hover {
    background: transparent;
}

.iti__selected-flag:focus {
    outline: none;
}

/* Ensure input has proper structure */
.form-field .iti {
    position: relative;
}

.form-field .iti .form-input {
    width: 100%;
    box-sizing: border-box;
}

.iti__arrow {
    display: none !important;
    visibility: hidden !important;
}

.iti__country-list {
    position: absolute !important;
    border-radius: 8px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid #E6E6E6;
    max-height: 300px;
    width: calc(100% - 2px) !important;
    font-family: var(--body-font);
    margin-top: 36px !important;
    margin-left: 0 !important;
    background: #FFFFFF;
    z-index: 9999 !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
}

/* Override intl-tel-input default padding */
.iti__country,
.iti__country.iti__standard,
.iti__country.iti__preferred,
li.iti__country {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    cursor: pointer;
    transition: background 0.2s ease;
    box-sizing: border-box !important;
}

/* Additional selector for the list item */
.iti__country-list li.iti__country {
    padding: 0 16px 0 16px !important;
}

/* Nuclear option - override any padding on country list items */
.iti__country-list .iti__country,
.iti__country-list > li {
    padding: 0 16px !important;
}

.iti__country:hover {
    background: #F5F9FA;
}

.iti__country.iti__highlight {
    background: #F5F9FA;
}

.iti__flag-box {
    width: 20px;
    height: 15px;
}

.iti__dial-code {
    color: #6D6D6D;
    font-size: 14px;
    font-weight: 500;
    min-width: 50px;
}

.iti__country-name {
    color: #1E1E1E;
    font-size: 14px;
    font-weight: 400;
}

/* Hide the search input */
.iti__search-input {
    display: none !important;
}

/* Also hide any search container */
.iti__search-container {
    display: none !important;
}

.phone-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 6px;
    font-family: var(--body-font);
    display: block;
}

/* Override intl-tel-input styles to make it look like a regular input */
#phone {
    padding-left: 16px !important;
    width: 100% !important;
    border: 1px solid #E6E6E6 !important;
    border-radius: 8px !important;
}

/* Hide all intl-tel-input elements */
.iti,
.iti__flag-container,
.iti__selected-flag,
.iti__arrow,
.iti__country-list {
    display: none !important;
    visibility: hidden !important;
}

/* View All Button Styles */
.view-all-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
}

.view-all-button {
    /* Frame 70 */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 28px;
    gap: 0px;
    
    width: auto;
    min-width: auto;
    height: 54px;
    
    /* Glass Effect - Reference Implementation */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 0px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* Realistic glass shadows and highlights */
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        inset 1px 0 0 rgba(255, 255, 255, 0.2),
        inset -1px 0 0 rgba(255, 255, 255, 0.1);
    
    /* Inside auto layout */
    flex: none;
    order: 3;
    flex-grow: 0;
    z-index: 3;
    
    /* Glass effect positioning */
    position: relative;
    overflow: hidden;
}

.view-all-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
}

.view-all-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
    z-index: 1;
}

.view-all-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.2),
        0 3px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15),
        inset 1px 0 0 rgba(255, 255, 255, 0.25),
        inset -1px 0 0 rgba(255, 255, 255, 0.15);
}

.view-all-text {
    /* Explore Gallery */
    width: auto;
    height: 26px;
    
    font-family: 'Gilroy', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 145%;
    /* or 26px */
    
    color: #FFFFFF;
    
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
    position: relative;
    z-index: 2;
}

/* ========================================
   Partners Modal
   ======================================== */

/* Modal Overlay */
.partners-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.partners-modal.active {
    display: flex;
}

/* Modal Content */
.partners-modal-content {
    /* Frame 2087329564 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    
    position: relative;
    width: auto;
    max-width: 95vw;
    height: auto;
    max-height: 90vh;
    min-width: 800px;
    
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Modal Header */
.modal-header {
    /* Frame 2087329569 */
    box-sizing: border-box;
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 30px;
    gap: 16px;
    
    width: 100%;
    height: 144px;
    
    background: #0B3A4F;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.modal-header-content {
    /* Frame 2087329549 */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    
    flex: 1;
    height: 80px;
}

.modal-title {
    /* Our Global Partners */
    width: 331px;
    height: 43px;
    
    font-family: 'Gilroy', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 43px;
    
    color: #FFFFFF;
    
    flex: none;
    order: 0;
    flex-grow: 0;
    margin: 0;
}

.modal-subtitle {
    /* Leading fashion and lifestyle brands that trust AFJA to deliver excellence. */
    width: auto;
    max-width: 800px;
    height: 25px;
    
    font-family: 'Gilroy', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 155%;
    
    color: #A7B7C2;
    
    flex: none;
    order: 1;
    flex-grow: 0;
    margin: 0;
}

.modal-close-btn {
    /* Frame 1261154748 */
    box-sizing: border-box;
    
    width: 40px;
    height: 40px;
    
    border: none;
    border-radius: 8px;
    background: #194659;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    
    flex: none;
    order: 1;
    flex-grow: 0;
}

.modal-close-btn:hover {
    background: #194659;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close-btn svg path {
    stroke: #FFFFFF;
}

/* Modal Body */
.modal-body {
    /* Frame 2087329570 */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    
    width: 100%;
    height: auto;
    max-height: 536px;
    overflow-y: auto;
    
    background: #FFFFFF;
    border-radius: 0 0 15px 15px;
    
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 1;
}

/* Partners Grid */
.partners-grid {
    /* Frame 62 */
    display: grid;
    grid-template-columns: repeat(7, 120px);
    gap: 20px;
    padding: 32px 40px;
    justify-content: center;
    
    width: auto;
    min-height: auto;
    
    flex: none;
    order: 0;
    align-self: center;
    flex-grow: 0;
}

/* Partner Logo Container */
.partner-logo-modal {
    /* Frame 2087329489 */
    box-sizing: border-box;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    
    width: 120px;
    height: 120px;
    
    background: #FFFFFF;
    border: 0.810811px solid #F0F0F0;
    border-radius: 9.72973px;
    cursor: pointer;
    transition: all 0.3s ease;
    
    flex: none;
    flex-grow: 0;
}

.partner-logo-modal:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #E0E0E0;
}

.partner-logo-modal img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 9.72973px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .partners-modal-content {
        min-width: 700px;
        max-width: 90vw;
    }
    
    .modal-title {
        width: auto;
        font-size: 28px;
        line-height: 34px;
    }
    
    .modal-subtitle {
        width: auto;
        font-size: 14px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(6, 100px);
        padding: 24px 30px;
        gap: 16px;
    }
    
    .partner-logo-modal {
        width: 100px;
        height: 100px;
    }
    
    .partner-logo-modal img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .partners-modal {
        padding: 10px;
    }
    
    .partners-modal-content {
        min-width: 600px;
        max-width: 95vw;
    }
    
    .modal-header {
        padding: 24px 20px;
        height: auto;
        min-height: 120px;
    }
    
    .modal-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .modal-subtitle {
        font-size: 14px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(5, 80px);
        padding: 20px;
        gap: 12px;
    }
    
    .partner-logo-modal {
        width: 80px;
        height: 80px;
    }
    
    .partner-logo-modal img {
        width: 80px;
        height: 80px;
    }
}

/* ========================================
   Gallery Modal
   ======================================== */

/* Gallery Modal Overlay */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-modal.active {
    display: flex;
}

/* Gallery Modal Content */
.gallery-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    
    position: relative;
    width: auto;
    max-width: 95vw;
    height: auto;
    max-height: 90vh;
    min-width: 800px;
    
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 306px);
    gap: 20px;
    padding: 32px 40px;
    justify-content: center;
    
    width: auto;
    min-height: auto;
    
    flex: none;
    order: 0;
    align-self: center;
    flex-grow: 0;
}

/* Gallery Image Container */
.gallery-image-container {
    box-sizing: border-box;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    
    width: 306px;
    height: 204px;
    
    background: #FFFFFF;
    border: 0.810811px solid #F0F0F0;
    border-radius: 9.72973px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    
    flex: none;
    flex-grow: 0;
}

.gallery-image-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #E0E0E0;
}

.gallery-image-container img {
    width: 306px;
    height: 204px;
    object-fit: cover;
    border-radius: 9.72973px;
}

/* Gallery Modal Responsive Design */
@media (max-width: 1200px) {
    .gallery-modal-content {
        min-width: 700px;
        max-width: 90vw;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 250px);
        padding: 24px 30px;
        gap: 16px;
    }
    
    .gallery-image-container {
        width: 250px;
        height: 167px;
    }
    
    .gallery-image-container img {
        width: 250px;
        height: 167px;
    }
}

@media (max-width: 768px) {
    .gallery-modal {
        padding: 10px;
    }
    
    .gallery-modal-content {
        min-width: 600px;
        max-width: 95vw;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(1, 280px);
        padding: 20px;
        gap: 12px;
    }
    
    .gallery-image-container {
        width: 280px;
        height: 187px;
    }
    
    .gallery-image-container img {
        width: 280px;
        height: 187px;
    }
}

/* ========================================
   Footer
   ======================================== */

.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 80px 28px;
    gap: 20px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background: #023347;
    overflow: hidden;
}

/* Background Decorative Elements */
.footer-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url('images/Footer/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Main Footer Content */
.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 60px;
    max-width: 443px;
    z-index: 1;
    position: relative;
}

/* Logo */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 24px;
}

.footer-logo-text {
    font-family: 'Outfit', var(--body-font);
    font-weight: 700;
    font-size: 60px;
    line-height: 76px;
    color: #FFFFFF;
    margin: 0;
}

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

/* Navigation Links */
.footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-nav-link {
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    color: #B6B6B6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-link.active {
    font-weight: 700;
    color: #308FA1;
}

.footer-nav-link:hover {
    color: #308FA1;
}

/* Social Media Section */
.footer-social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 12px;
}

.footer-social-text {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #B5C3C9;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: #0B3A4F;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EEEEEE;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #308FA1;
    transform: translateY(-2px);
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Copyright */
.footer-copyright {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #76919C;
    margin: 0;
    z-index: 1;
    position: relative;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    /* Navigation Tablet Styles */
    .navbar {
        padding: 20px 40px;
    }
    
    /* Hero Section Tablet Styles */
    .hero-section {
        padding: 60px 0 100px 0;
    }
    
    .hero-container {
        padding: 0 40px;
        gap: 60px;
    }
    
    .heading-part-1,
    .heading-part-2 {
        font-size: 42px;
        line-height: 50px;
    }
    
    .hero-heading {
        max-width: 90%;
    }
    
    .hero-subtext {
        max-width: 80%;
        font-size: 18px;
    }
    
    .hero-ctas {
        flex-direction: row;
        gap: 12px;
    }
    
    /* Carousel - 3 columns per row */
    .hero-carousel {
        margin-left: 0;
        margin-right: 0;
        overflow: hidden;
    }
    
    .carousel-row {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }
    
    .carousel-row .image-card:nth-child(n+4) {
        display: none;
    }
    
    .carousel-row-left .image-card:nth-child(n+4) {
        display: none;
    }
    
    .image-card {
        width: calc(33.333% - 16px);
        min-width: 280px;
        height: 187px;
    }
    
    /* About Section - Tablet */
    .about-section {
        padding: 80px 40px;
    }
    
    .about-heading {
        font-size: 32px;
        line-height: 40px;
    }
    
    .about-cards {
        flex-wrap: wrap;
    }
    
    .about-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 280px;
    }
    
    /* Why Choose Section - Tablet */
    .why-choose-section {
        padding: 80px 40px;
    }
    
    /* Capabilities Section - Tablet */
    .capabilities-section {
        padding: 80px 40px;
    }
    
    .capabilities-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .capabilities-image-card {
        width: 100%;
        max-width: 500px;
    }
    
    .capabilities-content {
        width: 100%;
    }
    
    .capabilities-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .capabilities-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .capability-card {
        width: 100%;
        height: auto;
        min-height: 180px;
    }
    
    /* Partners Section - Tablet */
    .partners-section {
        padding: 80px 0;
    }
    
    .partners-container {
        padding: 0 40px;
    }
    
    .partners-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .partners-carousel {
        gap: 32px;
    }
    
    .partners-row {
        gap: 32px;
    }
    
    .partner-logo {
        width: 100px;
        height: 100px;
        padding: 0;
    }
    
    .partner-logo img {
        width: 100px;
        height: 100px;
    }
    
    /* Certifications Section - Tablet */
    .certifications-section {
        height: auto;
        padding: 80px 40px;
    }
    
    .certifications-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .certifications-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .certifications-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .cert-card {
        width: 100%;
        height: 100px;
    }
    
    .why-choose-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .why-choose-subtext {
        font-size: 15px;
    }
    
    .why-choose-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-card {
        width: 100%;
        height: auto;
        min-height: 220px;
    }
    
    /* FAQs Section - Tablet */
    .faqs-section {
        padding: 80px 40px;
        gap: 80px;
    }
    
    .faqs-left {
        width: 100%;
        max-width: 500px;
    }
    
    .faqs-heading {
        font-size: 36px;
        line-height: 44px;
    }
}

/* Tablet and Mobile (768px and below) */
@media (max-width: 768px) {
    /* Navigation Mobile Styles */
    .navbar {
        padding: 16px 20px;
        height: auto;
        min-height: 64px;
    }
    
    .logo-text {
        font-size: 28px;
        line-height: 36px;
    }
    
    .logo-image {
        height: 36px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-bottom: 1px solid #F0F0F0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: none;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 12px 0;
        border-bottom: 1px solid #F5F5F5;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-ctas {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 16px;
    }
    
    .nav-links.active ~ .nav-ctas,
    .nav-ctas.active {
        display: flex;
    }
    
    .btn-nav-primary,
    .btn-nav-secondary {
        width: 100%;
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    :root {
        --h1-size: 48px;
        --h2-size: 36px;
        --h3-size: 28px;
        --spacing-3xl: 80px;
        --spacing-2xl: 60px;
    }
    
    .container {
        padding: 0 var(--spacing-xl);
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero Section Mobile Styles */
    .hero-section {
        padding: 60px 0 80px 0;
        overflow-x: hidden;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 60px;
        max-width: 100%;
    }
    
    .hero-content {
        width: 100%;
        padding: 0;
    }
    
    .badge-pill {
        font-size: 14px;
        padding: 6px 14px;
    }
    
    .heading-part-1,
    .heading-part-2 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .hero-heading {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-subtext {
        font-size: 16px;
        line-height: 150%;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: stretch;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 100%;
        padding: 14px 28px;
    }
    
    /* Hero Carousel - Single column scroll */
    .hero-carousel {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .hero-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .carousel-row {
        animation: none;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 12px;
        padding: 0 20px;
        min-width: max-content;
    }
    
    .carousel-row .image-card:nth-child(n+7) {
        display: none;
    }
    
    .carousel-row-left .image-card:nth-child(n+7) {
        display: none;
    }
    
    .image-card {
        width: 280px;
        height: 187px;
        flex-shrink: 0;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    /* About Section - Mobile */
    .about-section {
        padding: 80px 40px;
    }
    
    .about-container {
        gap: 40px;
    }
    
    .about-heading {
        font-size: 26px;
        line-height: 34px;
        max-width: 100%;
    }
    
    .about-subtext {
        font-size: 15px;
        max-width: 100%;
    }
    
    .about-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-card {
        max-width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    /* Why Choose Section - Mobile */
    .why-choose-section {
        padding: 80px 40px;
    }
    
    /* Capabilities Section - Mobile */
    .capabilities-section {
        padding: 60px 20px;
    }
    
    .capabilities-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .capabilities-image-card {
        width: 100%;
        height: 400px;
    }
    
    .capabilities-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .capabilities-subtext {
        font-size: 15px;
        margin: -16px 0 0 0;
    }
    
    .capabilities-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .capability-card {
        width: 100%;
        height: auto;
        min-height: 160px;
        padding: 20px;
    }
    
    .fabric-stats {
        grid-template-columns: 1fr;
    }
    
    .fabric-stat-card {
        width: 100%;
    }
    
    /* Partners Section - Mobile */
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-container {
        padding: 0 20px;
    }
    
    .partners-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .partners-subtext {
        font-size: 15px;
    }
    
    .partners-carousel {
        gap: 24px;
    }
    
    .partners-row {
        gap: 24px;
    }
    
    .partner-logo {
        width: 80px;
        height: 80px;
        padding: 0;
    }
    
    .partner-logo img {
        width: 80px;
        height: 80px;
    }
    
    .partners-row-right {
        animation: scrollPartnersRight 30s linear infinite;
    }
    
    .partners-row-left {
        animation: scrollPartnersLeft 30s linear infinite;
    }
    
    /* Certifications Section - Mobile */
    .certifications-section {
        height: auto;
        padding: 60px 20px;
    }
    
    .certifications-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .certifications-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .certifications-subtext {
        font-size: 15px;
    }
    
    .certifications-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cert-primary,
    .btn-cert-secondary {
        width: 100%;
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .certifications-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        width: 100%;
    }
    
    .cert-card {
        width: 100%;
        height: 90px;
    }
    
    .why-choose-header {
        margin-bottom: 40px;
    }
    
    .why-choose-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .why-choose-subtext {
        font-size: 14px;
        max-width: 100%;
    }
    
    .why-choose-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .why-card {
        width: 100%;
        height: auto;
        padding: 20px 24px;
    }
    
    .why-icon {
        margin-bottom: 24px;
    }
    
    .why-card-title {
        font-size: 20px;
    }
    
    .why-card-description {
        font-size: 15px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Production Process Section - Tablet */
    .production-process-section {
        padding: 80px 40px;
    }
    
    .process-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Section - Tablet */
    .contact-section {
        padding: 80px 40px;
        gap: 40px;
    }
    
    .contact-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .contact-cards-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .contact-info-card {
        width: 100%;
    }
    
    /* Footer - Tablet */
    .footer {
        padding: 80px 40px 24px;
    }
    
    .footer-logo-text {
        font-size: 48px;
        line-height: 60px;
    }
    
    .footer-logo-image {
        height: 180px;
    }
    
    .footer-nav {
        gap: 20px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    :root {
        --h1-size: 36px;
        --h2-size: 28px;
        --h3-size: 22px;
        --body-large: 18px;
        --spacing-3xl: 60px;
        --spacing-2xl: 40px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Hero Section - Extra Small Screens */
    .hero-section {
        padding: 40px 0 60px 0;
    }
    
    .hero-container {
        padding: 0 16px;
        gap: 40px;
    }
    
    .badge-pill {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .heading-part-1,
    .heading-part-2 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .hero-subtext {
        font-size: 14px;
        line-height: 150%;
    }
    
    /* Carousel - Horizontal scroll */
    .carousel-row {
        padding: 0 16px;
        gap: 10px;
    }
    
    .image-card {
        width: 240px;
        height: 160px;
    }
    
    /* About Section - Small Mobile */
    .about-section {
        padding: 60px 20px;
    }
    
    .about-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .about-subtext {
        font-size: 14px;
    }
    
    .card-number {
        font-size: 64px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    /* Why Choose Section - Small Mobile */
    .why-choose-section {
        padding: 60px 20px;
    }
    
    /* Production Process Section - Small Mobile */
    .production-process-section {
        padding: 60px 20px;
    }
    
    .process-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .process-subtext {
        font-size: 14px;
    }
    
    .process-card-title {
        font-size: 20px;
    }
    
    .process-card-description {
        font-size: 14px;
    }
    
    /* Capabilities Section - Small Mobile */
    .capabilities-section {
        padding: 50px 16px;
    }
    
    .capabilities-image-card {
        height: 350px;
    }
    
    .capabilities-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .capabilities-subtext {
        font-size: 14px;
    }
    
    .capability-card {
        padding: 18px;
    }
    
    .capability-badge {
        width: 40px;
        height: 40px;
    }
    
    .capability-number {
        font-size: 20px;
    }
    
    .capability-title {
        font-size: 20px;
    }
    
    .capability-description {
        font-size: 14px;
    }
    
    .fabric-heading {
        font-size: 20px;
    }
    
    .fabric-label {
        font-size: 12px;
    }
    
    /* Partners Section - Small Mobile */
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-container {
        padding: 0 16px;
    }
    
    .partners-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .partners-subtext {
        font-size: 14px;
    }
    
    .partners-carousel {
        gap: 20px;
    }
    
    .partners-row {
        gap: 20px;
    }
    
    .partner-logo {
        width: 70px;
        height: 70px;
        padding: 0;
    }
    
    .partner-logo img {
        width: 70px;
        height: 70px;
    }
    
    .partners-row-right {
        animation: scrollPartnersRight 25s linear infinite;
    }
    
    .partners-row-left {
        animation: scrollPartnersLeft 25s linear infinite;
    }
    
    /* Certifications Section - Small Mobile */
    .certifications-section {
        padding: 50px 16px;
    }
    
    .certifications-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .certifications-subtext {
        font-size: 14px;
    }
    
    .certifications-logos {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cert-card {
        height: 80px;
    }
    
    .cert-logo-placeholder {
        font-size: 16px;
    }
    
    .why-choose-heading {
        font-size: 24px;
        line-height: 32px;
    }
    
    .why-choose-subtext {
        font-size: 13px;
    }
    
    .why-card {
        padding: 18px 20px;
    }
    
    .why-icon {
        margin-bottom: 20px;
    }
    
    .why-card-title {
        font-size: 18px;
    }
    
    .why-card-description {
        font-size: 14px;
    }
    
    .about-section,
    .why-choose-section,
    .capabilities-section,
    .production-process-section,
    /* Contact Section - Mobile */
    .contact-section {
        padding: 60px 20px;
        gap: 32px;
    }
    
    .contact-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .contact-cards-container {
        flex-direction: column;
    }
    
    .contact-info-card {
        width: 100%;
        padding: 24px;
        gap: 24px;
    }
    
    .contact-form-card {
        padding: 28px;
        gap: 24px;
    }
    
    .contact-form-title {
        font-size: 24px;
        line-height: 29px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-label {
        font-size: 16px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 16px;
    }
    
    /* Footer - Mobile */
    .footer {
        padding: 60px 20px 20px;
    }
    
    .footer-logo-text {
        font-size: 40px;
        line-height: 50px;
    }
    
    .footer-logo-image {
        height: 150px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .certifications-section,
    .global-leaders-section,
    .global-reach-section {
        padding: 60px 0;
    }
    
    /* FAQs Section - Mobile */
    .faqs-section {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }
    
    .faqs-left {
        width: 100%;
    }
    
    .faqs-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .faqs-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-faq-primary,
    .btn-faq-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .faqs-right {
        max-width: 100%;
    }
    
    .about-text {
        text-align: center;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .leaders-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-text {
        font-size: 22px;
    }
    
    .quote-mark {
        font-size: 80px;
    }
    
    .quote-author {
        flex-direction: column;
    }
    
    .author-info {
        text-align: center;
    }
    
    .placeholder-map {
        height: 300px;
        transform: scale(0.8);
    }
    
    /* Production Process Section - Mobile */
    .production-process-section {
        padding: 80px 40px;
    }
    
    .process-heading {
        font-size: 28px;
        line-height: 36px;
    }
    
    .process-subtext {
        font-size: 15px;
    }
    
    .process-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .process-card {
        min-height: auto;
    }
    
    /* Notification Mobile Styles */
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification {
        padding: 12px 16px;
    }
    
    .notification-title {
        font-size: 14px;
        line-height: 18px;
    }
    
    .notification-message {
        font-size: 12px;
        line-height: 16px;
    }
    
    .notification-close {
        width: 18px;
        height: 18px;
        font-size: 18px;
        margin-left: 8px;
    }
}

/* Placeholder Image Utilities */
.placeholder-image,
.placeholder-image-circle,
.cert-placeholder,
.leader-placeholder {
    position: relative;
}

