/* ===================================
   FLAVIQ - FMCG Brand Website
   Modern, Clean, Indian-Inspired Design
   =================================== */

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - From Flaviq Logo */
    --primary-green: #4CAF50;
    --primary-green-dark: #388E3C;
    --primary-green-light: #7ED321;
    
    --secondary-orange: #FF851B;
    --secondary-orange-dark: #FF6B1B;
    --secondary-red: #FF4136;
    
    --accent-gold: #FFD700;
    --accent-yellow: #FFC107;
    --accent-cyan: #00C9FF;
    --accent-blue: #007BFF;
    
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #7a7a7a;
    
    --bg-white: #ffffff;
    --bg-cream: #fef9f3;
    --bg-light-green: #f0f8f3;
    --bg-gray: #f8f9fa;
    
    --border-light: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding) 0;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* ============ NAVIGATION ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 90px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-green);
    letter-spacing: 2px;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-orange), var(--accent-cyan));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta-link {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.nav-link.cta-link::after {
    display: none;
}

.nav-link.cta-link:hover {
    background: linear-gradient(135deg, var(--secondary-red), var(--secondary-orange));
    color: white;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    background: linear-gradient(135deg, 
        #fff9f0 0%, 
        #f0fff4 25%, 
        #fff9f0 50%, 
        #f0f9ff 75%, 
        #fff0f5 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 65, 54, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(255, 133, 27, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 60%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 90%, rgba(0, 201, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-logo-img {
    height: 180px;
    width: auto;
    max-width: 550px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-gray);
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.product-showcase {
    position: relative;
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, 
        rgba(255, 65, 54, 0.12) 0%,
        rgba(255, 133, 27, 0.12) 20%,
        rgba(255, 215, 0, 0.12) 40%,
        rgba(76, 175, 80, 0.12) 60%,
        rgba(0, 201, 255, 0.12) 80%,
        rgba(0, 123, 255, 0.12) 100%);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    transition: transform 0.3s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.product-showcase::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(135deg, 
        var(--secondary-red) 0%,
        var(--secondary-orange) 20%,
        var(--accent-gold) 40%,
        var(--primary-green) 60%,
        var(--accent-cyan) 80%,
        var(--accent-blue) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.product-showcase:hover {
    transform: translateY(-10px);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 133, 27, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 133, 27, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 133, 27, 0.6);
    }
}

.product-image {
    max-width: 130%;
    max-height: 130%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.product-showcase:hover .product-image {
    transform: scale(1.05);
}

.product-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-image-placeholder i {
    font-size: 10rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.product-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 133, 27, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-red), var(--secondary-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 65, 54, 0.4);
}

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

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: white;
    border-color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(0, 201, 255, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--secondary-red) 0%, 
        var(--secondary-orange) 20%, 
        var(--accent-gold) 40%, 
        var(--primary-green-light) 60%, 
        var(--primary-green) 80%, 
        var(--accent-cyan) 100%);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

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

/* ============ ABOUT SECTION ============ */
.about-section {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story h3 {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-story p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 65, 54, 0.05), rgba(255, 133, 27, 0.05));
}

.value-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 193, 7, 0.05));
}

.value-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(126, 211, 33, 0.05));
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-card:nth-child(1) .value-icon {
    background: linear-gradient(135deg, var(--secondary-red), var(--secondary-orange));
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-yellow));
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
    background: var(--bg-gray);
}

.live-product {
    margin-bottom: 5rem;
}

.subsection-title {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.live-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.coming-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 133, 27, 0.3);
}

.subsection-desc {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(255, 133, 27, 0.03) 0%,
        rgba(255, 215, 0, 0.03) 50%,
        rgba(76, 175, 80, 0.03) 100%);
}

.product-image-container {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-product-image {
    max-width: 130%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.product-card.featured:hover .featured-product-image {
    transform: scale(1.05);
}

.product-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.product-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-status.live {
    background: linear-gradient(135deg, #d4edda, #c3f7cb);
    color: #155724;
    border: 2px solid var(--primary-green);
}

.product-status.upcoming {
    background: linear-gradient(135deg, #fff3cd, #ffecb3);
    color: #856404;
    border: 2px solid var(--accent-gold);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(126, 211, 33, 0.15), 
        rgba(255, 215, 0, 0.15), 
        rgba(0, 201, 255, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.product-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, 
        var(--primary-green-light), 
        var(--accent-gold), 
        var(--accent-cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.product-card.featured .product-icon {
    width: 120px;
    height: 120px;
}

.product-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.product-card.featured .product-icon i {
    font-size: 3.5rem;
}

.product-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-category {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-desc {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.product-features i {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.8rem;
}

.product-card.coming-soon {
    opacity: 0.9;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, 
                    var(--accent-gold), 
                    var(--secondary-orange), 
                    var(--accent-cyan)) border-box;
}

.product-card.coming-soon .product-icon {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.2), 
        rgba(255, 133, 27, 0.2));
}

.product-card.coming-soon .product-icon i {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ WHY SECTION ============ */
.why-section {
    background: var(--bg-white);
}

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

.why-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.why-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 65, 54, 0.05), rgba(255, 133, 27, 0.05));
}

.why-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 133, 27, 0.05));
}

.why-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(126, 211, 33, 0.05));
}

.why-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.05), rgba(0, 123, 255, 0.05));
}

