/* ========================================
   ROOT VARIABLES & VARIBLES
   ======================================== */
:root {
    /* Colors */
    --hermes-orange: #FF8C00;
    --hermes-orange-light: #FFA500;
    --hermes-orange-dark: #FF7A00;
    --cream-primary: #FFFCF8;
    --cream-light: #FFFEF9;
    --cream-soft: #FFF8F0;
    --white: #FFFFFF;
    --text-primary: #2A1B0A;
    --text-secondary: #5D4E37;
    --text-muted: #8B7355;
    
    /* Typography */
    --font-playfair: 'Playfair Display', serif;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-dancing: 'Dancing Script', cursive;
    --font-cormorant: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-luxury: 0 25px 80px rgba(0, 0, 0, 0.08), 0 12px 40px rgba(255, 140, 0, 0.08);
    --shadow-glow: 0 0 20px rgba(255, 140, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Gradients */
    --gradient-hermes-orange: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FF7A00 100%);
}

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

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

body {
    font-family: var(--font-inter);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--cream-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container { max-width: min(100%, 1200px); margin: 0 auto; padding: 0 clamp(1rem, 5vw, 2rem); }

/* ========================================
   PRELOADER
   ======================================== */
.evia-modern-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--cream-primary) 0%, var(--cream-light) 50%, var(--cream-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.evia-modern-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.desktop-corner-notification { width: 100%; max-width: 400px; }
.corner-notification {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-luxury);
}

.logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo { width: 60px; height: 60px; object-fit: contain; }

.loading-content .loading-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.brand-text {
    font-family: var(--font-playfair);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.progress-indicator {
    width: 100%;
    height: 4px;
    background: rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-hermes-orange);
    border-radius: var(--radius-full);
    animation: progressLoad 2s ease-in-out;
}

@keyframes progressLoad {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ========================================
   MODERN HERMES HEADER
   ======================================== */

.hermes-modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s var(--ease-luxury);
    padding: 0;
}

.header-glass-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.08);
    transition: all 0.4s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

.header-glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 140, 0, 0.3), 
        transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Header States - Circle Design on Scroll */
.hermes-modern-header.scrolled .header-glass-container {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

.hermes-modern-header.scrolled .header-glass-container::before {
    opacity: 0;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 3vw, 2rem);
    height: 80px;
    transition: all 0.4s var(--ease-luxury);
}

.hermes-modern-header.scrolled .desktop-nav {
    height: 90px;
    padding: 20px clamp(2rem, 4vw, 3rem);
    justify-content: flex-start;
    gap: 2rem;
}

/* Circle Design for Scrolled Desktop */
.hermes-modern-header.scrolled .logo-section {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(40px);
    transition: all 0.4s var(--ease-luxury);
}

.hermes-modern-header.scrolled .logo-section:hover {
    transform: scale(1.05);
    border-color: var(--hermes-orange);
}

/* Switch to mobile logo on desktop scroll */
.hermes-modern-header.scrolled .desktop-logo {
    content: url('images/mobilelogo.png');
    height: 45px;
}

.hermes-modern-header.scrolled .nav-links-container,
.hermes-modern-header.scrolled .header-cta-section {
    display: none;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
    transition: all 0.4s var(--ease-luxury);
}

.logo-link {
    display: block;
    transition: transform 0.3s var(--ease-luxury);
}

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

.desktop-logo {
    height: 45px;
    width: auto;
    transition: all 0.4s var(--ease-luxury);
    filter: drop-shadow(0 2px 8px rgba(255, 140, 0, 0.1));
}

.hermes-modern-header.scrolled .desktop-logo {
    height: 50px;
}

/* Desktop Hamburger Menu (appears on scroll) */
.desktop-hamburger-circle {
    display: none;
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(40px);
    transition: all 0.4s var(--ease-luxury);
    margin-left: auto;
}

.hermes-modern-header.scrolled .desktop-hamburger-circle {
    display: flex;
}

.desktop-hamburger-circle:hover {
    transform: scale(1.05);
    border-color: var(--hermes-orange);
}

.desktop-hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.desktop-hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 1px;
    transition: all 0.3s var(--ease-luxury);
    transform-origin: center;
}

.desktop-hamburger-circle:hover .desktop-hamburger-line {
    background: var(--hermes-orange);
}

/* Desktop Hamburger Active State */
.desktop-hamburger-circle.active {
    background: rgba(255, 140, 0, 0.15);
    border-color: var(--hermes-orange);
}

.desktop-hamburger-circle.active .desktop-hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background: var(--hermes-orange);
}

.desktop-hamburger-circle.active .desktop-hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.desktop-hamburger-circle.active .desktop-hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    background: var(--hermes-orange);
}

/* Navigation Links */
.nav-links-container {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 40px);
}

.nav-link {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s var(--ease-luxury);
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-hermes-orange);
    transform: translateX(-50%);
    transition: width 0.3s var(--ease-luxury);
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--hermes-orange);
    transform: translateY(-1px);
}

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

/* Header CTA Section */
.header-cta-section {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Shop Now Button */
.shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-hermes-orange);
    color: white;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-luxury);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow: 
        0 8px 24px rgba(255, 140, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.shop-now-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shop-now-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(255, 140, 0, 0.35),
        0 4px 16px rgba(0, 0, 0, 0.15);
}

.shop-now-btn:hover::before {
    opacity: 1;
}

.shop-now-btn:hover .btn-icon {
    transform: translateX(2px);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    font-size: 16px;
    transition: transform 0.3s var(--ease-luxury);
}

/* Book Consultation Button */
.book-consultation-btn {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 20px;
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-luxury);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    letter-spacing: 0.3px;
}

.book-consultation-btn:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--hermes-orange);
    color: var(--hermes-orange);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.15);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: 70px;
}

.mobile-logo-section {
    flex-shrink: 0;
}

.mobile-logo-link {
    display: block;
}

.mobile-logo {
    height: 35px;
    width: auto;
    transition: transform 0.3s var(--ease-luxury);
    filter: drop-shadow(0 2px 8px rgba(255, 140, 0, 0.1));
}

/* Mobile Menu Toggle - Circle Design */
.mobile-menu-toggle {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
    backdrop-filter: blur(40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--hermes-orange);
    transform: scale(1.05);
}

.toggle-line {
    width: 22px;
    height: 3px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-luxury);
    transform-origin: center;
}

/* Toggle Animation */
.mobile-menu-toggle.active {
    background: rgba(255, 140, 0, 0.15);
    border-color: var(--hermes-orange);
}

.mobile-menu-toggle.active .toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--hermes-orange);
}

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

.mobile-menu-toggle.active .toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--hermes-orange);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-luxury);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 252, 248, 0.95) 100%);
    backdrop-filter: blur(40px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-luxury);
    overflow-y: auto;
    box-shadow: 
        -20px 0 60px rgba(0, 0, 0, 0.15),
        -8px 0 32px rgba(0, 0, 0, 0.08);
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
}

.menu-logo-section {
    flex-shrink: 0;
}

.menu-logo {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(255, 140, 0, 0.15));
}

.menu-close-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 140, 0, 0.1);
    color: var(--hermes-orange);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s var(--ease-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.menu-close-btn:hover {
    background: var(--hermes-orange);
    color: white;
    transform: scale(1.05);
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 40px 24px 24px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 96px);
}

/* Primary Navigation */
.mobile-primary-nav {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 140, 0, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s var(--ease-luxury);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 140, 0, 0.05), 
        transparent);
    transition: left 0.6s ease;
}

.mobile-nav-item:hover::before {
    left: 100%;
}

.mobile-nav-item:hover {
    background: rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.2);
    transform: translateX(8px);
    box-shadow: 
        0 8px 24px rgba(255, 140, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-item-text {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.mobile-nav-item:hover .nav-item-text {
    color: var(--hermes-orange);
}

.nav-item-icon {
    font-size: 18px;
    color: var(--text-muted);
    transition: all 0.3s var(--ease-luxury);
}

.mobile-nav-item:hover .nav-item-icon {
    color: var(--hermes-orange);
    transform: translateX(4px);
}

/* Mobile CTA Section */
.mobile-menu-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.mobile-shop-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--gradient-hermes-orange);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s var(--ease-luxury);
    box-shadow: 
        0 8px 24px rgba(255, 140, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-shop-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-shop-btn:hover {
    transform: scale(1.02);
    box-shadow: 
        0 12px 32px rgba(255, 140, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.15);
}

.mobile-shop-btn:hover::before {
    opacity: 1;
}

.mobile-consultation-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 140, 0, 0.2);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 16px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s var(--ease-luxury);
    backdrop-filter: blur(20px);
}

.mobile-consultation-btn:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--hermes-orange);
    color: var(--hermes-orange);
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.15);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s var(--ease-luxury);
    backdrop-filter: blur(20px);
}

.social-link:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: var(--hermes-orange);
    color: var(--hermes-orange);
    transform: translateY(-2px);
}

.menu-tagline {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .nav-links-container {
        gap: 24px;
    }
    
    .shop-now-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .book-consultation-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show mobile */
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
        background: transparent;
        padding: 20px;
    }
    
    /* Remove all header backgrounds on mobile */
    .hermes-modern-header .header-glass-container {
        background: transparent;
        backdrop-filter: none;
        border-bottom: none;
        box-shadow: none;
    }
    
    .hermes-modern-header .header-glass-container::before {
        display: none;
    }
    
    /* Mobile circle adjustments - tighter, no shadows */
    .mobile-logo-circle {
        width: 65px;
        height: 65px;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(255, 140, 0, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(40px);
        transition: all 0.4s var(--ease-luxury);
    }
    
    .mobile-logo {
        height: 40px;
        width: auto;
        object-fit: contain;
    }
    
    .mobile-menu-toggle {
        width: 65px;
        height: 65px;
    }
    
    .toggle-line {
        width: 22px;
        height: 3px;
    }
    
    /* Scrolled state on mobile - slightly smaller */
    .hermes-modern-header.scrolled .mobile-nav {
        padding: 15px 20px;
    }
    
    .hermes-modern-header.scrolled .mobile-logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .hermes-modern-header.scrolled .mobile-menu-toggle {
        width: 60px;
        height: 60px;
    }
    
    .hermes-modern-header.scrolled .mobile-logo {
        height: 36px;
    }
    
    .hermes-modern-header.scrolled .toggle-line {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        padding: 15px;
    }
    
    .mobile-logo-circle {
        width: 62px;
        height: 62px;
    }
    
    .mobile-menu-toggle {
        width: 62px;
        height: 62px;
    }
    
    .mobile-logo {
        height: 38px;
    }
    
    .toggle-line {
        width: 20px;
        height: 2px;
    }
    
    .mobile-menu-container {
        width: 100%;
        max-width: none;
    }
}

/* Smooth Animations */
@keyframes menuSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-item {
    animation: menuSlideIn 0.4s var(--ease-luxury) forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.25s; }

/* Body Scroll Lock */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ========================================
   HERO SECTION - COMPLETE
   ======================================== */
.cinematic-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(100px, 12vh, 140px) 0;
    overflow: hidden;
    background: var(--cream-primary);
    text-align: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(42, 27, 10, 0.3) 0%, rgba(42, 27, 10, 0.6) 100%),
        linear-gradient(135deg, rgba(255, 248, 240, 0.4) 0%, rgba(255, 248, 240, 0.2) 50%, rgba(42, 27, 10, 0.7) 100%);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.hero-floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--hermes-orange);
    opacity: 0.06;
    filter: blur(80px);
    animation: heroOrbFloat 25s ease-in-out infinite;
}

.hero-orb-1 {
    width: clamp(180px, 25vw, 350px);
    height: clamp(180px, 25vw, 350px);
    top: -10%;
    left: -10%;
}

.hero-orb-2 {
    width: clamp(130px, 20vw, 250px);
    height: clamp(130px, 20vw, 250px);
    top: 50%;
    right: -15%;
    animation-delay: -8s;
}

.hero-orb-3 {
    width: clamp(80px, 15vw, 160px);
    height: clamp(80px, 15vw, 160px);
    bottom: 10%;
    left: 40%;
    animation-delay: -15s;
}

.hero-orb-4 {
    width: clamp(100px, 18vw, 200px);
    height: clamp(100px, 18vw, 200px);
    bottom: 30%;
    right: 10%;
    animation-delay: -12s;
}

.hero-aqua-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-aqua-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 158, 24, 0.1);
    filter: blur(15px);
    animation: heroAquaFloat 20s ease-in-out infinite;
}

.hero-bubble-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 15%;
    animation-delay: -5s;
}

.hero-bubble-2 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    right: 20%;
    animation-delay: -10s;
}

.hero-bubble-3 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 30%;
    animation-delay: -15s;
}

.hero-content-stack {
    position: relative;
    z-index: 100;
    max-width: min(100%, 900px);
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 3rem);
    min-height: 70vh;
}

