/* Base & Variables */
:root {
    --primary: #1E3A8A; /* Deep Royal Blue */
    --primary-light: #2563EB;
    --primary-dark: #1e2b58;
    --secondary: #ea580c; /* Vibrant Orange */
    --secondary-hover: #c2410b;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --white: #ffffff;
    --warning: #f59e0b;
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-bengali: 'Hind Siliguri', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 4rem 0;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-100 { width: 100%; }
.mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 1rem; }
.bengali-font {
    font-family: var(--font-bengali);
    line-height: 1.8;
}
.bg-light { background-color: var(--bg-light); }
.bg-secondary { background-color: var(--primary-dark); }
.text-white { color: var(--white) !important; }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.text-warning { color: var(--warning); }
.text-primary { color: var(--primary); }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.title-underline {
    height: 4px;
    width: 60px;
    background: var(--secondary);
    border-radius: 2px;
    margin-bottom: 2rem;
}

.bg-white { background: var(--white); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(30, 58, 138, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.23);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.23);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(5px);
}

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

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

.navbar.scrolled .logo-text, .navbar.scrolled .nav-links a, .navbar.scrolled .menu-toggle {
    color: var(--text-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-icon {
    background: transparent;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logomark {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Ensures white backgrounds blend cleanly */
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem; /* Larger and more prominent */
    line-height: 1.1;
    color: var(--white);
    transition: var(--transition);
}

.animated-brand {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.animated-brand::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background-color: var(--warning); /* Bright orange/yellow contrast */
    animation: swipeLine 3s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes swipeLine {
    0% { transform: scaleX(0); transform-origin: left; }
    40% { transform: scaleX(1); transform-origin: left; }
    60% { transform: scaleX(1); transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary);
}

.nav-links a.highlight {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-links a.highlight:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section & Slider */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--bg-dark);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1; /* Make it static */
}

/* 1 Static Image related to wholesale/FMCG */
.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070&auto=format&fit=crop'); /* Warehouse boxes */
}
.slide-2 { display: none; }
.slide-3 { display: none; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Brightened gradient to allow image to show more vibrantly */
    background: linear-gradient(180deg, rgba(8, 15, 30, 0.6) 0%, rgba(8, 15, 30, 0.25) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text-wrapper {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulseObj 2s infinite;
}

@keyframes pulseObj {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.badge-text {
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.d-block { display: block; }
.mb-2 { margin-bottom: 0.5rem; }

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.title-tagline {
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
}

.title-sub {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
}

.hero-title .bengali-font {
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.text-gradient {
    background: linear-gradient(135deg, var(--warning), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    max-width: 650px;
    line-height: 1.8;
}

.hero-desc {
    margin-bottom: 1.5rem;
}

.modern-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 1.5rem;
}

.feature-pulse {
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    background: rgba(255,255,255,0.08); /* slightly stronger glass */
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1); /* better edge definition */
    backdrop-filter: blur(10px);
    flex: 1; /* expand cards to fill row */
}

.feature-pulse-full {
    width: 100%;
}

.feature-row {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 0.75rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.hero-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
    width: 80%; /* Don't span entire screen just the text block */
}

.feature-pulse i {
    color: var(--warning);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-box {
    background: var(--bg-light);
    border-left: 4px solid var(--secondary);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.mission-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.mission-box h3 {
    margin-bottom: 0.5rem;
}

.why-choose-us h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem; /* Tighter gap */
}

.feature-card {
    background: #ffffff;
    padding: 0.8rem 1.2rem; /* Much smaller hit area */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Premium gradient accent on hover */
.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06); 
    border-color: rgba(0,0,0,0.08);
}

.feature-card:hover::before {
    opacity: 1; /* Show magical border edge */
}

/* Modern icon backgrounds */
.feature-card i {
    color: var(--secondary);
    font-size: 1.2rem; /* Scaled down icon */
    min-width: 35px; /* Smaller background box */
    height: 35px;
    background: rgba(234, 88, 12, 0.08); 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.feature-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem; /* Tighter, cleaner typography */
    line-height: 1.3;
    flex: 1;
}

/* Advanced Brands Ribbon */
.brands-ribbon {
    background: #f8fafc;
    padding: 1.5rem 0; /* Drastically reduced vertical padding */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-top: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ribbon-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 4px;
    margin-bottom: 1rem; /* Tightened gap below title */
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pulse-dot-small {
    width: 6px;
    height: 6px;
    background-color: var(--warning);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: pulseObjSmall 2s infinite;
}

@keyframes pulseObjSmall {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.static-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem; 
    flex-wrap: nowrap; /* Force onto a single line */
    width: 100%;
    max-width: 900px;
    padding: 0 1rem;
    overflow: hidden;
}

.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px; /* Slightly smaller base height for better fit */
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    opacity: 0.8;
    animation: floatBrand 4s ease-in-out infinite;
}

/* Offset animations so they float organically in a wave */
.brand-item:nth-child(2) { animation-delay: 1.3s; }
.brand-item:nth-child(3) { animation-delay: 2.6s; }

@keyframes floatBrand {
    0%, 100% { transform: translateY(0); filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05)); }
    50% { transform: translateY(-8px); filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1)); }
}

.brand-item:hover {
    animation-play-state: paused;
    transform: scale(1.15) !important;
    opacity: 1;
}

.brand-img {
    height: 100%;
    width: auto;
    max-width: 28vw; /* Scale automatically on mobile to fit the row */
    object-fit: contain;
}

/* Fallback text if image cannot be loaded */
.brand-fallback {
    display: none; /* Hidden by default unless onerror triggers */
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1rem, 4.5vw, 1.8rem); /* Shrinks dynamically to prevent line breaks */
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap; /* Prevent word wrapping */
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.product-category-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0,0,0,0.08);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.25rem 0;
    font-size: 1.6rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.product-category-card:hover .card-icon {
    transform: scale(1.05) rotate(-5deg);
}

/* Sophisticated Theming - Icons & Shadows */
.card-grocery .card-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 10px 20px -5px rgba(234, 88, 12, 0.4);
}
.card-dairy .card-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}
.card-beverage .card-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 10px 20px -5px rgba(124, 58, 237, 0.4);
}
.card-essential .card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 20px -5px rgba(5, 150, 105, 0.4);
}