.why-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(126, 211, 33, 0.05), rgba(0, 201, 255, 0.05));
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, 
        var(--secondary-red) 0%, 
        var(--secondary-orange) 25%, 
        var(--accent-gold) 50%, 
        var(--primary-green-light) 75%, 
        var(--accent-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.why-card:nth-child(1) .why-icon {
    background: linear-gradient(135deg, var(--secondary-red), var(--secondary-orange));
}

.why-card:nth-child(2) .why-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--secondary-orange));
}

.why-card:nth-child(3) .why-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
}

.why-card:nth-child(4) .why-icon {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
}

.why-card:nth-child(5) .why-icon {
    background: linear-gradient(135deg, var(--primary-green-light), var(--accent-cyan));
}

.why-icon i {
    font-size: 2.5rem;
    color: white;
}

.why-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============ VISION SECTION ============ */
.vision-section {
    background: linear-gradient(135deg, 
        #fff0f5 0%,    /* light red tint */
        #fff9f0 20%,   /* orange tint */
        #fffef0 40%,   /* gold tint */
        #f0fff4 60%,   /* green tint */
        #f0f9ff 80%,   /* cyan tint */
        #f0f5ff 100%); /* blue tint */
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.vision-map {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.map-container {
    position: relative;
    text-align: center;
}

.map-container > i {
    font-size: 15rem;
    color: var(--bg-light-green);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 2rem;
}

.region {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.region-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.region-status {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
}

.phase-1 .region-status {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
}

.phase-2 .region-status {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    color: white;
}

.phase-3 .region-status {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    color: white;
}

.vision-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 40px;
    width: 2px;
    height: calc(100% + 2rem);
    background: var(--border-light);
}

.timeline-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--border-light);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-dot.active {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    box-shadow: 0 0 0 8px rgba(255, 133, 27, 0.2);
}

.timeline-item:nth-child(1) .timeline-dot {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
}

.timeline-item:nth-child(2) .timeline-dot {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
}

.timeline-item:nth-child(3) .timeline-dot {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
}

.timeline-item:nth-child(4) .timeline-dot {
    background: linear-gradient(135deg, var(--secondary-red), var(--secondary-orange));
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    box-shadow: 0 4px 15px rgba(255, 133, 27, 0.3);
}

.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    box-shadow: 0 4px 15px rgba(0, 201, 255, 0.3);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-content h3 {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
}

.stat-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ============ PARTNER SECTION ============ */
.partner-section {
    background: var(--bg-white);
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.partner-benefits h3 {
    background: linear-gradient(135deg, var(--secondary-red), var(--secondary-orange));\n    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(126, 211, 33, 0.05));
}

.benefit-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 133, 27, 0.05), rgba(255, 215, 0, 0.05));
}

.benefit-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.05), rgba(0, 123, 255, 0.05));
}

.benefit-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(255, 65, 54, 0.05), rgba(255, 133, 27, 0.05));
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefit-item:nth-child(1) i {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item:nth-child(2) i {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item:nth-child(3) i {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item:nth-child(4) i {
    background: linear-gradient(135deg, var(--secondary-red), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.partner-types {
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.08), 
        rgba(255, 215, 0, 0.08));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.partner-types::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--accent-gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.partner-types h4 {
    background: linear-gradient(135deg, var(--secondary-red), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.partner-types ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.partner-types li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

.partner-types i {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.form-card > p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-orange);
    box-shadow: 0 0 0 3px rgba(255, 133, 27, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    background: var(--bg-white);
    padding: var(--section-padding) 0;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(126, 211, 33, 0.05));
}

.contact-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 133, 27, 0.05), rgba(255, 215, 0, 0.05));
}

.contact-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.05), rgba(0, 123, 255, 0.05));
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
}

.contact-card:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-gold));
}

.contact-card:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--text-gray);
    margin: 0;
}

.contact-details a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-orange);
}

.contact-form-wrapper {
    background: white;
}

.contact-form-card {
    background: var(--bg-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.contact-form-card > p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(180deg, var(--text-dark) 0%, #0a0a0a 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--secondary-red) 0%, 
        var(--secondary-orange) 20%, 
        var(--accent-gold) 40%, 
        var(--primary-green-light) 60%, 
        var(--accent-cyan) 80%, 
        var(--accent-blue) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    font-weight: 500;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--accent-gold);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-note {
    color: var(--accent-gold);
    font-weight: 600;
    font-style: italic;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    h1 { font-size: 3rem; }
    h2 { font-size: 2.3rem; }
    h3 { font-size: 1.7rem; }

    .hero-content,
    .about-content,
    .vision-content,
    .partner-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-showcase {
        width: 350px;
        height: 450px;
    }

    .hero-logo-img {
        height: 120px;
        max-width: 500px;
    }

    .vision-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    section {
        padding: var(--section-padding-mobile) 0;
    }

    /* Mobile Navigation */
    .mobile-toggle {
        display: block;
    }

    .logo-img {
        height: 75px;
        max-width: 220px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link.cta-link {
        text-align: center;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-logo-img {
        height: 100px;
        max-width: 450px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .product-showcase {
        width: 300px;
        height: 400px;
    }

    .product-image {
        max-height: 300px;
    }

    .product-image-container {
        max-width: 250px;
    }

    .product-image-placeholder i {
        font-size: 8rem;
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo-img {
        height: 85px;
        max-width: 350px;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }

    .logo-img {
        height: 70px;
        max-width: 200px;
    }

    .hero-logo-img {
        height: 90px;
        max-width: 400px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-showcase {
        width: 100%;
        height: 350px;
        padding: 2rem;
    }

    .product-image {
        max-height: 250px;
    }

    .product-image-container {
        max-width: 200px;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }

    .footer-logo-img {
        height: 80px;
        max-width: 320px;
    }
}