.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    background: rgba(255, 255, 255, 0.98);
    color: var(--hermes-orange);
    padding: clamp(1rem, 3vw, 1.2rem) clamp(1.8rem, 4vw, 2.2rem);
    border-radius: var(--radius-full);
    font-family: var(--font-inter);
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.15vw, 0.8px);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 140, 0, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-medium);
    width: auto;
    margin: 0 auto;
    margin-top: clamp(2rem, 4vh, 3rem);
    white-space: nowrap;
    min-height: 44px;
}

.hero-badge-premium:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.hero-headline-stack {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(0.8rem, 2vw, 1.2rem);
}

.hero-headline-primary {
    font-family: var(--font-playfair);
    font-size: clamp(2.2rem, 8vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6), 0 2px 4px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin: 0;
}

.hero-headline-secondary {
    font-family: var(--font-playfair);
    font-size: clamp(1.6rem, 6vw, 2.8rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.15;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #FFD700 0%, #FFB84D 20%, #FF8C00 40%, #FFA500 60%, #FFD700 80%, #FFEB3B 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradientShimmer 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
    text-align: center;
    margin: 0;
}

.hero-subheadline-elegant {
    font-family: var(--font-inter);
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--white);
    max-width: min(95%, 700px);
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.01em;
    text-align: center;
    padding: 0;
}

.hero-cta-signature {
    position: relative;
    background: linear-gradient(135deg, var(--hermes-orange) 0%, var(--hermes-orange-light) 50%, var(--hermes-orange-dark) 100%);
    color: var(--white);
    border: none;
    padding: clamp(1.4rem, 4vw, 1.6rem) clamp(2.5rem, 6vw, 3.5rem);
    border-radius: 50px;
    font-family: var(--font-inter);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 800;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 56px;
}

.hero-cta-signature:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.5);
}

.cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.hero-cta-signature:hover .cta-shimmer { 
    left: 100%; 
}

.hero-stats-row-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 3vw, 1.5rem);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stat-pill {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: clamp(1rem, 2.5vw, 1.2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
    transition: all var(--transition-medium);
    min-height: 80px;
}

.hero-stat-pill:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: var(--shadow-soft);
}

