/* ============================================
   HOME.CSS - PromptSupply2011 Landing Page
   Clean, Professional & Modern Design
   Updated with New Design System
   ============================================ */

/* ============================================
   1. CSS VARIABLES - Updated Design System
   ============================================ */
:root {
    /* Primary Colors */
    --primary: #004AFF;
    --secondary: #01BFFF;
    --accent: #FFA732;
    
    /* Legacy Navy/Teal (keeping for backward compatibility) */
    --primary-navy: #1B2A41;
    --primary-teal: #00A99D;
    --teal-dark: #008B80;
    --teal-light: #00C9BA;
    
    /* New Dark Backgrounds */
    --dark-bg: #0A1628;
    --dark-bg-secondary: #1E3A5F;
    
    /* Success & Gold */
    --success: #10B981;
    --gold: #D4AF37;
    
    /* Text Colors */
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #F9FAFB;
    --text-muted: #64748B;
    
    /* Background Colors */
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #111827;
    
    /* Shadows */
    --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);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow-primary: 0 10px 40px rgba(0, 74, 255, 0.3);
    --shadow-glow-accent: 0 10px 40px rgba(255, 167, 50, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
    --section-compact: clamp(40px, 6vw, 80px);
    --container-max: 1280px;
    --container-wide: 1440px;
    --container-narrow: 960px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}

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

ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   3. UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-teal);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 169, 157, 0.1), rgba(0, 169, 157, 0.05));
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.section-label.left {
    margin-left: 0;
    margin-right: 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #123a75;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.section-description {
    font-size: 18px;
    color: var(--text-medium);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.hidden { display: none !important; }

/* ============================================
   4. LOADING SCREEN (Hidden)
   ============================================ */
.loading-screen, .loading-screen.hidden {
    display: none;
}

/* ============================================
   5. NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-nav.scrolled {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-bg-secondary) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Logo Styles */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.brand-year {
    color: var(--primary-teal);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 18px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary-teal);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: white;
}

.nav-link.active {
    color: white;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Nav Actions (Search, Phone, CTA) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.nav-icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-cta-btn {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--primary-teal);
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 169, 157, 0.3);
}

.nav-cta-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 169, 157, 0.4);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 400px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.dropdown-mega {
    min-width: 650px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 20px;
    padding: 25px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-heading {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-teal);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 169, 157, 0.2);
}

.dropdown-item {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(0, 169, 157, 0.1);
    color: var(--primary-teal);
    padding-left: 16px;
}

.dropdown-footer {
    background: var(--bg-light);
    padding: 15px 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-view-all {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.dropdown-view-all:hover {
    color: var(--teal-dark);
    gap: 12px;
}

/* Dropdown Featured Image */
.dropdown-featured {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.dropdown-featured-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

.dropdown-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.featured-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background: var(--primary-teal);
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
}

.featured-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.featured-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-teal);
    transition: all 0.2s ease;
}

.featured-link:hover {
    color: white;
}

/* Phone Button Tooltip */
.phone-btn {
    position: relative;
}

.phone-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    color: var(--primary-navy);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.phone-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

.phone-btn:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 42, 65, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    position: relative;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

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

.search-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.search-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.search-input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    font-family: var(--font-body);
    font-size: 18px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    border-color: var(--primary-teal);
    background: rgba(255, 255, 255, 0.15);
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.search-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 5px;
}

.search-tag {
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.search-tag:hover {
    background: var(--primary-teal);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-bg-secondary) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 5;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        font-size: 20px;
        padding: 15px 30px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-name {
        font-size: 18px;
    }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
/* .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 20px;
} */
/* 
.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2D4156 50%, #3D5A80 100%);
    z-index: -2;
} */


/* .hero-content {
    text-align: left;
    max-width: 800px;
}

.hero-title {
    margin-bottom: 25px;
} */

/* .title-line-1 {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 10px;
} */

/* .title-line-2 {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
} */

/* .hero-subtitle {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
} */

/* .subtitle-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-check {
    color: var(--primary-teal);
    font-weight: 700;
}

.subtitle-separator {
    color: rgba(255, 255, 255, 0.3);
} */

.hero-cta-buttons {
    display: flex !important;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-start;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    min-width: 180px;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer;
    transform: none !important;
}

.cta-primary {
    background: var(--primary-teal) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 169, 157, 0.3);
}

.cta-primary:hover {
    background: var(--teal-dark) !important;
    box-shadow: 0 6px 20px rgba(0, 169, 157, 0.4);
}

.cta-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid ;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   7. ABOUT SECTION
   ============================================ */
.about-section, .glass-section {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1;
}

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