.product-category-card h3 {
    margin-bottom: 0.2rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.category-bengali {
    display: block;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding-top: 1.5rem;
    flex-grow: 1;
}

.category-tags span {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: default;
    border: none;
}

/* Premium Tinted Tags instead of muddy grey */
.card-grocery .category-tags span { background: rgba(234, 88, 12, 0.08); color: #ea580c; }
.card-dairy .category-tags span { background: rgba(37, 99, 235, 0.08); color: #2563eb; }
.card-beverage .category-tags span { background: rgba(124, 58, 237, 0.08); color: #7c3aed; }
.card-essential .category-tags span { background: rgba(16, 185, 129, 0.08); color: #059669; }

.product-category-card:hover .category-tags span {
    transform: translateY(-1px);
    filter: brightness(0.95);
}

/* Registration Section */
.register-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit {
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(5px);
}

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

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-message {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Service Area */
.area-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: stretch;
}

.area-list-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.areas-served {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.areas-served li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-light);
}

.areas-served li i {
    color: var(--secondary);
    font-size: 1.25rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-brand h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.proprietor {
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.circle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-info-item h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

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

/* Responsive */
/* Responsive */
@media (max-width: 992px) {
    .about-container, .register-container, .area-grid, .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title { font-size: 3.5rem; }
    .title-tagline { font-size: 1.6rem; }
    .title-sub { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start; /* Left align items */
        transition: right 0.4s cubic-bezier(0.86, 0, 0.07, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 4.5rem 1.5rem 2rem;
        border-left: 1px solid rgba(0,0,0,0.05);
        gap: 0; /* Overwrite desktop gap */
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 0.6rem;
        padding: 0.8rem 1.2rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        width: 100%;
        border-radius: 12px;
        background: #f8fafc;
        transition: all 0.3s ease;
    }
    
    .nav-links a i {
        color: var(--primary);
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
    }

    .nav-links a:hover {
        background: #f1f5f9;
        transform: translateX(5px);
    }

    .nav-links a.highlight {
        background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
        color: var(--white) !important;
        margin-top: 1rem;
        box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
    }
    
    .nav-links a.highlight i {
        color: var(--white);
    }

    .nav-links a.highlight:hover {
        background-color: var(--warning) !important;
        padding-left: 1.5rem; /* Cancel shifting hover */
        transform: translateY(-2px);
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .navbar {
        background-color: var(--white) !important;
        padding: 1rem 0;
        box-shadow: var(--shadow-sm);
    }
    
    .logo-text, .menu-toggle {
        color: var(--text-dark) !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    .title-tagline { font-size: 1.2rem; }
    .title-sub { 
        font-size: 1.5rem; 
        padding-top: 0; 
        margin-top: 0; 
        border-top: none; 
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
        padding: 0.4rem 1rem;
    }
    
    .badge-text { font-size: 0.8rem; }
    
    .hero-buttons {
        gap: 0.5rem;
        margin-top: 0.5rem;
        display: flex;
        flex-wrap: nowrap; /* Forces them onto one line */
    }
    
    .hero-buttons .btn {
        width: auto;
        flex: 1; /* Stretch to split the row 50/50 */
        justify-content: center;
        padding: 0.75rem 0.5rem; /* Reduced padding */
        font-size: 0.85rem; /* Smaller text to ensure they fit */
    }
    
    .modern-features {
        gap: 0;
        margin-bottom: 1.2rem !important;
    }
    
    .feature-pulse {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
        flex: 1 1 calc(50% - 1rem);
    }
    
    .brand-logo {
        font-size: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .product-category-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-served {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .areas-served {
        grid-template-columns: 1fr;
    }
    .hero-title { font-size: 2.2rem; }
    .title-sub { font-size: 1.2rem; }
    .feature-pulse {
        flex: 1 1 100%;
    }
}