.hero-stat-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-hermes-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.hero-stat-number {
    font-family: var(--font-inter);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.hero-stat-label {
    font-family: var(--font-inter);
    font-size: clamp(0.65rem, 2vw, 0.75rem);
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.hero-hermes-signature-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: clamp(1rem, 3vh, 2rem) 0 0;
}

.hero-signature-container { 
    text-align: center; 
}

.hero-signature-text {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.hero-signature-line {
    font-family: var(--font-dancing);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    font-weight: 500;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-signature-credentials {
    font-family: var(--font-inter);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: var(--hermes-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-signature-underline {
    width: 60px;
    height: 2px;
    background: var(--gradient-hermes-orange);
    margin: 0 auto;
    border-radius: 2px;
}

.hero-scroll-indicator-elegant {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.hero-scroll-indicator-elegant:hover { 
    transform: translateY(-3px); 
}

.hero-scroll-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hermes-orange);
    font-size: 1.2rem;
    animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll-text {
    font-family: var(--font-inter);
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Animations */
@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-15px, -20px) scale(0.95); }
    75% { transform: translate(25px, 15px) scale(1.02); }
}

@keyframes heroAquaFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
}

@keyframes heroGradientShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

/* Hero Mobile Responsive */
@media (max-width: 768px) {
    .hero-hermes-signature-wrapper { 
        display: none !important; 
    }
    
    .hero-video-overlay {
        background: 
            radial-gradient(circle at 50% 50%, rgba(42, 27, 10, 0.4) 0%, rgba(42, 27, 10, 0.7) 100%),
            linear-gradient(135deg, rgba(255, 248, 240, 0.5) 0%, rgba(255, 248, 240, 0.2) 50%, rgba(42, 27, 10, 0.8) 100%);
    }
    
    .hero-stats-row-container { 
        grid-template-columns: 1fr; 
        gap: 1rem; 
        max-width: 300px; 
    }
    
    .hero-stat-pill { 
        padding: 0.8rem 1rem; 
        border-radius: 1.2rem; 
        min-height: 70px; 
    }
}

@media (max-width: 480px) {
    .cinematic-hero { 
        padding: clamp(90px, 10vh, 120px) 0 clamp(110px, 13vh, 150px); 
    }
    
    .hero-content-stack { 
        gap: clamp(1.5rem, 4vw, 2rem); 
        padding: 0 clamp(1rem, 3vw, 1.5rem); 
    }
    
    .hero-badge-premium { 
        font-size: 0.75rem; 
        padding: 0.8rem 1.5rem; 
        min-height: 40px; 
    }
    
    .hero-cta-signature { 
        padding: 1.2rem 2rem; 
        font-size: 0.85rem; 
        min-width: 240px; 
        min-height: 52px; 
    }
}

/* ========================================
   ENHANCED HOLIDAY PACKAGES SECTION - MODERN TILES
   ======================================== */

section.evia-whats-hot-packages-section {
    padding: 120px 0 140px;
    background: linear-gradient(135deg, 
        var(--cream-primary, #FFFCF8) 0%, 
        var(--cream-light, #FFFEF9) 50%, 
        var(--cream-soft, #FFF8F0) 100%
    );
    position: relative;
    overflow: hidden;
    font-family: var(--font-inter, 'Inter', sans-serif);
}

section.evia-whats-hot-packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.02) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.015) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

section.evia-whats-hot-packages-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header Styling */
section.evia-whats-hot-packages-section .packages-header {
    text-align: center;
    margin-bottom: 80px;
}

section.evia-whats-hot-packages-section .packages-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-full, 9999px);
    padding: 16px 32px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(255, 140, 0, 0.1);
}

section.evia-whats-hot-packages-section .badge-shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

section.evia-whats-hot-packages-section .badge-icon-container {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.evia-whats-hot-packages-section .badge-icon-container i {
    font-size: 18px;
    color: var(--hermes-orange, #FF8C00);
    z-index: 2;
    position: relative;
}

section.evia-whats-hot-packages-section .badge-pulse-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

section.evia-whats-hot-packages-section .badge-text {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
    position: relative;
    z-index: 2;
}

section.evia-whats-hot-packages-section .badge-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

section.evia-whats-hot-packages-section .sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--hermes-orange, #FF8C00);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 2s infinite;
}

section.evia-whats-hot-packages-section .sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

section.evia-whats-hot-packages-section .sparkle-2 {
    top: 70%;
    right: 20%;
    animation-delay: 0.7s;
}

section.evia-whats-hot-packages-section .sparkle-3 {
    bottom: 25%;
    left: 80%;
    animation-delay: 1.4s;
}

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

section.evia-whats-hot-packages-section .packages-title {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    margin-bottom: 24px;
    line-height: 1.1;
}

section.evia-whats-hot-packages-section .title-main {
    display: block;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
    margin-bottom: 8px;
}

section.evia-whats-hot-packages-section .title-accent {
    display: block;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 400;
    background: var(--gradient-hermes-orange, linear-gradient(135deg, #FF8C00 0%, #FFA500 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section.evia-whats-hot-packages-section .packages-subtitle {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 1.125rem;
    color: var(--text-secondary, #5D4E37);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Packages Grid */
section.evia-whats-hot-packages-section .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

/* Package Tiles */
section.evia-whats-hot-packages-section .package-tile {
    background: var(--white, #FFFFFF);
    border-radius: var(--radius-2xl, 2rem);
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(255, 140, 0, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.1);
}

section.evia-whats-hot-packages-section .package-tile:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 12px 40px rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.3);
}

/* Featured Package */
section.evia-whats-hot-packages-section .package-tile.featured {
    border: 2px solid var(--hermes-orange, #FF8C00);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 8px 24px rgba(255, 140, 0, 0.15);
    transform: scale(1.05);
}

section.evia-whats-hot-packages-section .package-tile.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

section.evia-whats-hot-packages-section .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--hermes-orange, #FF8C00) 0%, var(--hermes-orange-light, #FFA500) 100%);
    color: var(--white, #FFFFFF);
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 24px;
    border-radius: var(--radius-full, 9999px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
    z-index: 5;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(255, 140, 0, 0.6); }
}

/* Package Header */
section.evia-whats-hot-packages-section .package-header {
    position: relative;
    height: 240px;
    overflow: hidden;
}

section.evia-whats-hot-packages-section .package-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

section.evia-whats-hot-packages-section .package-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

section.evia-whats-hot-packages-section .package-tile:hover .package-bg-image {
    transform: scale(1.1);
}

section.evia-whats-hot-packages-section .package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(255, 140, 0, 0.2) 100%
    );
}

section.evia-whats-hot-packages-section .package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--hermes-orange, #FF8C00) 0%, var(--hermes-orange-light, #FFA500) 100%);
    color: var(--white, #FFFFFF);
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: var(--radius-full, 9999px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
    z-index: 3;
}

section.evia-whats-hot-packages-section .package-icon-container {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--white, #FFFFFF);
    border: 3px solid rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

section.evia-whats-hot-packages-section .package-tile:hover .package-icon-container {
    background: var(--hermes-orange, #FF8C00);
    border-color: var(--hermes-orange, #FF8C00);
    transform: translateX(-50%) scale(1.1);
}

section.evia-whats-hot-packages-section .package-icon-container i {
    font-size: 24px;
    color: var(--hermes-orange, #FF8C00);
    transition: color 0.4s ease;
}

section.evia-whats-hot-packages-section .package-tile:hover .package-icon-container i {
    color: var(--white, #FFFFFF);
}

section.evia-whats-hot-packages-section .icon-glow {
    position: absolute;
    inset: -6px;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.3) 0%, 
        transparent 70%
    );
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

section.evia-whats-hot-packages-section .package-tile:hover .icon-glow {
    opacity: 1;
}

/* Package Content */
section.evia-whats-hot-packages-section .package-content {
    padding: 40px 32px 32px;
}

section.evia-whats-hot-packages-section .package-title {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: center;
}

section.evia-whats-hot-packages-section .package-description {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 1rem;
    color: var(--text-secondary, #5D4E37);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 24px;
}

/* Package Details */
section.evia-whats-hot-packages-section .package-details {
    margin-bottom: 24px;
}

section.evia-whats-hot-packages-section .package-includes h4 {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

section.evia-whats-hot-packages-section .package-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

section.evia-whats-hot-packages-section .package-includes li {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 0.85rem;
    color: var(--text-secondary, #5D4E37);
    line-height: 1.5;
    padding: 6px 0;
    position: relative;
    padding-left: 24px;
}

section.evia-whats-hot-packages-section .package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--hermes-orange, #FF8C00);
    color: var(--white, #FFFFFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

/* Package Pricing */
section.evia-whats-hot-packages-section .package-pricing {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 140, 0, 0.03);
    border-radius: var(--radius-xl, 1.5rem);
    border: 1px solid rgba(255, 140, 0, 0.1);
}

section.evia-whats-hot-packages-section .price-breakdown {
    margin-bottom: 16px;
}

section.evia-whats-hot-packages-section .original-price {
    display: block;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 1rem;
    color: var(--text-secondary, #5D4E37);
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 8px;
}

section.evia-whats-hot-packages-section .sale-price {
    display: block;
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hermes-orange, #FF8C00);
    line-height: 1;
    margin-bottom: 8px;
}

section.evia-whats-hot-packages-section .savings-badge {
    display: inline-block;
    background: var(--hermes-orange, #FF8C00);
    color: var(--white, #FFFFFF);
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: var(--radius-full, 9999px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

section.evia-whats-hot-packages-section .package-bonus {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 0.8rem;
    color: var(--hermes-orange, #FF8C00);
    font-weight: 600;
    background: rgba(255, 140, 0, 0.1);
    padding: 8px 12px;
    border-radius: var(--radius-lg, 1rem);
    text-align: center;
    margin: 8px 0;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

section.evia-whats-hot-packages-section .package-limit {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 0.75rem;
    color: var(--text-secondary, #5D4E37);
    font-weight: 500;
    text-align: center;
    margin-top: 8px;
    opacity: 0.8;
    font-style: italic;
}

/* Package Actions */
section.evia-whats-hot-packages-section .package-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

section.evia-whats-hot-packages-section .learn-more-btn {
    flex: 1;
    background: rgba(255, 140, 0, 0.1);
    color: var(--hermes-orange, #FF8C00);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-full, 9999px);
    padding: 14px 24px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

section.evia-whats-hot-packages-section .learn-more-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--hermes-orange, #FF8C00) 0%, 
        var(--hermes-orange-light, #FFA500) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

section.evia-whats-hot-packages-section .learn-more-btn:hover::before {
    opacity: 1;
}

section.evia-whats-hot-packages-section .learn-more-btn:hover {
    color: var(--white, #FFFFFF);
    border-color: var(--hermes-orange, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
}

section.evia-whats-hot-packages-section .learn-more-btn span,
section.evia-whats-hot-packages-section .learn-more-btn i {
    position: relative;
    z-index: 2;
}

section.evia-whats-hot-packages-section .book-now-btn {
    flex: 2;
    background: linear-gradient(135deg, 
        var(--hermes-orange, #FF8C00) 0%, 
        var(--hermes-orange-light, #FFA500) 100%
    );
    color: var(--white, #FFFFFF);
    border: none;
    border-radius: var(--radius-full, 9999px);
    padding: 16px 32px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 32px rgba(255, 140, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

section.evia-whats-hot-packages-section .book-now-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--hermes-orange-light, #FFA500) 0%, 
        var(--hermes-orange-dark, #FF7A00) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

section.evia-whats-hot-packages-section .book-now-btn:hover::before {
    opacity: 1;
}

section.evia-whats-hot-packages-section .book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(255, 140, 0, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.15);
}

section.evia-whats-hot-packages-section .book-now-btn span,
section.evia-whats-hot-packages-section .book-now-btn i {
    position: relative;
    z-index: 2;
}

section.evia-whats-hot-packages-section .book-now-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

section.evia-whats-hot-packages-section .book-now-btn:hover i {
    transform: translateX(4px);
}

/* CTA Section */
section.evia-whats-hot-packages-section .packages-cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%, 
        rgba(255, 140, 0, 0.03) 100%
    );
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl, 2rem);
    border: 1px solid rgba(255, 140, 0, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

section.evia-whats-hot-packages-section .cta-title {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
    margin-bottom: 16px;
}

section.evia-whats-hot-packages-section .cta-text {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 1.125rem;
    color: var(--text-secondary, #5D4E37);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

section.evia-whats-hot-packages-section .cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

section.evia-whats-hot-packages-section .primary-cta-btn {
    background: linear-gradient(135deg, 
        var(--hermes-orange, #FF8C00) 0%, 
        var(--hermes-orange-light, #FFA500) 100%
    );
    color: var(--white, #FFFFFF);
    border: none;
    border-radius: var(--radius-full, 9999px);
    padding: 20px 40px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 32px rgba(255, 140, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

section.evia-whats-hot-packages-section .primary-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--hermes-orange-light, #FFA500) 0%, 
        var(--hermes-orange-dark, #FF7A00) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

section.evia-whats-hot-packages-section .primary-cta-btn:hover::before {
    opacity: 1;
}

section.evia-whats-hot-packages-section .primary-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(255, 140, 0, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.15);
}

section.evia-whats-hot-packages-section .primary-cta-btn span,
section.evia-whats-hot-packages-section .primary-cta-btn i {
    position: relative;
    z-index: 2;
}

section.evia-whats-hot-packages-section .secondary-cta-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--hermes-orange, #FF8C00);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-full, 9999px);
    padding: 18px 32px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

section.evia-whats-hot-packages-section .secondary-cta-btn:hover {
    background: var(--hermes-orange, #FF8C00);
    color: var(--white, #FFFFFF);
    border-color: var(--hermes-orange, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
}

/* ========================================
   MODAL STYLES
   ======================================== */

.evia-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px;
}

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

.evia-modal-overlay .evia-enhanced-modal {
    background: var(--white, #FFFFFF);
    border-radius: var(--radius-2xl, 2rem);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 12px 40px rgba(255, 140, 0, 0.1);
    border: 2px solid rgba(255, 140, 0, 0.1);
    transform: scale(0.8) translateY(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.evia-modal-overlay.active .evia-enhanced-modal {
    transform: scale(1) translateY(0);
}

.evia-modal-overlay .evia-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--text-primary, #2A1B0A);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.evia-modal-overlay .evia-modal-close:hover {
    background: var(--hermes-orange, #FF8C00);
    color: var(--white, #FFFFFF);
    transform: scale(1.1) rotate(90deg);
    border-color: var(--hermes-orange, #FF8C00);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.3);
}

.evia-modal-overlay .evia-modal-close i {
    font-size: 22px;
}

/* Modal Header */
.evia-modal-overlay .evia-enhanced-modal-header {
    position: relative;
    padding-bottom: 0;
}

.evia-modal-overlay .modal-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-2xl, 2rem) var(--radius-2xl, 2rem) 0 0;
}

.evia-modal-overlay .modal-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.evia-modal-overlay .modal-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(255, 140, 0, 0.3) 100%
    );
}

.evia-modal-overlay .modal-header-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--white, #FFFFFF);
}

.evia-modal-overlay .evia-enhanced-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.evia-modal-overlay .evia-enhanced-modal-icon i {
    font-size: 24px;
    color: var(--white, #FFFFFF);
}

.evia-modal-overlay .evia-enhanced-modal-title {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.evia-modal-overlay .modal-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.evia-modal-overlay .stars {
    display: flex;
    gap: 4px;
}

.evia-modal-overlay .stars i {
    font-size: 16px;
    color: #FFD700;
}

.evia-modal-overlay .rating-text {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* Modal Body */
.evia-modal-overlay .evia-enhanced-modal-body {
    padding: 0;
}

.evia-modal-overlay .package-details-section {
    padding: 40px;
}

.evia-modal-overlay .modal-description h4 {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
    margin-bottom: 16px;
}

.evia-modal-overlay .modal-description p {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 1rem;
    color: var(--text-secondary, #5D4E37);
    line-height: 1.6;
    margin-bottom: 32px;
}

.evia-modal-overlay .benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.evia-modal-overlay .benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 14px;
    color: var(--text-secondary, #5D4E37);
}

.evia-modal-overlay .benefit-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--hermes-orange, #FF8C00);
    color: var(--white, #FFFFFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.evia-modal-overlay .modal-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.evia-modal-overlay .detail-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: var(--radius-xl, 1.5rem);
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.evia-modal-overlay .detail-label {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 600;
    color: var(--hermes-orange, #FF8C00);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.evia-modal-overlay .detail-value {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
}

/* Other Packages Section */
.evia-modal-overlay .other-packages-section {
    padding: 40px;
    background: rgba(255, 140, 0, 0.02);
    border-top: 1px solid rgba(255, 140, 0, 0.1);
}

.evia-modal-overlay .section-title {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.evia-modal-overlay .section-title i {
    color: var(--hermes-orange, #FF8C00);
    font-size: 20px;
}

.evia-modal-overlay .other-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.evia-modal-overlay .other-package-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--white, #FFFFFF);
    border-radius: var(--radius-lg, 1rem);
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

.evia-modal-overlay .other-package-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.2);
}

.evia-modal-overlay .other-package-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.evia-modal-overlay .other-package-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.evia-modal-overlay .other-package-icon i {
    font-size: 18px;
    color: var(--hermes-orange, #FF8C00);
}

.evia-modal-overlay .other-package-info h5 {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
    margin: 0 0 4px 0;
}

.evia-modal-overlay .package-desc {
    font-size: 12px;
    color: var(--text-secondary, #5D4E37);
    margin: 0;
    opacity: 0.8;
}

.evia-modal-overlay .other-package-price {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--hermes-orange, #FF8C00);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.evia-modal-overlay .original-price {
    font-size: 12px;
    color: var(--text-secondary, #5D4E37);
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 400;
}

/* Package Savings Highlight */
.evia-modal-overlay .package-savings-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--hermes-orange, #FF8C00) 0%, var(--hermes-orange-light, #FFA500) 100%);
    border-radius: var(--radius-xl, 1.5rem);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.evia-modal-overlay .savings-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white, #FFFFFF);
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 700;
}

.evia-modal-overlay .savings-badge i {
    font-size: 18px;
}

.evia-modal-overlay .package-value-highlight {
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.evia-modal-overlay .package-value-highlight .detail-value {
    color: var(--hermes-orange, #FF8C00);
    font-weight: 700;
}

/* Consultation Section */
.evia-modal-overlay .consultation-section {
    padding: 40px;
    background: rgba(255, 140, 0, 0.03);
    border-top: 1px solid rgba(255, 140, 0, 0.1);
}

.evia-modal-overlay .consultation-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.evia-modal-overlay .consultation-info h4 {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
    margin-bottom: 8px;
}

.evia-modal-overlay .consultation-info p {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 14px;
    color: var(--text-secondary, #5D4E37);
    line-height: 1.5;
    margin: 0;
}

.evia-modal-overlay .consultation-btn {
    background: rgba(255, 140, 0, 0.1);
    color: var(--hermes-orange, #FF8C00);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-full, 9999px);
    padding: 16px 24px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.evia-modal-overlay .consultation-btn:hover {
    background: var(--hermes-orange, #FF8C00);
    color: var(--white, #FFFFFF);
    border-color: var(--hermes-orange, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.4);
}

.evia-modal-overlay .consultation-btn i {
    font-size: 18px;
}

/* Modal Footer */
.evia-modal-overlay .evia-enhanced-modal-footer {
    padding: 40px;
    background: rgba(255, 140, 0, 0.02);
    border-top: 1px solid rgba(255, 140, 0, 0.1);
}

.evia-modal-overlay .footer-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.evia-modal-overlay .book-this-package-btn {
    flex: 1;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FF7A00 100%);
    color: var(--white, #FFFFFF);
    border: none;
    border-radius: var(--radius-full, 9999px);
    padding: 20px 36px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.evia-modal-overlay .book-this-package-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--hermes-orange-light, #FFA500) 0%, var(--hermes-orange, #FF8C00) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.evia-modal-overlay .book-this-package-btn:hover::before {
    opacity: 1;
}

.evia-modal-overlay .book-this-package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.evia-modal-overlay .book-this-package-btn span,
.evia-modal-overlay .book-this-package-btn i {
    position: relative;
    z-index: 2;
}

.evia-modal-overlay .book-this-package-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.evia-modal-overlay .book-this-package-btn:hover i {
    transform: translateX(4px);
}

.evia-modal-overlay .call-now-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--hermes-orange, #FF8C00);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-full, 9999px);
    padding: 18px 24px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    white-space: nowrap;
}

.evia-modal-overlay .call-now-btn:hover {
    background: var(--hermes-orange, #FF8C00);
    color: var(--white, #FFFFFF);
    border-color: var(--hermes-orange, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
}

.evia-modal-overlay .call-now-btn i {
    font-size: 18px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (min-width: 1400px) {
    section.evia-whats-hot-packages-section .packages-grid {
        max-width: 1300px;
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    section.evia-whats-hot-packages-section .packages-grid {
        gap: 24px;
        max-width: 1100px;
    }
}

@media (max-width: 1024px) {
    section.evia-whats-hot-packages-section .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        max-width: 800px;
    }

    section.evia-whats-hot-packages-section .title-main,
    section.evia-whats-hot-packages-section .title-accent {
        font-size: clamp(2.4rem, 5vw, 3.6rem);
    }

    section.evia-whats-hot-packages-section .package-tile.featured {
        transform: none;
    }

    section.evia-whats-hot-packages-section .package-tile.featured:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    section.evia-whats-hot-packages-section {
        padding: 80px 0 100px;
    }

    section.evia-whats-hot-packages-section .packages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    section.evia-whats-hot-packages-section .package-tile.featured {
        transform: none;
    }

    section.evia-whats-hot-packages-section .package-tile.featured:hover {
        transform: translateY(-12px);
    }

    section.evia-whats-hot-packages-section .title-main,
    section.evia-whats-hot-packages-section .title-accent {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    section.evia-whats-hot-packages-section .package-actions {
        flex-direction: column;
        gap: 12px;
    }

    section.evia-whats-hot-packages-section .learn-more-btn,
    section.evia-whats-hot-packages-section .book-now-btn {
        flex: 1;
        width: 100%;
    }

    section.evia-whats-hot-packages-section .cta-actions {
        flex-direction: column;
        gap: 16px;
    }

    section.evia-whats-hot-packages-section .primary-cta-btn,
    section.evia-whats-hot-packages-section .secondary-cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Modal responsive adjustments */
    .evia-modal-overlay .evia-enhanced-modal {
        max-width: 95%;
        margin: 10px;
    }

    .evia-modal-overlay .modal-image-container {
        height: 240px;
    }

    .evia-modal-overlay .package-details-section,
    .evia-modal-overlay .other-packages-section,
    .evia-modal-overlay .consultation-section,
    .evia-modal-overlay .evia-enhanced-modal-footer {
        padding: 32px 24px;
    }

    .evia-modal-overlay .modal-header-content {
        padding: 32px 24px;
    }

    .evia-modal-overlay .evia-enhanced-modal-title {
        font-size: 2rem;
    }

    .evia-modal-overlay .consultation-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .evia-modal-overlay .footer-actions {
        flex-direction: column;
        gap: 16px;
    }

    .evia-modal-overlay .call-now-btn {
        width: 100%;
        justify-content: center;
    }

    .evia-modal-overlay .other-packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section.evia-whats-hot-packages-section .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    section.evia-whats-hot-packages-section .package-header {
        height: 200px;
    }

    section.evia-whats-hot-packages-section .package-content {
        padding: 32px 24px 24px;
    }

    section.evia-whats-hot-packages-section .packages-cta-section {
        padding: 40px 20px;
    }

    .evia-modal-overlay .evia-enhanced-modal {
        max-width: calc(100% - 20px);
    }

    .evia-modal-overlay .modal-image-container {
        height: 200px;
    }

    .evia-modal-overlay .package-details-section,
    .evia-modal-overlay .other-packages-section,
    .evia-modal-overlay .consultation-section,
    .evia-modal-overlay .evia-enhanced-modal-footer {
        padding: 24px 20px;
    }

    .evia-modal-overlay .evia-enhanced-modal-title {
        font-size: 1.8rem;
    }

    .evia-modal-overlay .modal-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================
   SERVICES SECTION - COMPLETE
   ======================================== */

.hermes-services-section {
  padding: 140px 0;
  background: linear-gradient(135deg, #fefefe 0%, #f9f7f4 50%, #fefefe 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hermes-services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hermes-services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.hermes-services-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(40px);
  animation: hermesSlideUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

.hermes-services-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 50px;
  padding: 12px 28px;
  margin-bottom: 32px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #8B4513;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hermes-badge-icon {
  font-size: 1.2rem;
  color: #FF8C00;
  font-weight: bold;
}

.hermes-services-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 200;
  color: #2c1810;
  margin: 0 0 24px 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hermes-services-subtitle {
  font-size: 1.25rem;
  color: #8B4513;
  font-weight: 300;
  letter-spacing: 0.3px;
  margin: 0;
  opacity: 0.9;
}

/* Carousel Wrapper with Side Arrows */
.hermes-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Scroll Arrows */
.hermes-scroll-arrow {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 140, 0, 0.2);
  background: rgba(255, 255, 255, 0.95);
  color: #FF8C00;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 10;
}

.hermes-scroll-arrow:hover {
  background: #FF8C00;
  color: white;
  transform: scale(1.1);
  border-color: transparent;
  box-shadow: 
    0 12px 40px rgba(255, 140, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.1);
}

.hermes-scroll-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.hermes-scroll-arrow:disabled:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #FF8C00;
  transform: none;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Scroll Container */
.hermes-services-scroll-container {
  flex: 1;
  overflow: hidden;
  border-radius: 24px;
}

.hermes-services-grid {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* Service Card Styles */
.hermes-service-card {
  flex: 0 0 340px;
  opacity: 1;
  transform: none;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hermes-service-card:hover {
  transform: translateY(-12px) scale(1.03);
}

.hermes-card-inner {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hermes-service-card:hover .hermes-card-inner {
  box-shadow: 
    0 24px 64px rgba(0, 0, 0, 0.12),
    0 8px 32px rgba(255, 140, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Service Image */
.hermes-service-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.hermes-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.hermes-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(255, 140, 0, 0.1) 0%, 
    rgba(139, 69, 19, 0.2) 50%, 
    rgba(0, 0, 0, 0.3) 100%
  );
  opacity: 0.8;
  transition: opacity 0.6s ease;
}

.hermes-service-card:hover .hermes-image-overlay {
  opacity: 0.6;
}

.hermes-service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #FF8C00;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 140, 0, 0.2);
  transition: all 0.4s ease;
}

.hermes-service-card:hover .hermes-service-number {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

/* Service Content */
.hermes-service-content {
  flex: 1;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
}

.hermes-service-name {
  font-size: 1.4rem;
  font-weight: 400;
  color: #2c1810;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hermes-service-desc {
  font-size: 0.95rem;
  color: #8B4513;
  line-height: 1.6;
  margin: 0 0 24px 0;
  opacity: 0.9;
  flex: 1;
}

.hermes-price-container {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hermes-price-label {
  font-size: 0.75rem;
  color: #A0522D;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hermes-price-value {
  font-size: 1.3rem;
  font-weight: 300;
  color: #FF8C00;
  letter-spacing: -0.02em;
}

.hermes-price-value small {
  font-size: 0.875rem;
  color: #A0522D;
  opacity: 0.8;
}

/* Learn More Button */
.hermes-learn-btn {
  background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.hermes-learn-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hermes-learn-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 24px rgba(255, 140, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.hermes-learn-btn:hover::before {
  left: 100%;
}

.hermes-btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hermes-learn-btn:hover .hermes-btn-arrow {
  transform: translateX(4px);
}

/* Animations */
@keyframes hermesSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hermes-carousel-wrapper {
    gap: 24px;
  }
  
  .hermes-scroll-arrow {
    width: 56px;
    height: 56px;
  }
  
  .hermes-service-card {
    flex: 0 0 320px;
  }
}

@media (max-width: 768px) {
  .hermes-services-container {
    padding: 0 20px;
  }
  
  .hermes-services-section {
    padding: 80px 0;
  }
  
  .hermes-services-header {
    margin-bottom: 60px;
  }
  
  .hermes-carousel-wrapper {
    gap: 16px;
  }
  
  .hermes-scroll-arrow {
    width: 48px;
    height: 48px;
  }
  
  .hermes-service-card {
    flex: 0 0 280px;
  }
  
  .hermes-service-image {
    height: 200px;
  }
  
  .hermes-service-content {
    padding: 24px 20px 28px;
  }
  
  .hermes-services-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hermes-service-card {
    flex: 0 0 260px;
  }
  
  .hermes-service-image {
    height: 180px;
  }
  
  .hermes-services-title {
    font-size: 2.2rem;
  }
}

/* ========================================
   EVIA ELEVATED ABOUT SECTION - CUSTOM CSS
   ======================================== */

.evia-elevated-about {
    position: relative;
    padding: clamp(100px, 15vh, 160px) 0;
    background: linear-gradient(135deg, 
        #FFFEF9 0%, 
        #FFFCF8 50%, 
        rgba(255, 252, 248, 0.9) 100%
    );
    overflow: hidden;
    isolation: isolate;
}

.evia-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
    z-index: 10;
}

.evia-about-header {
    text-align: center;
    margin-bottom: clamp(80px, 12vh, 120px);
}

.evia-about-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 50px;
    padding: 16px 32px;
    margin-bottom: 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FF8C00;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(255, 140, 0, 0.08);
}

.evia-about-badge:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 140, 0, 0.35);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.08),
        0 6px 20px rgba(255, 140, 0, 0.12);
}

.evia-badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 140, 0, 0.1), 
        transparent
    );
    animation: eviaBadgeShimmer 4s ease-in-out infinite;
}

.evia-about-badge i {
    font-size: 18px;
    color: #FF8C00;
}

.evia-about-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.evia-title-main {
    display: block;
    color: #2A1B0A;
    margin-bottom: 8px;
}

.evia-title-accent {
    display: block;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FF7A00 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: eviaTitleGradient 6s ease-in-out infinite;
    font-style: italic;
}

.evia-about-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(16px, 2.8vw, 20px);
    color: #5D4E37;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.evia-doctor-showcase {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: clamp(60px, 10vw, 100px);
    align-items: start;
    margin-bottom: clamp(80px, 12vh, 120px);
}

.evia-doctor-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 32px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.06),
        0 4px 20px rgba(255, 140, 0, 0.04);
    text-align: center;
    overflow: hidden;
}

.evia-doctor-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 140, 0, 0.25);
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(255, 140, 0, 0.08);
}

.evia-card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 140, 0, 0.1) 100%
    );
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: -1;
}

.evia-doctor-card:hover .evia-card-glow {
    opacity: 1;
}

.evia-doctor-image-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.evia-image-frame {
    position: relative;
    width: 220px;
    height: 260px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(255, 140, 0, 0.08);
}

.evia-doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.evia-doctor-card:hover .evia-doctor-image {
    transform: scale(1.08);
}

.evia-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(255, 140, 0, 0.08) 100%
    );
    opacity: 0;
    transition: opacity 0.8s ease;
}

.evia-doctor-card:hover .evia-image-overlay {
    opacity: 1;
}

.evia-cert-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
    animation: eviaCertFloat 6s ease-in-out infinite;
}

.evia-doctor-info {
    text-align: center;
}

.evia-doctor-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #2A1B0A;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.evia-doctor-credentials {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #FF8C00;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evia-expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.evia-expertise-tag {
    background: rgba(255, 140, 0, 0.08);
    color: #FF8C00;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 140, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.evia-expertise-tag:hover {
    background: rgba(255, 140, 0, 0.15);
    transform: translateY(-2px);
}

.evia-doctor-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.evia-experience-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.6s ease;
}

.evia-experience-highlight:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.2);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.08);
}

.evia-experience-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.evia-experience-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.25);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.evia-experience-item:hover .evia-experience-icon {
    transform: rotate(360deg) scale(1.1);
}

.evia-experience-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.evia-experience-number {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2A1B0A;
    line-height: 1;
    transition: all 0.3s ease;
}

.evia-experience-item:hover .evia-experience-number {
    color: #FF8C00;
    transform: scale(1.1);
}

.evia-experience-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #5D4E37;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.evia-experience-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(255, 140, 0, 0.3), 
        transparent
    );
}

.evia-philosophy-preview {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.6s ease;
}

.evia-philosophy-preview:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.2);
}

.evia-philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2A1B0A;
    margin-bottom: 16px;
}

.evia-philosophy-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #5D4E37;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.evia-philosophy-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 32px;
    color: #FF8C00;
    font-family: 'Playfair Display', serif;
}

.evia-specializations {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.6s ease;
}

.evia-specializations:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.2);
}

.evia-specializations-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2A1B0A;
    margin-bottom: 20px;
}

.evia-specialization-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.evia-specialization-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #5D4E37;
    font-weight: 500;
    transition: all 0.3s ease;
}

.evia-specialization-item:hover {
    color: #FF8C00;
    transform: translateX(5px);
}

.evia-specialization-item i {
    width: 32px;
    height: 32px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C00;
    font-size: 16px;
    transition: all 0.3s ease;
}

.evia-specialization-item:hover i {
    background: rgba(255, 140, 0, 0.2);
    transform: scale(1.1);
}

.evia-trust-indicators {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 140, 0, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    padding: 20px;
}

.evia-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
    transition: all 0.3s ease;
}

.evia-trust-item:hover {
    transform: translateY(-2px);
}

.evia-trust-item i {
    font-size: 20px;
    color: #FF8C00;
}

.evia-trust-item span {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #5D4E37;
}

.evia-about-cta {
    display: flex;
    justify-content: center;
}

.evia-cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 252, 248, 0.95) 50%, 
        rgba(255, 248, 240, 0.95) 100%
    );
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: clamp(50px, 8vw, 70px) clamp(40px, 6vw, 60px);
    max-width: 800px;
    width: 100%;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(255, 140, 0, 0.04);
    overflow: hidden;
    text-align: center;
}

.evia-cta-wrapper:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 140, 0, 0.25);
    box-shadow: 
        0 30px 120px rgba(0, 0, 0, 0.12),
        0 12px 48px rgba(255, 140, 0, 0.08);
}

.evia-cta-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 140, 0, 0.1) 100%
    );
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: -1;
}

.evia-cta-wrapper:hover .evia-cta-glow {
    opacity: 1;
}

.evia-cta-header {
    margin-bottom: 40px;
}

.evia-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.25);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.evia-cta-wrapper:hover .evia-cta-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 16px 50px rgba(255, 140, 0, 0.35);
}

.evia-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 600;
    color: #2A1B0A;
    margin-bottom: 16px;
    line-height: 1.2;
}

.evia-cta-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(16px, 2.5vw, 18px);
    color: #5D4E37;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.evia-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.evia-primary-cta {
    position: relative;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FF7A00 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
    animation: eviaGradientShift 8s ease-in-out infinite;
    min-width: 220px;
}

.evia-primary-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 140, 0, 0.4);
}

.evia-btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.evia-btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transition: left 0.8s ease;
}

.evia-primary-cta:hover .evia-btn-shimmer {
    left: 100%;
}

.evia-secondary-cta {
    background: transparent;
    color: #FF8C00;
    border: 2px solid #FF8C00;
    padding: 16px 34px;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    min-width: 220px;
}

.evia-secondary-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.evia-secondary-cta:hover {
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

.evia-secondary-cta:hover::before {
    opacity: 1;
}

.evia-secondary-cta .evia-btn-content {
    position: relative;
    z-index: 1;
}

.evia-about-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.evia-bg-orb {
    position: absolute;
    border-radius: 50%;
    background: #FF8C00;
    opacity: 0.03;
    filter: blur(80px);
    animation: eviaOrbFloat 25s ease-in-out infinite;
}

.evia-orb-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
}

.evia-orb-2 {
    width: 250px;
    height: 250px;
    bottom: -125px;
    right: -75px;
    animation-delay: -10s;
}

.evia-orb-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation-delay: -20s;
}

.evia-bg-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 30%, rgba(255, 140, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
}

@keyframes eviaBadgeShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes eviaTitleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes eviaCertFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

@keyframes eviaGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes eviaOrbFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 0.03; 
    }
    25% { 
        transform: translate(20px, -15px) rotate(90deg); 
        opacity: 0.05; 
    }
    50% { 
        transform: translate(-15px, -20px) rotate(180deg); 
        opacity: 0.04; 
    }
    75% { 
        transform: translate(15px, 15px) rotate(270deg); 
        opacity: 0.06; 
    }
}

@media (max-width: 992px) {
    .evia-doctor-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .evia-doctor-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .evia-experience-highlight {
        flex-direction: column;
        gap: 24px;
    }
    
    .evia-experience-divider {
        width: 60%;
        height: 2px;
        background: linear-gradient(to right, 
            transparent, 
            rgba(255, 140, 0, 0.3), 
            transparent
        );
    }
}

@media (max-width: 768px) {
    .evia-elevated-about {
        padding: clamp(60px, 10vh, 80px) 0;
    }
    
    .evia-about-header {
        margin-bottom: clamp(60px, 8vh, 80px);
    }
    
    .evia-doctor-showcase {
        margin-bottom: clamp(60px, 8vh, 80px);
    }
    
    .evia-trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .evia-trust-item {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .evia-cta-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .evia-primary-cta,
    .evia-secondary-cta {
        width: 100%;
    }
    
    .evia-cta-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .evia-doctor-card {
        padding: 24px;
    }
    
    .evia-image-frame {
        width: 180px;
        height: 220px;
    }
    
    .evia-expertise-tags {
        gap: 6px;
    }
    
    .evia-expertise-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .evia-specialization-list {
        gap: 10px;
    }
    
    .evia-cta-wrapper {
        padding: 40px 24px;
    }
    
    .evia-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

.evia-primary-cta:focus,
.evia-secondary-cta:focus,
.evia-expertise-tag:focus {
    outline: 3px solid rgba(255, 140, 0, 0.6);
    outline-offset: 2px;
}

.evia-doctor-card,
.evia-primary-cta,
.evia-secondary-cta {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .evia-doctor-card,
    .evia-primary-cta,
    .evia-secondary-cta,
    .evia-experience-icon,
    .evia-cta-icon {
        transition-duration: 0.2s;
        animation-duration: 0.2s;
    }
    
    .evia-bg-orb,
    .evia-cert-badge {
        animation: none;
    }
}

/* ========================================
   RESULTS SECTION
   ======================================== */

.hermes-results-showcase-section {
    position: relative;
    padding: clamp(80px, 12vh, 120px) 0;
    background: linear-gradient(135deg, #FFFEF9 0%, #FFFCF8 50%, #FFF8F0 100%);
    overflow: hidden;
}

.results-showcase-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.results-showcase-header {
    text-align: center;
    margin-bottom: clamp(60px, 8vh, 80px);
}

.results-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 60px;
    padding: 16px 32px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-luxury);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.06),
        0 8px 25px rgba(255, 140, 0, 0.05);
}

.showcase-badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 140, 0, 0.1) 50%, 
        transparent 100%);
    animation: showcaseShimmer 3s ease-in-out infinite;
}

@keyframes showcaseShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.results-showcase-badge i {
    color: var(--hermes-orange);
    font-size: 18px;
}

.results-showcase-badge span {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-showcase-title {
    font-family: var(--font-playfair);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.showcase-title-main {
    display: block;
    color: var(--text-primary);
}

.showcase-title-accent {
    display: block;
    background: var(--gradient-hermes-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.results-showcase-subtitle {
    font-family: var(--font-inter);
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.results-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(24px, 4vw, 32px);
    margin-bottom: clamp(60px, 8vh, 80px);
}

.showcase-result-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s var(--ease-luxury);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.06),
        0 8px 25px rgba(255, 140, 0, 0.04);
}

.showcase-result-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.12),
        0 20px 60px rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.2);
}

.showcase-comparison-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.showcase-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.showcase-before-image,
.showcase-after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.showcase-before-image {
    z-index: 2;
}

.showcase-after-image {
    z-index: 1;
}

.showcase-before-image img,
.showcase-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-luxury);
}

.showcase-result-card:hover .showcase-before-image img,
.showcase-result-card:hover .showcase-after-image img {
    transform: scale(1.05);
}

.showcase-image-label {
    position: absolute;
    top: 16px;
    padding: 8px 16px;
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    z-index: 10;
}

.showcase-before-label {
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.showcase-after-label {
    right: 16px;
    background: rgba(255, 140, 0, 0.9);
    color: white;
}

.showcase-comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    z-index: 20;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.showcase-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid var(--hermes-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(255, 140, 0, 0.2);
}

.showcase-slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(255, 140, 0, 0.3);
}

.showcase-handle-icon i {
    color: var(--hermes-orange);
    font-size: 18px;
    font-weight: 600;
}

.showcase-slider-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255, 140, 0, 0.8);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.showcase-result-details {
    padding: 32px 24px;
}

.showcase-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.showcase-result-name {
    font-family: var(--font-playfair);
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 600;
    color: var(--text-primary);
}

.showcase-treatment-badge {
    background: rgba(255, 140, 0, 0.1);
    color: var(--hermes-orange);
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.showcase-result-description {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.showcase-result-specs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.showcase-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--text-muted);
}

.showcase-spec-item i {
    color: var(--hermes-orange);
    font-size: 16px;
}

.showcase-portfolio-cta {
    margin-bottom: clamp(40px, 6vh, 60px);
}

.showcase-portfolio-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 140, 0, 0.15);
    border-radius: 32px;
    padding: clamp(32px, 5vh, 48px);
    text-align: center;
    overflow: hidden;
    transition: all 0.4s var(--ease-luxury);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.08),
        0 12px 40px rgba(255, 140, 0, 0.06);
}