.about-text {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary-navy);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 169, 157, 0.15), rgba(0, 169, 157, 0.05));
    border-radius: 12px;
    flex-shrink: 0;
    color: var(--primary-teal);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary-teal);
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 4px;
    text-align: left;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-medium);
    text-align: left;
}

.button-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-teal);
    transition: color 0.3s ease;
}

.button-link:hover {
    color: var(--teal-dark);
}

/* ============================================
   8. MISSION SECTION
   ============================================ */
.mission-section {
    padding: 100px 0 !important;
    background: var(--bg-light) !important;
}

.mission-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 50px;
}

.mission-card {
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 16px !important;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.mission-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15) !important;
}

.card-icon {
    font-size: 48px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 169, 157, 0.15), rgba(0, 169, 157, 0.05)) !important;
    border-radius: 50%;
    line-height: 1;
    color: var(--primary-teal);
}

.card-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-teal);
}

.mission-card h3 {
    font-family: var(--font-heading);
    font-size: 22px !important;
    font-weight: 700;
    color: var(--primary-navy) !important;
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 15px !important;
    color: var(--text-medium) !important;
    line-height: 1.7;
    max-width: 300px;
}

/* ============================================
   9. BRANCHES SECTION
   ============================================ */
.branches-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    margin-bottom: 50px;
}

.branches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.branch-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 450px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.branch-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.branch-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.branch-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.branch-card:hover .branch-bg img {
    transform: scale(1.05);
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(27, 42, 65, 0.95) 0%, rgba(27, 42, 65, 0.6) 50%, rgba(27, 42, 65, 0.2) 100%);
    z-index: 1;
}

.branch-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    z-index: 2;
    color: white;
}

.branch-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(0, 169, 157, 0.2);
    border-radius: 16px;
    margin-bottom: 20px;
}

.branch-icon svg {
    width: 38px;
    height: 38px;
    stroke: white;
}

.branch-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.branch-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.6;
}

.branch-features {
    margin-bottom: 25px;
}

.branch-features li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
}

.branch-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: 700;
}

.branch-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary-teal);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.branch-cta:hover {
    background: var(--teal-dark);
    transform: translateX(5px);
}

/* ============================================
   10. TIMELINE SECTION
   ============================================ */
.experience-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-teal), var(--teal-light));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 50px;
}

/* Odd items (1st, 3rd) - card on LEFT, dot on RIGHT of card */
.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 50%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 30px;
}

.timeline-item:nth-child(odd) .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
}

/* Even items (2nd, 4th) - card on RIGHT, dot on LEFT of card */
.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 50%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 30px;
}

.timeline-item:nth-child(even) .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--primary-teal);
    border-radius: 50%;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    max-width: 380px;
    width: 100%;
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.timeline-year {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   11. CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2D4156 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 169, 157, 0.1) 0%, transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    min-width: 180px;
    transition: all 0.3s ease;
}

.button-primary {
    background: var(--primary-teal);
    color: white;
}

.button-primary:hover {
    background: var(--teal-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 169, 157, 0.4);
}

.button-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* ============================================
   12. FOOTER
   ============================================ */
.main-footer {
    background: var(--bg-dark);
    padding: 80px 0 30px;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    color: white;
}

.footer-about {
    max-width: 320px;
}

.footer-company-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
}

.footer-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-teal);
    display: inline-block;
}

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

.footer-links a {
    font-size: 15px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-teal);
}

.footer-contact li {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--primary-teal);
    color: white;
    transform: translateY(-3px);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-teal);
}

/* ============================================
   13. RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    /* Mobile Mission Grid */
    .mission-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .mission-card {
        padding: 30px 20px !important;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 36px !important;
    }
    
    /* Mobile Timeline */
    .timeline {
        padding-left: 30px;
        padding-right: 10px;
    }
    
    .timeline-line {
        left: 10px;
        transform: none;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 35px !important;
        padding-right: 0 !important;
        justify-content: flex-start !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -2px !important;
        transform: translateX(-50%) !important;
        top: 30px;
    }
    
    .timeline-content {
        max-width: 100%;
    }
}

/* ============================================
   14. RESPONSIVE - TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    .section-title { font-size: 42px; }
    
    .hero-cta-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .image-wrapper img { height: 400px; }
    .about-features { grid-template-columns: 1fr 1fr; }
    .branches-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-buttons { flex-direction: row; justify-content: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .footer-bottom p { margin-bottom: 0; }
}

/* ============================================
   14. RESPONSIVE - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .title-line-1 { font-size: 56px; }
    .title-line-2 { font-size: 40px; }
    .about-grid { gap: 80px; }
    .about-features { grid-template-columns: repeat(3, 1fr); }
    .image-wrapper img { height: 450px; }
    
    /* Desktop Timeline */
    .timeline {
        max-width: 1000px;
    }
    
    .timeline-content {
        max-width: 400px;
    }
    
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* ============================================
   15. PAGE HERO (Contact, Blog, etc.)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2D4156 50%, #3D5A80 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-title {
    font-family: 'Montserrat', var(--font-heading), sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   16. CONTACT PAGE STYLES
   ============================================ */