.showcase-portfolio-wrapper:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.25);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.12),
        0 20px 60px rgba(255, 140, 0, 0.1);
}

.showcase-portfolio-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.05) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-portfolio-wrapper:hover .showcase-portfolio-glow {
    opacity: 1;
}

.showcase-portfolio-content {
    position: relative;
    z-index: 2;
}

.showcase-portfolio-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s var(--ease-luxury);
}

.showcase-portfolio-wrapper:hover .showcase-portfolio-icon {
    background: rgba(255, 140, 0, 0.15);
    border-color: var(--hermes-orange);
    transform: scale(1.05);
}

.showcase-portfolio-icon i {
    color: var(--hermes-orange);
    font-size: 24px;
}

.showcase-portfolio-title {
    font-family: var(--font-playfair);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.showcase-portfolio-description {
    font-family: var(--font-inter);
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-portfolio-btn {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-hermes-orange);
    color: white;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-luxury);
    box-shadow: 
        0 15px 35px rgba(255, 140, 0, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.showcase-portfolio-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 50px rgba(255, 140, 0, 0.35),
        0 10px 25px rgba(0, 0, 0, 0.15);
}

.showcase-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.showcase-btn-content i {
    transition: transform 0.3s ease;
}

.showcase-portfolio-btn:hover .showcase-btn-content i {
    transform: translateX(4px);
}

.showcase-btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.showcase-portfolio-btn:hover .showcase-btn-shimmer {
    left: 100%;
}

.showcase-consultation-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 140, 0, 0.15);
    border-radius: 28px;
    padding: clamp(28px, 4vh, 40px);
    text-align: center;
    overflow: hidden;
    transition: all 0.4s var(--ease-luxury);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.06),
        0 10px 30px rgba(255, 140, 0, 0.05);
}

.showcase-consultation-wrapper:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 140, 0, 0.2);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.1),
        0 15px 45px rgba(255, 140, 0, 0.08);
}

.showcase-consultation-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.03) 0%, 
        transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-consultation-wrapper:hover .showcase-consultation-glow {
    opacity: 1;
}

.showcase-consultation-content {
    position: relative;
    z-index: 2;
}

.showcase-consultation-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s var(--ease-luxury);
}

.showcase-consultation-wrapper:hover .showcase-consultation-icon {
    background: rgba(255, 140, 0, 0.15);
    border-color: var(--hermes-orange);
    transform: scale(1.05);
}

.showcase-consultation-icon i {
    color: var(--hermes-orange);
    font-size: 20px;
}

.showcase-consultation-title {
    font-family: var(--font-playfair);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.showcase-consultation-description {
    font-family: var(--font-inter);
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-consultation-btn {
    display: inline-flex;
    align-items: center;
    background: var(--gradient-hermes-orange);
    color: white;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
    box-shadow: 
        0 12px 28px rgba(255, 140, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.showcase-consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 20px 40px rgba(255, 140, 0, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.results-showcase-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.showcase-bg-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--hermes-orange);
    opacity: 0.03;
    filter: blur(80px);
    animation: showcaseOrbFloat 20s ease-in-out infinite;
}

.showcase-orb-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.showcase-orb-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

.showcase-bg-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 140, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.03) 0%, transparent 50%);
}

@keyframes showcaseOrbFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@media (max-width: 768px) {
    .results-showcase-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .showcase-comparison-container {
        height: 280px;
    }
    
    .showcase-result-details {
        padding: 24px 20px;
    }
    
    .showcase-result-specs {
        flex-direction: column;
        gap: 12px;
    }
    
    .showcase-portfolio-wrapper,
    .showcase-consultation-wrapper {
        padding: 28px 20px;
    }
    
    .showcase-slider-handle {
        width: 44px;
        height: 44px;
    }
    
    .showcase-handle-icon i {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .results-showcase-grid {
        grid-template-columns: minmax(280px, 1fr);
    }
    
    .showcase-comparison-container {
        height: 250px;
    }
    
    .showcase-image-label {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .showcase-before-label {
        left: 12px;
        top: 12px;
    }
    
    .showcase-after-label {
        right: 12px;
        top: 12px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .showcase-result-card:hover {
        transform: none;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.06),
            0 8px 25px rgba(255, 140, 0, 0.04);
    }
    
    .showcase-slider-handle {
        width: 52px;
        height: 52px;
    }
    
    .showcase-handle-icon i {
        font-size: 20px;
    }
}

/* ========================================
   ALUMIERMD LUXURY PRODUCTS SECTION
   ======================================== */

.alumier-luxury-showcase {
    position: relative;
    padding: clamp(100px, 15vh, 140px) 0;
    background: linear-gradient(135deg, 
        #FFFEF9 0%, 
        #FFFCF8 50%, 
        #FFF8F0 100%
    );
    overflow: hidden;
}

/* Ambient Background */
.alumier-ambient-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.alumier-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08), transparent 70%);
    filter: blur(60px);
    animation: alumierOrbFloat 25s ease-in-out infinite;
}

.alumier-orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.alumier-orb-2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -80px;
    animation-delay: -12s;
}

.alumier-orb-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 30%;
    animation-delay: -8s;
}

.alumier-mesh-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 800px 400px at 20% 30%, rgba(255, 140, 0, 0.04), transparent),
        radial-gradient(ellipse 600px 300px at 80% 70%, rgba(255, 140, 0, 0.03), transparent);
    opacity: 0.6;
}

/* Container */
.alumier-luxury-showcase .container {
    position: relative;
    z-index: 10;
}

/* Header Section */
.alumier-header {
    text-align: center;
    margin-bottom: clamp(70px, 10vh, 100px);
}

.alumier-prestige-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 252, 248, 0.98) 100%
    );
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 140, 0, 0.25);
    border-radius: 60px;
    padding: 16px 36px;
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.06),
        0 8px 32px rgba(255, 140, 0, 0.08);
}

.alumier-prestige-badge:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.1),
        0 12px 40px rgba(255, 140, 0, 0.12);
}

.badge-shimmer-wave {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 140, 0, 0.15), 
        transparent
    );
    animation: alumierShimmer 4s ease-in-out infinite;
}

.alumier-prestige-badge i {
    font-size: 20px;
    color: #FF8C00;
}

.alumier-prestige-badge span {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FF8C00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

.alumier-title-accent {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FF7A00 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: alumierGradientShift 6s ease-in-out infinite;
    margin-bottom: 8px;
}

.alumier-title-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
    color: #2A1B0A;
    line-height: 1.1;
}

.alumier-subtitle {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: clamp(16px, 2.5vw, 18px);
    color: #5D4E37;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel System */
.alumier-carousel-system {
    position: relative;
    margin-bottom: clamp(60px, 8vh, 80px);
}

/* Navigation Arrows */
.alumier-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(255, 140, 0, 0.06);
    color: #FF8C00;
    font-size: 24px;
}

.alumier-nav-prev {
    left: -32px;
}

.alumier-nav-next {
    right: -32px;
}