.contact-info-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.contact-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 169, 157, 0.15), rgba(0, 169, 157, 0.05));
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary-teal);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-teal);
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.contact-card-text {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-card-text a {
    color: var(--primary-teal);
    transition: color 0.3s ease;
}

.contact-card-text a:hover {
    color: var(--teal-dark);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

@media (min-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
    }
}

.form-info {
    padding-right: 20px;
}

.form-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-teal);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 15px;
    color: var(--text-dark);
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(0, 169, 157, 0.1);
}

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

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--primary-teal);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 169, 157, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.location-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.location-address {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.location-details {
    margin-bottom: 20px;
}

.location-details p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 5px;
}

.location-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-teal);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.location-button:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}

.map-placeholder {
    background: white;
    border-radius: var(--radius-md);
    padding: 60px 30px;
    text-align: center;
    border: 2px dashed rgba(0, 169, 157, 0.3);
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.map-icon {
    color: var(--primary-teal);
}

.map-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-teal);
}

.map-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-navy);
}

.map-subtext {
    font-size: 14px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-teal);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   17. BLOG PAGE STYLES
   ============================================ */
.blog-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background: var(--primary-teal);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-date svg,
.blog-read-time svg {
    stroke: var(--primary-teal);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-title a {
    color: var(--primary-navy);
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-teal);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-teal);
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 10px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #2D4156 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.newsletter-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 15px;
    background: white;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 169, 157, 0.3);
}

.newsletter-form button {
    padding: 16px 32px;
    background: var(--primary-teal);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}

/* ============================================
   18. REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ============================================
   19. REDESIGNED HERO SECTION
   ============================================ */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    color: var(--accent);
}

.hero-title {
    margin-bottom: 24px;
}

.title-line-1,
.title-line-2,
.title-line-3 {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.title-line-1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 8px;
}

.title-line-2,
.title-line-3 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: none;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 520px;
    margin: 0 auto;
}

.hero-image-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow);
}

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

.hero-image-1 {
    width: 330px;
    height: 230px;
    top: 0;
    left: 20px;
    z-index: 3;
}

.hero-image-2 {
    width: 300px;
    height: 210px;
    top: 200px;
    right: -120px;
    z-index: 2;
}

.hero-image-3 {
    width: 280px;
    height: 200px;
    bottom: -80px;
    left: 65px;
    z-index: 1;
}

.image-card-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.hero-floating-stat {
    position: absolute;
    padding: 16px 24px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 10;
}

.stat-1 {
    top: 30px;
    right: -50px;
}

.stat-2 {
    bottom: -70px;
    right: -50px;
}

.hero-floating-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-teal);
    display: block;
}

.hero-floating-stat .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   21. CLIENT LOGOS SECTION
   ============================================ */
.clients-section {
    padding: 0px 0;
    background: white;
    overflow: hidden;
}

.clients-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 25px;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scrollLogos 40s linear infinite;
    width: max-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-track img {
    height: 60px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

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

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



/* ============================================
   23. SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-teal);
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

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

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 169, 157, 0.1), rgba(0, 169, 157, 0.05));
    border-radius: var(--radius-md);
    color: var(--primary-teal);
    margin-bottom: 24px;
}

.service-card[data-accent="#4C6444"] .service-icon {
    background: linear-gradient(135deg, rgba(76, 100, 68, 0.1), rgba(76, 100, 68, 0.05));
    color: #4C6444;
}

.service-card[data-accent="#01BFFF"] .service-icon {
    background: linear-gradient(135deg, rgba(1, 191, 255, 0.1), rgba(1, 191, 255, 0.05));
    color: #01BFFF;
}

.service-card[data-accent="#FFA732"] .service-icon {
    background: linear-gradient(135deg, rgba(255, 167, 50, 0.1), rgba(255, 167, 50, 0.05));
    color: #FFA732;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 0;
}

.service-features li svg {
    color: var(--success);
    flex-shrink: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-teal);
    transition: gap var(--transition-normal);
}

.service-cta:hover {
    gap: 12px;
}

/* ============================================
   24. PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.product-tab {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.product-tab:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.product-tab.active {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.product-badge.bestseller { background: var(--primary-teal); }
.product-badge.popular { background: var(--primary); }
.product-badge.new { background: var(--accent); }
.product-badge.official { background: var(--gold); }

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 42, 65, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-link {
    padding: 12px 24px;
    background: white;
    color: var(--primary-navy);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.product-card:hover .product-link {
    transform: translateY(0);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-top: 6px;
}

.products-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   25. WHY CHOOSE US SECTION
   ============================================ */
.why-us-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.why-us-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}