.alumier-nav-arrow:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: transparent;
    box-shadow: 
        0 16px 50px rgba(255, 140, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.1);
}

.alumier-nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.alumier-nav-arrow:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #FF8C00;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(255, 140, 0, 0.06);
}

.arrow-ornament {
    position: absolute;
    inset: -4px;
    border: 2px solid #FF8C00;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.alumier-nav-arrow:hover .arrow-ornament {
    opacity: 0.4;
    transform: scale(1.1);
}

/* Carousel Viewport */
.alumier-carousel-viewport {
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    padding: clamp(40px, 5vw, 60px);
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.06),
        0 8px 32px rgba(255, 140, 0, 0.04);
}

.alumier-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: clamp(24px, 3vw, 40px);
}

/* Product Cards */
.alumier-product-card {
    flex: 0 0 calc(33.333% - 27px);
    min-width: 0;
}

.product-card-link {
    display: block;
    background: #FFFFFF;
    border: 2px solid rgba(255, 140, 0, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(255, 140, 0, 0.03);
}

.product-card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-link:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.12),
        0 12px 40px rgba(255, 140, 0, 0.15);
}

.product-card-link:hover::before {
    opacity: 1;
}

/* Product Image */
.product-image-container {
    position: relative;
    height: 240px;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFCF8 100%);
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-link:hover .product-image {
    transform: scale(1.1) rotate(3deg);
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.9) 0%, 
        rgba(255, 165, 0, 0.95) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.overlay-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-link:hover .overlay-icon {
    transform: scale(1);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

/* Product Details */
.product-details {
    padding: 28px 24px 32px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2A1B0A;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-description {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    color: #5D4E37;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price-currency {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FF8C00;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #FF8C00;
    line-height: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-rating i {
    color: #FFD700;
    font-size: 16px;
}

.rating-value {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2A1B0A;
}

.product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.product-card-link:hover .product-cta {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    border-color: transparent;
    transform: translateY(-2px);
}

.cta-text {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FF8C00;
    transition: color 0.3s ease;
}

.product-card-link:hover .cta-text {
    color: white;
}

.product-cta i {
    font-size: 18px;
    color: #FF8C00;
    transition: all 0.4s ease;
}

.product-card-link:hover .product-cta i {
    color: white;
    transform: translateX(4px);
}

/* Carousel Progress */
.alumier-carousel-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.progress-track {
    position: relative;
    width: 160px;
    height: 4px;
    background: rgba(255, 140, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #FF8C00 0%, #FFA500 100%);
    border-radius: 4px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: left;
    width: 100%;
}

.progress-counter {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #5D4E37;
    display: flex;
    align-items: center;
    gap: 6px;
}

.counter-current {
    color: #FF8C00;
    font-weight: 700;
    font-size: 18px;
}

.counter-separator {
    color: #8B7355;
}

/* Partnership & CTA Section */
.alumier-partnership-cta {
    text-align: center;
}

.partnership-frame {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 252, 248, 0.92) 100%
    );
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: clamp(40px, 6vw, 60px);
    margin-bottom: 40px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.06),
        0 8px 32px rgba(255, 140, 0, 0.04);
}

.partnership-frame:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.25);
    box-shadow: 
        0 30px 120px rgba(0, 0, 0, 0.1),
        0 12px 48px rgba(255, 140, 0, 0.08);
}

.frame-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.06) 0%, 
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
}

.partnership-frame:hover .frame-glow {
    opacity: 1;
}

.partnership-content {
    position: relative;
    z-index: 2;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.partnership-badge i {
    font-size: 18px;
    color: #FF8C00;
}

.partnership-badge span {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #FF8C00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partnership-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: #2A1B0A;
    margin-bottom: 16px;
}

.partnership-description {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    color: #5D4E37;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.inline-link {
    color: #FF8C00;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.inline-link:hover {
    border-bottom-color: #FF8C00;
}

/* Action Buttons */
.alumier-action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.alumier-primary-btn,
.alumier-secondary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.alumier-primary-btn {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FF7A00 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    box-shadow: 
        0 12px 40px rgba(255, 140, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    animation: alumierGradientShift 6s ease-in-out infinite;
}

.alumier-primary-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 16px 50px rgba(255, 140, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transition: left 0.8s ease;
}

.alumier-primary-btn:hover .btn-shimmer {
    left: 100%;
}

.alumier-secondary-btn {
    background: transparent;
    color: #FF8C00;
    border: 2px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
}

.alumier-secondary-btn:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: #FF8C00;
    transform: translateY(-3px);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-content i {
    font-size: 18px;
    transition: transform 0.4s ease;
}

.alumier-primary-btn:hover .btn-content i,
.alumier-secondary-btn:hover .btn-content i {
    transform: translateX(4px);
}

/* Animations */
@keyframes alumierOrbFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 0.08; 
    }
    25% { 
        transform: translate(30px, -30px) rotate(90deg); 
        opacity: 0.06; 
    }
    50% { 
        transform: translate(-20px, -35px) rotate(180deg); 
        opacity: 0.1; 
    }
    75% { 
        transform: translate(25px, 20px) rotate(270deg); 
        opacity: 0.07; 
    }
}

@keyframes alumierShimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes alumierGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .alumier-nav-prev {
        left: -24px;
    }
    
    .alumier-nav-next {
        right: -24px;
    }
}

@media (max-width: 992px) {
    .alumier-product-card {
        flex: 0 0 calc(50% - 20px);
    }
    
    .alumier-nav-arrow {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
    
    .alumier-nav-prev {
        left: -28px;
    }
    
    .alumier-nav-next {
        right: -28px;
    }
}

@media (max-width: 768px) {
    .alumier-luxury-showcase {
        padding: clamp(70px, 10vh, 90px) 0;
    }
    
    .alumier-product-card {
        flex: 0 0 100%;
    }
    
    .alumier-carousel-viewport {
        padding: clamp(30px, 4vw, 40px);
    }
    
    .alumier-nav-prev {
        left: 10px;
    }
    
    .alumier-nav-next {
        right: 10px;
    }
    
    .product-image-container {
        height: 220px;
    }
    
    .alumier-action-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .alumier-primary-btn,
    .alumier-secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .alumier-nav-arrow {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .alumier-carousel-viewport {
        padding: 24px;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-details {
        padding: 24px 20px 28px;
    }
    
    .partnership-frame {
        padding: 32px 24px;
    }
}

/* ========================================
   HERMES SOCIAL SHOWCASE SECTION
   ======================================== */

.hermes-social-showcase {
    position: relative;
    padding: clamp(80px, 12vh, 120px) 0;
    background: linear-gradient(135deg, 
        var(--cream-primary) 0%, 
        var(--cream-light) 50%, 
        var(--cream-soft) 100%
    );
    overflow: hidden;
}

.social-ambient-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.social-ambient-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--hermes-orange);
    opacity: 0.04;
    filter: blur(100px);
    animation: socialAmbientFloat 35s ease-in-out infinite;
}

.social-orb-1 {
    width: 350px;
    height: 350px;
    top: -175px;
    left: -100px;
    animation-delay: 0s;
}

.social-orb-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -75px;
    animation-delay: -12s;
}

.social-orb-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -24s;
}

.social-particles {
    position: absolute;
    inset: 0;
}

.social-particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--hermes-orange);
    border-radius: 50%;
    opacity: 0.2;
    animation: socialParticleFloat 28s linear infinite;
}

.social-particle-1 {
    top: 15%;
    left: 20%;
    animation-delay: -4s;
}

.social-particle-2 {
    top: 65%;
    right: 25%;
    animation-delay: -14s;
}

.social-particle-3 {
    bottom: 35%;
    left: 65%;
    animation-delay: -8s;
}

.social-particle-4 {
    top: 75%;
    right: 35%;
    animation-delay: -18s;
}

.social-mesh-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 140, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.02) 0%, transparent 60%);
}

.hermes-social-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.social-showcase-header {
    text-align: center;
    margin-bottom: clamp(60px, 10vh, 80px);
}

.social-luxury-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 252, 248, 0.98) 50%, 
        rgba(255, 248, 240, 0.95) 100%
    );
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 60px;
    padding: 18px 36px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(255, 140, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.social-luxury-badge:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 
        0 25px 100px rgba(0, 0, 0, 0.12),
        0 12px 40px rgba(255, 140, 0, 0.08);
}

.badge-ornament-left,
.badge-ornament-right {
    width: 8px;
    height: 8px;
    background: var(--hermes-orange);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.5);
    animation: socialBadgeGlow 4s ease-in-out infinite;
}

.badge-ornament-right {
    animation-delay: 2s;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
}

.badge-content i {
    font-size: 22px;
    color: var(--hermes-orange);
    animation: socialIconPulse 3s ease-in-out infinite;
}

.badge-content span {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 700;
    color: var(--hermes-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.social-showcase-title {
    margin-bottom: 32px;
}

.social-title-main {
    display: block;
    font-family: var(--font-playfair);
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.social-title-accent {
    display: block;
    font-family: var(--font-playfair);
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
    font-style: italic;
    background: var(--gradient-hermes-orange);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: socialGradientShift 6s ease-in-out infinite;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.social-showcase-subtitle {
    font-family: var(--font-inter);
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.social-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 60px);
    margin-bottom: clamp(60px, 10vh, 80px);
}

.social-column {
    position: relative;
}

.social-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 252, 248, 0.95) 50%, 
        rgba(255, 248, 240, 0.98) 100%
    );
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(255, 140, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.social-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 140, 0, 0.25);
    box-shadow: 
        0 30px 120px rgba(0, 0, 0, 0.12),
        0 15px 60px rgba(255, 140, 0, 0.08);
}

/* Card Ornaments */
.social-card-ornaments {
    position: absolute;
    inset: -4px;
    z-index: 5;
    pointer-events: none;
}

.social-ornament-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid var(--hermes-orange);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-corner-tl { 
    top: 0; left: 0; 
    border-right: none; border-bottom: none; 
    border-radius: 14px 0 0 0; 
}
.social-corner-tr { 
    top: 0; right: 0; 
    border-left: none; border-bottom: none; 
    border-radius: 0 14px 0 0; 
}
.social-corner-bl { 
    bottom: 0; left: 0; 
    border-right: none; border-top: none; 
    border-radius: 0 0 0 14px; 
}
.social-corner-br { 
    bottom: 0; right: 0; 
    border-left: none; border-top: none; 
    border-radius: 0 0 14px 0; 
}

.social-card:hover .social-ornament-corner {
    opacity: 0.6;
    transform: scale(1.05);
}

.social-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.social-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews-icon {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 100%);
}

.instagram-icon {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
}

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

.social-header-content {
    flex: 1;
}

.social-card-title {
    font-family: var(--font-playfair);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.social-card-subtitle {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.social-rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: rgba(255, 140, 0, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 16px;
}

.rating-stars {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.rating-value {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.social-follow-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
    color: white;
    border-radius: 20px;
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.social-follow-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.social-widget-container {
    flex: 1;
    padding: 0 32px;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

/* Widget Loading States */
.widget-loading-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 5;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 140, 0, 0.2);
    border-top: 3px solid var(--hermes-orange);
    border-radius: 50%;
    animation: socialSpinnerRotate 1s linear infinite;
    margin: 0 auto 16px;
}

.widget-loading-placeholder p {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Style Elfsight Widgets */
.social-widget-container [class*="elfsight"] {
    border-radius: 20px !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    overflow: hidden !important;
    width: 100% !important;
    min-height: 400px !important;
}

.social-card-footer {
    padding: 24px 32px 32px;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    text-align: center;
}

.social-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 50px;
    color: var(--hermes-orange);
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.social-view-all-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hermes-orange);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.social-view-all-btn:hover {
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.25);
    border-color: transparent;
}

.social-view-all-btn:hover::before {
    opacity: 1;
}

.social-view-all-btn span,
.social-view-all-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.social-view-all-btn:hover i {
    transform: translateX(4px);
}

.social-cta-section {
    position: relative;
}

.social-cta-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.cta-glow-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--hermes-orange);
    opacity: 0.06;
    filter: blur(80px);
    animation: socialCtaOrbFloat 25s ease-in-out infinite;
}

.cta-glow-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -50px;
    animation-delay: 0s;
}

.cta-glow-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: -50px;
    animation-delay: -12s;
}

.social-cta-frame {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 252, 248, 0.92) 50%, 
        rgba(255, 248, 240, 0.95) 100%
    );
    backdrop-filter: blur(60px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: clamp(40px, 6vw, 60px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(255, 140, 0, 0.04);
    overflow: hidden;
}

.social-cta-frame:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 
        0 30px 120px rgba(0, 0, 0, 0.12),
        0 12px 48px rgba(255, 140, 0, 0.08);
}

/* CTA Ornaments */
.social-cta-ornaments {
    position: absolute;
    inset: -4px;
    pointer-events: none;
    z-index: 1;
}

.cta-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 3px solid var(--hermes-orange);
    opacity: 0.6;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-corner-tl { 
    top: 0; left: 0; 
    border-right: none; border-bottom: none; 
    border-radius: 16px 0 0 0; 
}
.cta-corner-tr { 
    top: 0; right: 0; 
    border-left: none; border-bottom: none; 
    border-radius: 0 16px 0 0; 
}
.cta-corner-bl { 
    bottom: 0; left: 0; 
    border-right: none; border-top: none; 
    border-radius: 0 0 0 16px; 
}
.cta-corner-br { 
    bottom: 0; right: 0; 
    border-left: none; border-top: none; 
    border-radius: 0 0 16px 0; 
}

.social-cta-frame:hover .cta-corner {
    opacity: 1;
    transform: scale(1.1);
}

/* CTA Content */
.social-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.social-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 140, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: clamp(24px, 4vh, 32px);
    transition: all 0.4s ease;
}

.social-cta-badge:hover {
    background: rgba(255, 140, 0, 0.15);
    transform: scale(1.05);
}

.social-cta-badge i {
    font-size: 18px;
    color: var(--hermes-orange);
}

.social-cta-badge span {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--hermes-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-cta-title {
    font-family: var(--font-playfair);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: clamp(20px, 3vh, 24px);
    letter-spacing: -0.02em;
}

.cta-title-main {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

.cta-title-accent {
    display: block;
    background: var(--gradient-hermes-orange);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: socialGradientShift 4s ease-in-out infinite;
    font-style: italic;
    font-weight: 700;
    margin-top: 8px;
}

.social-cta-description {
    font-family: var(--font-inter);
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: clamp(32px, 5vh, 40px);
}

.social-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.social-primary-cta {
    position: relative;
    background: var(--gradient-hermes-orange);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    letter-spacing: 0.02em;
    box-shadow: 
        0 12px 40px rgba(255, 140, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    animation: socialGradientShift 8s ease-in-out infinite;
}

.social-primary-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 16px 50px rgba(255, 140, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.cta-shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-primary-cta:hover .cta-shimmer-effect {
    left: 100%;
}

.social-follow-buttons {
    display: flex;
    gap: 16px;
}

.social-follow-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-follow {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.2);
}

.instagram-follow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(225, 48, 108, 0.3);
}

.google-follow {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.2);
}

.google-follow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.3);
}

@keyframes socialAmbientFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
        opacity: 0.04; 
    }
    25% { 
        transform: translate(25px, -20px) rotate(90deg); 
        opacity: 0.06; 
    }
    50% { 
        transform: translate(-20px, -25px) rotate(180deg); 
        opacity: 0.05; 
    }
    75% { 
        transform: translate(20px, 20px) rotate(270deg); 
        opacity: 0.07; 
    }
}

@keyframes socialParticleFloat {
    0% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0; 
    }
    10% { 
        opacity: 0.2; 
    }
    90% { 
        opacity: 0.2; 
    }
    100% { 
        transform: translateY(-100vh) rotate(360deg); 
        opacity: 0; 
    }
}

@keyframes socialGradientShift {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes socialBadgeGlow {
    0%, 100% { 
        box-shadow: 0 0 12px rgba(255, 140, 0, 0.5); 
    }
    50% { 
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.8); 
    }
}

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

@keyframes socialCtaOrbFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    25% { 
        transform: translate(30px, -20px) rotate(90deg); 
    }
    50% { 
        transform: translate(-20px, -30px) rotate(180deg); 
    }
    75% { 
        transform: translate(20px, 20px) rotate(270deg); 
    }
}

@keyframes socialSpinnerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1200px) {
    .social-content-grid {
        gap: 40px;
    }
    
    .hermes-social-container {
        max-width: 1100px;
    }
}

@media (max-width: 992px) {
    .hermes-social-showcase {
        padding: clamp(60px, 10vh, 80px) 0;
    }
    
    .social-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-card {
        min-height: 500px;
    }
    
    .social-cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .social-showcase-header {
        margin-bottom: 40px;
    }
    
    .social-luxury-badge {
        padding: 14px 28px;
        margin-bottom: 32px;
    }
    
    .social-card-header {
        padding: 24px 24px 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .social-widget-container {
        padding: 0 24px;
        min-height: 350px;
    }
    
    .social-card-footer {
        padding: 20px 24px 24px;
    }
    
    .social-cta-frame {
        padding: 32px 24px;
    }
    
    .social-follow-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .social-follow-btn {
        justify-content: center;
        width: 100%;
    }
    
    .social-primary-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .social-card {
        min-height: 450px;
        border-radius: 24px;
    }
    
    .social-card-header {
        padding: 20px 20px 16px;
    }
    
    .social-widget-container {
        padding: 0 20px;
        min-height: 300px;
    }
    
    .social-card-footer {
        padding: 16px 20px 20px;
    }
    
    .social-view-all-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .social-cta-frame {
        padding: 24px 20px;
        border-radius: 24px;
    }
}

/* Hide loading placeholder when Elfsight loads */
.social-widget-container [class*="elfsight"]:not(:empty) + .widget-loading-placeholder,
.social-widget-container:has([class*="elfsight"]:not(:empty)) .widget-loading-placeholder {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Performance optimizations */
.social-card,
.social-primary-cta,
.social-follow-btn {
    will-change: transform;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .social-card,
    .social-primary-cta,
    .social-follow-btn,
    .social-view-all-btn {
        transition-duration: 0.2s;
    }
    
    .social-ambient-orb,
    .social-particle {
        animation-duration: 0.2s;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
/* Section Container */
.hc-contact-masterpiece {
    position: relative;
    padding: clamp(80px, 12vh, 120px) 0;
    background: linear-gradient(135deg, 
        var(--cream-primary) 0%, 
        var(--cream-light) 50%, 
        var(--cream-soft) 100%);
    overflow: hidden;
}

/* Ambient Background */
.hc-ambient-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hc-floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08), transparent 70%);
    animation: hc-orbitFloat 20s ease-in-out infinite;
}

.hc-orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: -5s;
}

.hc-orb-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation-delay: -12s;
}

.hc-orb-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 30%;
    animation-delay: -8s;
}

.hc-gradient-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 800px 400px at 20% 70%, rgba(255, 140, 0, 0.03), transparent),
        radial-gradient(ellipse 600px 300px at 80% 30%, rgba(255, 140, 0, 0.04), transparent);
    opacity: 0.8;
}

/* Main Container */
.hc-section-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Header Section */
.hc-header-showcase {
    text-align: center;
    margin-bottom: clamp(60px, 10vh, 100px);
}

.hc-prestige-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 50px;
    padding: 14px 28px;
    margin-bottom: 32px;
    overflow: hidden;
    transition: all var(--transition-slow);
    box-shadow: 
        0 8px 32px rgba(255, 140, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hc-prestige-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 
        0 16px 48px rgba(255, 140, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hc-badge-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 140, 0, 0.4), 
        transparent);
    animation: hc-shimmer 3s ease-in-out infinite;
}

.hc-prestige-badge i {
    font-size: 18px;
    color: var(--hermes-orange);
}

.hc-prestige-badge span {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--hermes-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hc-hero-title {
    font-family: var(--font-playfair);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hc-title-line {
    display: block;
    color: var(--text-primary);
}

.hc-title-accent {
    display: block;
    background: linear-gradient(135deg, 
        var(--hermes-orange) 0%, 
        var(--hermes-orange-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    margin-top: 8px;
    animation: hc-gradientFlow 4s ease-in-out infinite;
}

.hc-hero-subtitle {
    font-family: var(--font-inter);
    font-size: clamp(16px, 2.2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.hc-highlight {
    color: var(--hermes-orange);
    font-weight: 600;
}

/* Content Grid */
.hc-content-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    margin-bottom: 80px;
}

/* Form Section */
.hc-form-sanctuary {
    position: relative;
}

.hc-form-vessel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 
        0 32px 100px rgba(0, 0, 0, 0.08),
        0 16px 50px rgba(255, 140, 0, 0.08);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.hc-form-vessel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 140, 0, 0.3), 
        transparent);
}

.hc-form-vessel:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.12),
        0 20px 60px rgba(255, 140, 0, 0.12);
}

.hc-form-crown {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
}

.hc-crown-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        var(--hermes-orange) 0%, 
        var(--hermes-orange-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hc-crown-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transform: translateX(-100%);
    animation: hc-iconShine 2s ease-in-out infinite;
}

.hc-crown-text h3 {
    font-family: var(--font-playfair);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.hc-crown-text p {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Elfsight Form Container */
.hc-elfsight-container {
    margin-bottom: 32px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.hc-elfsight-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.05), 
        rgba(255, 140, 0, 0.02));
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
}

.hc-elfsight-container .elfsight-form-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

/* Trust Indicators */
.hc-trust-array {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
}

.hc-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    padding: 16px 8px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.hc-trust-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 140, 0, 0.1);
}

.hc-trust-item i {
    font-size: 20px;
    color: var(--hermes-orange);
}

.hc-trust-item span {
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

/* Connection Hub */
.hc-connection-hub {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Instant Contact Card */
.hc-instant-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 32px;
    overflow: hidden;
    transition: all var(--transition-slow);
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.06),
        0 12px 40px rgba(255, 140, 0, 0.06);
}

.hc-card-energy {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.15), 
        transparent 60%);
    border-radius: 50%;
    transform: translate(40px, -40px);
    animation: hc-energyPulse 4s ease-in-out infinite;
}

.hc-instant-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 
        0 32px 100px rgba(0, 0, 0, 0.1),
        0 16px 50px rgba(255, 140, 0, 0.1);
}

.hc-instant-header {
    position: relative;
    margin-bottom: 28px;
}

.hc-instant-pulse {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 12px;
    height: 12px;
    background: var(--hermes-orange);
    border-radius: 50%;
    animation: hc-statusPulse 2s ease-in-out infinite;
}

.hc-instant-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--hermes-orange);
    border-radius: 50%;
    animation: hc-statusRipple 2s ease-in-out infinite;
}

.hc-instant-header h3 {
    font-family: var(--font-playfair);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.hc-instant-header p {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Action Buttons */
.hc-instant-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hc-action-prime,
.hc-action-secondary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.hc-action-prime {
    background: linear-gradient(135deg, 
        var(--hermes-orange) 0%, 
        var(--hermes-orange-light) 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.3);
}

.hc-action-prime:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(255, 140, 0, 0.4);
}

.hc-action-secondary {
    background: rgba(255, 140, 0, 0.1);
    color: var(--hermes-orange);
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.hc-action-secondary:hover {
    background: rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.5);
    transform: translateY(-2px);
}

.hc-action-prime i,
.hc-action-secondary i {
    font-size: 20px;
}

.hc-action-content {
    flex: 1;
}

.hc-action-label {
    display: block;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.hc-action-detail {
    display: block;
    font-family: var(--font-inter);
    font-size: 13px;
    opacity: 0.8;
}

.hc-action-arrow {
    transition: transform var(--transition-medium);
}

.hc-action-prime:hover .hc-action-arrow,
.hc-action-secondary:hover .hc-action-arrow {
    transform: translateX(4px);
}

/* Method Cards */
.hc-methods-collection {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hc-method-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 24px;
    padding: 24px;
    transition: all var(--transition-medium);
    overflow: hidden;
}

.hc-method-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.02), 
        rgba(255, 140, 0, 0.08));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.hc-method-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.06),
        0 8px 24px rgba(255, 140, 0, 0.1);
}

.hc-method-card:hover .hc-method-glow {
    opacity: 1;
}

.hc-method-icon {
    position: relative;
    width: 48px;
    height: 48px;
    background: rgba(255, 140, 0, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hermes-orange);
    font-size: 20px;
    z-index: 2;
}

.hc-method-info {
    flex: 1;
    z-index: 2;
}

.hc-method-info h4 {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.hc-method-info p {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.hc-method-info a {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--hermes-orange);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.hc-method-info a:hover {
    color: var(--hermes-orange-dark);
}

/* Social Links */
.hc-social-links {
    display: flex;
    gap: 12px;
}

.hc-social-links a {
    width: 32px;
    height: 32px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hermes-orange);
    font-size: 16px;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.hc-social-links a:hover {
    background: var(--hermes-orange);
    color: white;
    transform: translateY(-2px);
}

/* Final CTA */
.hc-finale-cta {
    text-align: center;
}

.hc-cta-magnetism {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 40px;
    padding: 32px 48px;
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.08),
        0 12px 40px rgba(255, 140, 0, 0.1);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.hc-cta-radiance {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.05), 
        rgba(255, 140, 0, 0.02));
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.hc-cta-magnetism:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 
        0 32px 100px rgba(0, 0, 0, 0.12),
        0 16px 50px rgba(255, 140, 0, 0.15);
}