.why-us-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-us-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 169, 157, 0.15), rgba(0, 169, 157, 0.05));
    border-radius: 50%;
    color: var(--primary-teal);
    margin-bottom: 20px;
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.why-us-card:hover .why-us-icon {
    transform: rotate(10deg) scale(1.1);
}

.why-us-highlight {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 169, 157, 0.1);
    color: var(--primary-teal);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.why-us-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-us-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 280px;
}

/* ============================================
   26. TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
}

.testimonials-section .section-label,
.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-label {
    color: var(--secondary);
}

.testimonials-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    padding: 20px 80px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 calc(100% - 0px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: all var(--transition-normal);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-teal);
    transform: translateY(-5px);
    z-index: 2;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 24px;
    flex-grow: 1;
}

.quote-icon {
    color: var(--primary-teal);
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-quote p {
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating svg {
    color: var(--gold);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    padding-bottom: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0;
}

.carousel-dot:hover,
.carousel-dot.active {
    background: var(--primary-teal);
    transform: scale(1.3);
}

/* ============================================
   27. PROCESS SECTION
   ============================================ */
.process-section {
    padding: var(--section-padding) 0;
    background: white;
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.process-line {
    display: none;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.step-content {
    flex: 1;
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: var(--radius-md);
    color: var(--primary-teal);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   28. BRAND PARTNERS SECTION
   ============================================ */
.brands-section {
    padding: var(--section-compact) 0;
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.brand-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.brand-logo {
    margin-bottom: 16px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-placeholder {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px dashed #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
}

.brand-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.brand-info p {
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.brand-since {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
}

.brands-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    max-width: fit-content;
    margin: 0 auto;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   29. CTA & NEWSLETTER SECTION
   ============================================ */
.cta-newsletter-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-bg-secondary) 100%);
    position: relative;
}

.cta-newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 169, 157, 0.1) 0%, transparent 70%);
}

.cta-newsletter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-part,
.newsletter-part {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 16px;

}

.cta-tagline {
    font-family: var(--font-heading) !important;
    font-size: clamp(0.875rem, 1.5vw, 1rem) !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 0 !important;
}

.cta-company-name {
    font-size:  2rem !important;
    margin-top: 8px !important;
    opacity: 0.9;
    letter-spacing: 1px;
}

.cta-part h2,
.newsletter-part h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.cta-part p,
.newsletter-part p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.cta-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.phone-contact {
    background: white;
    color: var(--primary-navy);
}

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

.email-contact {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-contact:hover {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-contact {
    background: #25D366;
    color: white;
}

.whatsapp-contact:hover {
    background: #22c35e;
    transform: translateY(-3px);
}

.cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-divider span {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
}


/* ============================================
   30. ENHANCED FOOTER - Additional Styles
   ============================================ */
.footer-title-secondary {
    margin-top: 24px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact li svg {
    flex-shrink: 0;
    color: var(--primary-teal);
    margin-top: 2px;
}

.footer-contact li span,
.footer-contact li a {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact li a:hover {
    color: var(--primary-teal);
}

.hours-item {
    align-items: flex-start !important;
}

.hours-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hours-text span {
    font-size: 13px;
}

.payment-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.payment-icon {
    opacity: 0.7;
    transition: opacity var(--transition-normal);
}

.payment-icon:hover {
    opacity: 1;
}

/* ============================================
   31. FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: none;
    z-index: 1000;
    transition: all var(--transition-normal);
    animation: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    padding: 8px 16px;
    background: var(--primary-navy);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
}

/* ============================================
   32. RESPONSIVE - TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    .hero-trust-indicators {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    
    .stat-divider {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cta-newsletter-grid {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    
    .newsletter-part .newsletter-form {
        flex-direction: row;
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-bottom p {
        margin-bottom: 0;
    }
}

/* ============================================
   33. RESPONSIVE - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .process-timeline {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
    }
    
    .process-line {
        display: block;
        position: absolute;
        top: 24px;
        left: 10%;
        right: 10%;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-teal), var(--secondary));
        border-radius: 3px;
        z-index: 0;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        width: 18%;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    
    .step-content {
        margin-top: 20px;
    }
}

/* ============================================
   34. RESPONSIVE - LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
    .hero-image-1 {
        width: 380px;
        height: 280px;
    }
    
    .hero-image-2 {
        width: 320px;
        height: 240px;
    }
    
    .hero-image-3 {
        width: 300px;
        height: 220px;
    }
}