.hc-cta-magnetism:hover .hc-cta-radiance {
    opacity: 1;
}

.hc-cta-content h3 {
    font-family: var(--font-playfair);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.hc-cta-content p {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.hc-cta-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, 
        var(--hermes-orange) 0%, 
        var(--hermes-orange-light) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 20px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-medium);
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.3);
    z-index: 2;
}

.hc-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(255, 140, 0, 0.4);
}

/* Animations */
@keyframes hc-orbitFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    25% { 
        transform: translate(20px, -30px) rotate(90deg); 
    }
    50% { 
        transform: translate(-30px, -20px) rotate(180deg); 
    }
    75% { 
        transform: translate(30px, 20px) rotate(270deg); 
    }
}

@keyframes hc-shimmer {
    0% { 
        left: -100%; 
    }
    100% { 
        left: 100%; 
    }
}

@keyframes hc-gradientFlow {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

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

@keyframes hc-energyPulse {
    0%, 100% { 
        opacity: 0.6; 
        transform: translate(40px, -40px) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translate(40px, -40px) scale(1.2); 
    }
}

@keyframes hc-statusPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.5; 
        transform: scale(0.8); 
    }
}

@keyframes hc-statusRipple {
    0% { 
        opacity: 1; 
        transform: scale(0); 
    }
    100% { 
        opacity: 0; 
        transform: scale(2); 
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hc-content-matrix {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hc-connection-hub {
        order: -1;
    }
    
    .hc-cta-magnetism {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hc-contact-masterpiece {
        padding: clamp(60px, 10vh, 80px) 0;
    }
    
    .hc-form-vessel,
    .hc-instant-card {
        padding: 24px;
        border-radius: 24px;
    }
    
    .hc-trust-array {
        flex-direction: column;
        gap: 12px;
    }
    
    .hc-trust-item {
        flex-direction: row;
        justify-content: center;
        padding: 12px 16px;
    }
    
    .hc-cta-magnetism {
        padding: 24px 32px;
        border-radius: 32px;
    }
    
    .hc-instant-actions {
        gap: 8px;
    }
    
    .hc-action-prime,
    .hc-action-secondary {
        padding: 16px 18px;
    }
}

@media (max-width: 480px) {
    .hc-form-vessel {
        padding: 20px;
    }
    
    .hc-instant-card {
        padding: 20px;
    }
    
    .hc-method-card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .hc-form-crown {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .hc-cta-magnetism {
        padding: 20px 24px;
        border-radius: 28px;
    }
}


/* ========================================
   FOOTER - OPTIMIZED
   ======================================== */
.premium-footer {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-primary) 50%, var(--cream-soft) 100%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 140, 0, 0.3) 50%, transparent 100%);
}

/* Footer Upper Section */
.footer-upper {
    padding: clamp(80px, 10vh, 120px) 0 clamp(40px, 6vh, 60px);
    position: relative;
}

.footer-upper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 15%, rgba(255, 140, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(255, 140, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: clamp(40px, 5vw, 60px);
}

/* Brand Column */
.footer-brand-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(255, 140, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.footer-logo-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.footer-logo-container:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(255, 140, 0, 0.15);
}

.footer-logo-container:hover::before {
    opacity: 1;
}

.footer-logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.footer-logo-container:hover .footer-logo {
    transform: scale(1.08);
}

.brand-name {
    font-family: var(--font-playfair);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.brand-tagline {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--hermes-orange);
    font-weight: 500;
    margin-bottom: 24px;
    font-style: italic;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--hermes-orange);
    font-size: 18px;
}

/* Links Columns */
.footer-column-title {
    font-family: var(--font-playfair);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--hermes-orange);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li {
    position: relative;
    padding-left: 16px;
}

.footer-links-list li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--hermes-orange);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-links-list li:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.footer-links-list a {
    font-family: var(--font-inter);
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--hermes-orange);
    padding-left: 4px;
}

/* Social Column */
.social-media-links {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.social-media-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hermes-orange);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-media-link:hover {
    background: var(--gradient-hermes-orange);
    color: var(--white);
    transform: translateY(-6px) rotate(8deg);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

.newsletter-subscription {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.4s ease;
}

.newsletter-subscription:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 140, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.newsletter-title {
    font-family: var(--font-playfair);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.newsletter-subtitle {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.form-input-group {
    display: flex;
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-input-group:focus-within {
    border-color: var(--hermes-orange);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.15);
}

.newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-submit {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hermes-orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.newsletter-submit:hover {
    background: linear-gradient(135deg, var(--hermes-orange-dark) 0%, var(--hermes-orange) 100%);
}

/* Trust Badges Section */
.trust-badges-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
}

.trust-badges-section::before,
.trust-badges-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 140, 0, 0.15) 50%, transparent 100%);
}

.trust-badges-section::before {
    top: 0;
}

.trust-badges-section::after {
    bottom: 0;
}

.trust-badges-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-badge-group {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.badge-group-title {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.badge-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-icon {
    transition: all 0.3s ease;
}

.badge-icon:hover {
    transform: translateY(-3px);
}

.badge-icon.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rating-stars {
    color: #FFD700;
    font-size: 18px;
    display: flex;
    gap: 2px;
}

.rating-text {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Legal Section */
.footer-legal {
    padding: 24px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.legal-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.legal-links a {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--hermes-orange);
}

.copyright-text {
    font-family: var(--font-inter);
    font-size: 13px;
    color: var(--text-secondary);
}

/* Design Credit */
.design-credit {
    padding: 12px 0;
    background: rgba(255, 140, 0, 0.05);
    text-align: center;
}

.designer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.designer-link span {
    font-family: var(--font-inter);
    font-size: 12px;
    color: var(--text-muted);
}

.designer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.designer-logo span {
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 600;
    color: var(--hermes-orange);
    transition: all 0.3s ease;
}

.designer-link:hover .designer-logo img {
    transform: rotate(15deg) scale(1.1);
}

.designer-link:hover .designer-logo span {
    color: var(--text-primary);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand-column {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-upper {
        padding: clamp(60px, 8vh, 80px) 0 clamp(30px, 5vh, 40px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-badges-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .trust-badge-group {
        width: 100%;
    }
    
    .legal-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo-container {
        width: 140px;
        height: 140px;
    }
    
    .footer-logo {
        width: 110px;
        height: 110px;
    }
    
    .social-media-links {
        justify-content: center;
    }
    
    .badge-icons {
        gap: 15px;
    }
    
    .badge-icon img {
        max-width: 80%;
        height: auto;
    }
}

/* ========================================
   FLOAT BUTTON
   ======================================== */
/* Hermes Floating Controls */
.hermes-floating-controls {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none;
}

/* Back to Top Button */
.hermes-back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 252, 248, 0.95) 50%, 
        rgba(255, 248, 240, 0.95) 100%
    );
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px) scale(0.8);
    pointer-events: auto;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(255, 140, 0, 0.06);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hermes-back-to-top:hover {
    transform: translateY(-8px) scale(1.05) rotate(2deg);
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 
        0 20px 60px rgba(255, 140, 0, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.1);
}

.hermes-back-to-top:active {
    transform: translateY(-6px) scale(0.98);
}

/* Contact FAB Container */
.hermes-contact-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    pointer-events: auto;
}

.contact-fab-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(42, 27, 10, 0.4);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.hermes-contact-fab.expanded .contact-fab-backdrop {
    opacity: 1;
    visibility: visible;
}

/* Main Contact Button */
.main-contact-btn {
    position: relative;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FF7A00 100%);
    background-size: 200% 200%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 22px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 12px 40px rgba(255, 140, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gradientShift 6s ease-in-out infinite;
}

.main-contact-btn:hover {
    transform: translateY(-6px) scale(1.08) rotate(-3deg);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 20px 80px rgba(255, 140, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.hermes-contact-fab.expanded .main-contact-btn {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #2A1B0A 0%, #5D4E37 100%);
    border-color: rgba(255, 140, 0, 0.3);
}

/* Button Content */
.btn-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.btn-icon {
    font-size: 1.5rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hermes-back-to-top .btn-icon {
    color: #FF8C00;
    font-size: 1.8rem;
}

.main-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.btn-close-icon {
    position: absolute;
    font-size: 1.6rem;
    color: white;
    opacity: 0;
    transform: rotate(-45deg) scale(0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hermes-contact-fab.expanded .main-icon {
    opacity: 0;
    transform: rotate(45deg) scale(0.8);
}

.hermes-contact-fab.expanded .btn-close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Frame Ornaments */
.btn-frame-ornaments,
.option-frame-ornaments {
    position: absolute;
    inset: -3px;
    z-index: 1;
    pointer-events: none;
}

.frame-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid #FF8C00;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.corner-tl { 
    top: 0; left: 0; 
    border-right: none; border-bottom: none; 
    border-radius: 8px 0 0 0; 
}
.corner-tr { 
    top: 0; right: 0; 
    border-left: none; border-bottom: none; 
    border-radius: 0 8px 0 0; 
}
.corner-bl { 
    bottom: 0; left: 0; 
    border-right: none; border-top: none; 
    border-radius: 0 0 0 8px; 
}
.corner-br { 
    bottom: 0; right: 0; 
    border-left: none; border-top: none; 
    border-radius: 0 0 8px 0; 
}

.hermes-back-to-top:hover .frame-corner,
.main-contact-btn:hover .frame-corner,
.contact-option:hover .frame-corner {
    opacity: 0.8;
    transform: scale(1.2);
}

.hermes-back-to-top .frame-corner {
    border-color: #FF8C00;
}

.main-contact-btn .frame-corner {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Ambient Glow Effects */
.btn-ambient-glow,
.option-ambient-glow {
    position: absolute;
    inset: -4px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.3) 0%, transparent 70%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hermes-back-to-top:hover .btn-ambient-glow,
.main-contact-btn:hover .btn-ambient-glow,
.contact-option:hover .option-ambient-glow {
    opacity: 1;
}

/* Contact Options */
.contact-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-option {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hermes-contact-fab.expanded .contact-option {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.hermes-contact-fab.expanded .contact-option:nth-child(1) {
    transition-delay: 0.1s;
}

.hermes-contact-fab.expanded .contact-option:nth-child(2) {
    transition-delay: 0.2s;
}

.hermes-contact-fab.expanded .contact-option:nth-child(3) {
    transition-delay: 0.3s;
}

.contact-link {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(255, 140, 0, 0.06);
}

.contact-link:hover {
    transform: translateY(-4px) scale(1.05) rotate(5deg);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 6px 20px rgba(255, 140, 0, 0.1);
}

/* Option Content */
.option-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.option-icon {
    font-size: 1.3rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-option:hover .option-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Individual Option Styling */
.contact-option[data-contact="call"] .contact-link {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-option[data-contact="call"] .frame-corner {
    border-color: rgba(255, 255, 255, 0.6);
}

.contact-option[data-contact="instagram"] .contact-link {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-option[data-contact="instagram"] .frame-corner {
    border-color: rgba(255, 255, 255, 0.6);
}

.contact-option[data-contact="email"] .contact-link {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-option[data-contact="email"] .frame-corner {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Tooltips */
.btn-tooltip,
.option-tooltip {
    position: absolute;
    right: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 27, 10, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.hermes-back-to-top:hover .btn-tooltip,
.main-contact-btn:hover .btn-tooltip,
.contact-option:hover .option-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.tooltip-arrow {
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(42, 27, 10, 0.95);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.option-number,
.option-handle,
.option-email {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 
            0 12px 40px rgba(255, 140, 0, 0.3),
            inset 0 2px 4px rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 16px 60px rgba(255, 140, 0, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
}

.main-contact-btn {
    animation: gradientShift 6s ease-in-out infinite, pulseGlow 4s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hermes-back-to-top {
        bottom: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
    
    .hermes-contact-fab {
        bottom: 20px;
        right: 20px;
    }
    
    .main-contact-btn {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }
    
    .contact-options {
        bottom: 72px;
        gap: 12px;
    }
    
    .contact-link {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }
    
    .option-icon {
        font-size: 1.2rem;
    }
    
    .btn-tooltip,
    .option-tooltip {
        font-size: 12px;
        padding: 10px 14px;
        border-radius: 10px;
    }
    
    .hermes-back-to-top .btn-icon {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hermes-back-to-top {
        bottom: 16px;
        left: 16px;
        width: 48px;
        height: 48px;
    }
    
    .hermes-contact-fab {
        bottom: 16px;
        right: 16px;
    }
    
    .main-contact-btn {
        width: 52px;
        height: 52px;
    }
    
    .contact-options {
        bottom: 68px;
    }
    
    .contact-link {
        width: 46px;
        height: 46px;
    }
    
    .btn-tooltip,
    .option-tooltip {
        display: none; /* Hide tooltips on very small screens */
    }
}

/* Hide on very large screens if needed */
@media (max-width: 320px) {
    .hermes-floating-controls {
        display: none;
    }
}
