/* ========================================
   ROOT VARIABLES & 
   ======================================== */
: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: 200px;
    height: 200px;
    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%; }
}

/* ========================================
   ORIGINAL DESKTOP HEADER - UNCHANGED
   ======================================== */
.luxury-floating-header {
    position: fixed;
    top: clamp(1rem, 3vh, 2rem);
    left: 50%;
    transform: translateX(-50%);
    width: min(94vw, 1200px);
    z-index: 1000;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.luxury-glass-container {
    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) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 2rem;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    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);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-floating-header.scrolled .luxury-glass-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 252, 248, 0.96) 50%, 
        rgba(255, 248, 240, 0.98) 100%
    );
    border-color: rgba(255, 140, 0, 0.15);
    transform: translateY(-2px);
    box-shadow: 
        0 25px 100px rgba(0, 0, 0, 0.12),
        0 12px 40px rgba(255, 140, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 0 1px rgba(255, 140, 0, 0.06);
}

.luxury-glass-container::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.08) 0%, 
        rgba(255, 140, 0, 0.02) 50%, 
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(20px);
    animation: ambientFloat 15s ease-in-out infinite;
    pointer-events: none;
}

.luxury-glass-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.06) 0%, 
        rgba(255, 140, 0, 0.01) 50%, 
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(15px);
    animation: ambientFloat 12s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes ambientFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.4; 
    }
    50% { 
        transform: translate(10px, -8px) scale(1.1); 
        opacity: 0.6; 
    }
}

/* Desktop Logo Section */
.luxury-floating-header .luxury-logo-section {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 10;
}

.luxury-floating-header .logo-glow-wrapper {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.luxury-floating-header .logo-glow-wrapper:hover {
    transform: scale(1.05);
}

.luxury-floating-header .luxury-header-logo {
    height: clamp(2.8rem, 5vh, 3.8rem);
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.04));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-floating-header .logo-ambient-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.luxury-floating-header .logo-glow-wrapper:hover .logo-ambient-glow {
    opacity: 1;
}

/* Desktop Navigation - Force Horizontal Layout */
.luxury-nav-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 10 !important;
    flex-wrap: nowrap !important;
    width: auto !important;
    height: auto !important;
}

.nav-item {
    position: relative !important;
    display: inline-block !important;
    float: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: top !important;
}

.luxury-nav-link {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: var(--text-primary) !important;
    font-family: var(--font-inter) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    padding: 0.85rem 1.4rem !important;
    border-radius: 1.2rem !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    overflow: hidden !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
    float: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

.luxury-nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.06) 0%, 
        rgba(255, 140, 0, 0.02) 100%
    );
    border-radius: inherit;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-nav-link:hover::before,
.luxury-nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.luxury-nav-link:hover {
    color: var(--hermes-orange);
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255, 140, 0, 0.15);
}

.luxury-nav-link.active {
    color: var(--hermes-orange);
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.08) 0%, 
        rgba(255, 140, 0, 0.04) 100%
    );
    box-shadow: 
        inset 0 1px 3px rgba(255, 140, 0, 0.1),
        0 2px 8px rgba(255, 140, 0, 0.06);
}

/* Desktop CTA Button */
.luxury-cta-wrapper {
    position: relative;
    z-index: 10;
    display: block !important;
}

.luxury-cta-button {
    position: relative;
    background: linear-gradient(135deg, 
        var(--hermes-orange) 0%, 
        var(--hermes-orange-light) 50%, 
        var(--hermes-orange-dark) 100%
    );
    background-size: 200% 200%;
    color: var(--white);
    border: none;
    border-radius: 1.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-inter);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 32px rgba(255, 140, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.02em;
    animation: gradientShift 6s ease-in-out infinite;
    z-index: 10;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
}

.luxury-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(255, 140, 0, 0.35),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

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

.cta-icon {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

.cta-ripple {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 70%
    );
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s var(--ease-luxury);
}

.luxury-cta-button:hover .cta-ripple {
    opacity: 1;
    transform: scale(1.2);
}

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

/* ========================================
   MOBILE FLOATING CIRCLES - NEW ADDITION
   ======================================== */
.mobile-logo-circle {
    position: relative;
    z-index: 10;
}

.circle-logo-container {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 248, 240, 0.8) 100%
    );
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 140, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.06),
        0 3px 10px rgba(255, 140, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.circle-logo-container:hover {
    transform: scale(1.08) translateY(-2px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(255, 140, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-circle-logo {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.logo-ripple-effect {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.15) 0%, 
        rgba(255, 140, 0, 0.05) 40%, 
        transparent 70%
    );
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s var(--ease-luxury);
    pointer-events: none;
}

.circle-logo-container:hover .logo-ripple-effect {
    opacity: 1;
    transform: scale(1.2);
}

.mobile-menu-circle {
    position: relative;
    z-index: 1001;
}

.circle-menu-toggle {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 248, 240, 0.8) 100%
    );
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 140, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.06),
        0 3px 10px rgba(255, 140, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.circle-menu-toggle:hover {
    transform: scale(1.08) translateY(-2px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(255, 140, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.circle-menu-toggle:focus {
    outline: none;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(255, 140, 0, 0.2),
        0 0 0 3px rgba(255, 140, 0, 0.3);
}

/* Hamburger Icon */
.simple-menu-icon {
    position: relative;
    width: 1.5rem;
    height: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-line {
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s var(--ease-luxury);
}

.menu-line:nth-child(1) {
    width: 100%;
}

.menu-line:nth-child(2) {
    width: 75%;
    position: relative;
}

.menu-line:nth-child(3) {
    width: 100%;
}

.menu-line:nth-child(2)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background: var(--hermes-orange);
    border-radius: 50%;
    transition: all 0.3s var(--ease-luxury);
}

.circle-menu-toggle:hover .menu-line {
    background: var(--hermes-orange);
}

.circle-menu-toggle:hover .menu-line:nth-child(2) {
    width: 100%;
}

.circle-menu-toggle:hover .menu-line:nth-child(2)::after {
    transform: translateY(-50%) scale(1.5);
}

.circle-menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--hermes-orange);
}

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

.circle-menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--hermes-orange);
}

.menu-ripple-effect {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.15) 0%, 
        rgba(255, 140, 0, 0.05) 40%, 
        transparent 70%
    );
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s var(--ease-luxury);
    pointer-events: none;
}

.circle-menu-toggle:hover .menu-ripple-effect {
    opacity: 1;
    transform: scale(1.2);
}

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

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

.header-ambient-bg .orb-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.header-ambient-bg .orb-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 20%;
    animation-delay: -7s;
}

.header-ambient-bg .orb-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 60%;
    animation-delay: -14s;
}

@keyframes headerOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(15px, -10px) scale(1.1); }
    50% { transform: translate(-10px, -15px) scale(0.9); }
    75% { transform: translate(10px, 5px) scale(1.05); }
}

/* ========================================
   MOBILE MENU BACKDROP & SLIDE MENU
   ======================================== */
.modern-mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(42, 27, 10, 0.6);
    backdrop-filter: blur(20px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
    pointer-events: none;
}

.modern-mobile-backdrop.active { 
    opacity: 1; 
    visibility: visible; 
    pointer-events: auto;
}

.modern-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(400px, 85vw);
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 248, 240, 0.95) 100%
    );
    backdrop-filter: blur(60px) saturate(180%);
    z-index: 1999;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 2rem 0 0 2rem;
    transform: translateX(100%);
    visibility: hidden;
}

.modern-mobile-menu.active { 
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
}

.mobile-menu-logo { 
    height: 2.5rem; 
    width: auto; 
    object-fit: contain; 
}

.mobile-menu-close {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    position: relative;
}

.close-line {
    position: absolute;
    width: 1rem;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-medium);
}

.close-line:nth-child(1) { transform: rotate(45deg); }
.close-line:nth-child(2) { transform: rotate(-45deg); }

.mobile-menu-close:hover {
    background: var(--hermes-orange);
    border-color: var(--hermes-orange);
}

.mobile-menu-close:hover .close-line { 
    background: white; 
}

.mobile-navigation {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 1rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.1), 
        rgba(255, 140, 0, 0.05)
    );
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before { 
    opacity: 1; 
}

.mobile-nav-number {
    font-family: var(--font-inter);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--hermes-orange);
    min-width: 2rem;
}

.mobile-nav-text {
    font-family: var(--font-inter);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.mobile-nav-link:hover { 
    transform: translateX(8px); 
}

.mobile-menu-footer {
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    padding-top: 2rem;
}

.mobile-cta-button {
    width: 100%;
    background: linear-gradient(135deg, 
        var(--hermes-orange) 0%, 
        var(--hermes-orange-light) 100%
    );
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-medium);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.4);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-family: var(--font-inter);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 992px) {
    .luxury-floating-header { 
        width: 95vw; 
        top: 1rem; 
    }
    
    .luxury-glass-container { 
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0.875rem 1.5rem !important;
    }
    
    .luxury-glass-container::before,
    .luxury-glass-container::after {
        display: none !important;
    }
    
    .luxury-nav-menu { 
        display: none !important; 
    }
    
    .luxury-cta-wrapper { 
        display: none !important; 
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .luxury-glass-container {
        padding: 0.875rem 1.25rem !important;
    }
    
    .circle-logo-container,
    .circle-menu-toggle {
        width: 3.2rem;
        height: 3.2rem;
    }
    
    .mobile-circle-logo {
        width: 2rem;
        height: 2rem;
    }
    
    .simple-menu-icon {
        width: 1.4rem;
        height: 1.1rem;
    }
}

body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media (min-width: 993px) {
    .modern-mobile-menu,
    .modern-mobile-backdrop {
        display: none !important;
    }
    
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

/* ========================================
   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 WHAT'S HOT SECTION - MODERN
   ======================================== */

section.evia-whats-hot-carousel-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-carousel-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-carousel-section .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   HERMES LUXURY HEADER SECTION
   ======================================== */

section.evia-whats-hot-carousel-section .hermes-hot-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

section.evia-whats-hot-carousel-section .hermes-hot-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 60px;
    padding: 18px 36px;
    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.08),
        0 8px 32px rgba(255, 140, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

section.evia-whats-hot-carousel-section .hermes-hot-badge:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 140, 0, 0.35);
    box-shadow: 
        0 25px 100px rgba(0, 0, 0, 0.12),
        0 12px 48px rgba(255, 140, 0, 0.08);
}

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

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

section.evia-whats-hot-carousel-section .badge-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.evia-whats-hot-carousel-section .badge-icon-container i {
    font-size: 22px;
    color: var(--hermes-orange, #FF8C00);
    z-index: 3;
    position: relative;
    animation: fireFlicker 2.5s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
    0% { transform: scale(1) rotate(-1deg); filter: brightness(1); }
    100% { transform: scale(1.1) rotate(1deg); filter: brightness(1.2); }
}

section.evia-whats-hot-carousel-section .badge-pulse-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--hermes-orange, #FF8C00);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulseRing 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.7);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

section.evia-whats-hot-carousel-section .badge-text {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--hermes-orange, #FF8C00);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

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

section.evia-whats-hot-carousel-section .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--hermes-orange, #FF8C00);
    border-radius: 50%;
    animation: sparkleGlow 3s ease-in-out infinite;
}

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

section.evia-whats-hot-carousel-section .sparkle-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
}

section.evia-whats-hot-carousel-section .sparkle-3 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes sparkleGlow {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 8px var(--hermes-orange, #FF8C00);
    }
}

section.evia-whats-hot-carousel-section .hermes-hot-title {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-weight: 700;
    color: var(--text-primary, #2A1B0A);
    margin: 0 0 24px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

section.evia-whats-hot-carousel-section .title-accent {
    display: block;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    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: hermesGradientFlow 6s ease-in-out infinite;
    font-style: italic;
    font-weight: 700;
}

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

section.evia-whats-hot-carousel-section .hermes-hot-subtitle {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary, #5D4E37);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ========================================
   ENHANCED CAROUSEL CONTAINER
   ======================================== */

section.evia-whats-hot-carousel-section .evia-carousel-container {
    position: relative;
    margin-bottom: 80px;
}

section.evia-whats-hot-carousel-section .evia-carousel-track-container {
    overflow: hidden;
    border-radius: var(--radius-2xl, 2rem);
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(255, 140, 0, 0.05);
}

section.evia-whats-hot-carousel-section .evia-carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ========================================
   ENHANCED TREATMENT CARDS
   ======================================== */

section.evia-whats-hot-carousel-section .evia-treatment-card {
    flex: 0 0 340px;
    height: 580px; /* Increased from 520px */
    background: var(--white, #FFFFFF);
    border-radius: var(--radius-2xl, 2rem);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(255, 140, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

section.evia-whats-hot-carousel-section .evia-treatment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.05) 0%, 
        rgba(255, 165, 0, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

section.evia-whats-hot-carousel-section .evia-treatment-card:hover::before {
    opacity: 1;
}

section.evia-whats-hot-carousel-section .evia-treatment-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 
        0 20px 64px rgba(0, 0, 0, 0.12),
        0 8px 32px rgba(255, 140, 0, 0.15);
}

section.evia-whats-hot-carousel-section .evia-treatment-card.featured {
    border-color: var(--hermes-orange, #FF8C00);
    background: linear-gradient(135deg, 
        var(--white, #FFFFFF) 0%, 
        rgba(255, 140, 0, 0.02) 100%
    );
    position: relative;
    animation: featuredPulse 4s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(255, 140, 0, 0.2); }
    50% { box-shadow: 0 16px 56px rgba(0, 0, 0, 0.1), 0 6px 24px rgba(255, 140, 0, 0.3); }
}

section.evia-whats-hot-carousel-section .treatment-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-2xl, 2rem) var(--radius-2xl, 2rem) 0 0;
}

section.evia-whats-hot-carousel-section .treatment-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.evia-whats-hot-carousel-section .evia-treatment-card:hover .treatment-bg-image {
    transform: scale(1.1);
}

section.evia-whats-hot-carousel-section .treatment-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(255, 140, 0, 0.2) 100%
    );
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

section.evia-whats-hot-carousel-section .evia-treatment-card:hover .treatment-overlay {
    opacity: 0.5;
}

section.evia-whats-hot-carousel-section .treatment-glow-effect {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, 
        var(--hermes-orange, #FF8C00), 
        var(--hermes-orange-light, #FFA500)
    );
    border-radius: inherit;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

section.evia-whats-hot-carousel-section .evia-treatment-card:hover .treatment-glow-effect {
    opacity: 0.15;
}

section.evia-whats-hot-carousel-section .card-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
    border-radius: inherit;
}

section.evia-whats-hot-carousel-section .evia-treatment-card:hover .card-hover-overlay {
    opacity: 1;
}

section.evia-whats-hot-carousel-section .featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--hermes-orange, #FF8C00);
    color: var(--white, #FFFFFF);
    padding: 8px 16px;
    border-radius: var(--radius-full, 9999px);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.4);
    z-index: 3;
    animation: badgeBounce 3s ease-in-out infinite;
}

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

/* ========================================
   ENHANCED TREATMENT CONTENT
   ======================================== */

section.evia-whats-hot-carousel-section .treatment-content {
    position: absolute;
    top: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

section.evia-whats-hot-carousel-section .treatment-icon-container {
    position: absolute;
    top: -30px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        var(--white, #FFFFFF) 0%, 
        rgba(255, 140, 0, 0.05) 100%
    );
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-xl, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(255, 140, 0, 0.2);
    transition: all 0.4s ease;
}

section.evia-whats-hot-carousel-section .evia-treatment-card:hover .treatment-icon-container {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.15),
        0 6px 16px rgba(255, 140, 0, 0.3);
}

section.evia-whats-hot-carousel-section .treatment-icon {
    font-size: 28px;
    color: var(--hermes-orange, #FF8C00);
    transition: all 0.3s ease;
}

section.evia-whats-hot-carousel-section .evia-treatment-card:hover .treatment-icon {
    transform: scale(1.1);
    filter: brightness(1.2);
}

section.evia-whats-hot-carousel-section .icon-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.4s ease;
}

section.evia-whats-hot-carousel-section .evia-treatment-card:hover .icon-glow {
    opacity: 1;
}

section.evia-whats-hot-carousel-section .treatment-info {
    margin-top: 40px;
    margin-bottom: 16px;
    flex: 1;
}

section.evia-whats-hot-carousel-section .treatment-title {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary, #2A1B0A);
    margin-bottom: 12px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

section.evia-whats-hot-carousel-section .evia-treatment-card:hover .treatment-title {
    color: var(--hermes-orange, #FF8C00);
}

section.evia-whats-hot-carousel-section .treatment-description {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 13px;
    color: var(--text-secondary, #5D4E37);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

section.evia-whats-hot-carousel-section .treatment-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

section.evia-whats-hot-carousel-section .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

section.evia-whats-hot-carousel-section .stat-value {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--hermes-orange, #FF8C00);
}

section.evia-whats-hot-carousel-section .stat-label {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 11px;
    color: var(--text-muted, #8B7355);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

section.evia-whats-hot-carousel-section .popularity-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

section.evia-whats-hot-carousel-section .popularity-dots {
    display: flex;
    gap: 4px;
}

section.evia-whats-hot-carousel-section .popularity-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.2);
    transition: all 0.3s ease;
}

section.evia-whats-hot-carousel-section .popularity-dots .dot.active {
    background: var(--hermes-orange, #FF8C00);
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
}

section.evia-whats-hot-carousel-section .popularity-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--hermes-orange, #FF8C00);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   ENHANCED LEARN MORE BUTTON
   ======================================== */

section.evia-whats-hot-carousel-section .learn-more-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: 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: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    align-self: stretch;
}

section.evia-whats-hot-carousel-section .learn-more-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-carousel-section .learn-more-btn:hover::before {
    opacity: 1;
}

section.evia-whats-hot-carousel-section .learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 140, 0, 0.4);
}

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

section.evia-whats-hot-carousel-section .learn-more-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

section.evia-whats-hot-carousel-section .learn-more-btn:hover i {
    transform: translateX(4px);
}

section.evia-whats-hot-carousel-section .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.6s ease;
}

section.evia-whats-hot-carousel-section .learn-more-btn:hover .btn-shimmer {
    left: 100%;
}

/* ========================================
   ENHANCED CAROUSEL NAVIGATION
   ======================================== */

section.evia-whats-hot-carousel-section .evia-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(255, 140, 0, 0.1);
    overflow: hidden;
}

section.evia-whats-hot-carousel-section .evia-nav-prev {
    left: -28px;
}

section.evia-whats-hot-carousel-section .evia-nav-next {
    right: -28px;
}

section.evia-whats-hot-carousel-section .evia-carousel-nav:hover {
    background: var(--hermes-orange, #FF8C00);
    border-color: var(--hermes-orange, #FF8C00);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(255, 140, 0, 0.3),
        0 6px 16px rgba(0, 0, 0, 0.1);
}

section.evia-whats-hot-carousel-section .evia-carousel-nav i {
    font-size: 20px;
    color: var(--hermes-orange, #FF8C00);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

section.evia-whats-hot-carousel-section .evia-carousel-nav:hover i {
    color: var(--white, #FFFFFF);
    transform: scale(1.1);
}

section.evia-whats-hot-carousel-section .nav-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 140, 0, 0.3) 0%, 
        transparent 70%
    );
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
}

section.evia-whats-hot-carousel-section .evia-carousel-nav:active .nav-ripple {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   ENHANCED CAROUSEL DOTS
   ======================================== */

section.evia-whats-hot-carousel-section .evia-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

section.evia-whats-hot-carousel-section .evia-carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

section.evia-whats-hot-carousel-section .evia-carousel-dots .dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hermes-orange, #FF8C00);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

section.evia-whats-hot-carousel-section .evia-carousel-dots .dot.active::before {
    transform: scale(1);
}

section.evia-whats-hot-carousel-section .evia-carousel-dots .dot:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

/* ========================================
   PREMIUM CTA SECTION
   ======================================== */

section.evia-whats-hot-carousel-section .evia-premium-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-carousel-section .cta-text {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 1.3rem;
    color: var(--text-secondary, #5D4E37);
    margin-bottom: 32px;
    font-weight: 500;
}

section.evia-whats-hot-carousel-section .evia-book-consultation-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: 18px 36px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    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-carousel-section .evia-book-consultation-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-carousel-section .evia-book-consultation-btn:hover::before {
    opacity: 1;
}

section.evia-whats-hot-carousel-section .evia-book-consultation-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-carousel-section .evia-book-consultation-btn span,
section.evia-whats-hot-carousel-section .evia-book-consultation-btn i {
    position: relative;
    z-index: 2;
}

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

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

/* ========================================
   ENHANCED MODAL STYLES - HERMES LUXURY
   ======================================== */

.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.3) 50%,
        rgba(255, 140, 0, 0.2) 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: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 2px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.evia-modal-overlay .evia-enhanced-modal-icon.featured {
    border-color: var(--hermes-orange, #FF8C00);
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FF7A00 100%);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

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

.evia-modal-overlay .evia-enhanced-modal-icon.featured i {
    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: 700;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    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: 18px;
    color: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

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

.evia-modal-overlay .treatment-details-section {
    padding: 48px 40px 40px;
    background: linear-gradient(135deg, 
        var(--white, #FFFFFF) 0%, 
        rgba(255, 140, 0, 0.01) 100%
    );
}

.evia-modal-overlay .modal-description h4 {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary, #2A1B0A);
    margin: 0 0 20px 0;
}

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

.evia-modal-overlay .benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
}

.evia-modal-overlay .benefit-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 16px;
    color: var(--text-secondary, #5D4E37);
    margin-bottom: 16px;
    line-height: 1.6;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 140, 0, 0.08);
}

.evia-modal-overlay .benefit-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.evia-modal-overlay .benefit-list i {
    font-size: 20px;
    color: var(--hermes-orange, #FF8C00);
    flex-shrink: 0;
    background: rgba(255, 140, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.evia-modal-overlay .detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 140, 0, 0.04);
    border-radius: var(--radius-lg, 1rem);
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

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

.evia-modal-overlay .detail-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 140, 0, 0.15);
    border-radius: var(--radius-md, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.evia-modal-overlay .detail-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.evia-modal-overlay .detail-label {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 13px;
    color: var(--text-muted, #8B7355);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.evia-modal-overlay .detail-value {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 18px;
    color: var(--text-primary, #2A1B0A);
    font-weight: 700;
}

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

.evia-modal-overlay .section-title {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary, #2A1B0A);
    margin: 0 0 32px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

.evia-modal-overlay .other-service-item {
    background: var(--white, #FFFFFF);
    border-radius: var(--radius-lg, 1rem);
    padding: 24px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.evia-modal-overlay .other-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--hermes-orange, #FF8C00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.evia-modal-overlay .other-service-item:hover::before {
    transform: scaleX(1);
}

.evia-modal-overlay .other-service-item:hover {
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.15);
}

.evia-modal-overlay .other-service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.evia-modal-overlay .other-service-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: var(--radius-md, 0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.evia-modal-overlay .other-service-info h5 {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
    margin: 0;
    line-height: 1.3;
}

.evia-modal-overlay .other-service-price {
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 16px;
    color: var(--hermes-orange, #FF8C00);
    font-weight: 700;
    margin: 0;
}

/* Consultation Section */
.evia-modal-overlay .consultation-section {
    padding: 48px 40px;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.05) 0%, 
        rgba(255, 165, 0, 0.03) 100%
    );
}

.evia-modal-overlay .consultation-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.evia-modal-overlay .consultation-info {
    flex: 1;
}

.evia-modal-overlay .consultation-info h4 {
    font-family: var(--font-playfair, 'Playfair Display', serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary, #2A1B0A);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

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

.evia-modal-overlay .consultation-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: 18px 28px;
    font-family: var(--font-inter, 'Inter', sans-serif);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.evia-modal-overlay .consultation-btn:hover {
    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-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-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-btn:hover::before {
    opacity: 1;
}

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

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

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

.evia-modal-overlay .book-this-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 (max-width: 1024px) {
    section.evia-whats-hot-carousel-section .evia-treatment-card {
        flex: 0 0 320px;
        height: 560px; /* Adjusted for tablet */
    }

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

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

    section.evia-whats-hot-carousel-section .evia-treatment-card {
        flex: 0 0 300px;
        height: 540px; /* Adjusted for mobile */
    }

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

    section.evia-whats-hot-carousel-section .evia-carousel-nav {
        width: 48px;
        height: 48px;
    }

    section.evia-whats-hot-carousel-section .evia-nav-prev {
        left: -24px;
    }

    section.evia-whats-hot-carousel-section .evia-nav-next {
        right: -24px;
    }

    /* 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 .treatment-details-section,
    .evia-modal-overlay .other-services-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-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section.evia-whats-hot-carousel-section .evia-treatment-card {
        flex: 0 0 280px;
        height: 520px; /* Adjusted for small mobile */
    }

    section.evia-whats-hot-carousel-section .treatment-image-container {
        height: 160px;
    }

    section.evia-whats-hot-carousel-section .treatment-content {
        top: 160px;
        padding: 20px 16px 16px;
    }

    section.evia-whats-hot-carousel-section .evia-premium-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 .treatment-details-section,
    .evia-modal-overlay .other-services-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
   Unique prefixes: evia-about-, evia-doctor-, evia-cta-
   ======================================== */

.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;
}

/* ========================================
   SECTION HEADER
   ======================================== */

.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;
}

/* ========================================
   DOCTOR SHOWCASE GRID
   ======================================== */

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

/* ========================================
   DOCTOR PROFILE CARD
   ======================================== */

.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;
}

/* ========================================
   DOCTOR IMAGE
   ======================================== */

.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;
}

/* ========================================
   DOCTOR INFO
   ======================================== */

.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);
}

/* ========================================
   DOCTOR DETAILS
   ======================================== */

.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
    );
}

/* ========================================
   PHILOSOPHY & SPECIALIZATIONS
   ======================================== */

.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;
}

/* ========================================
   ELEGANT CTA SECTION
   ======================================== */

.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;
}

/* ========================================
   BACKGROUND ELEMENTS
   ======================================== */

.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%);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@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; 
    }
}

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

@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;
    }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

.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 - MODERN & SLEEK
   Unique prefixes: hermes-results-, result-
   ======================================== */

.hermes-results-showcase {
    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;
}

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

/* ========================================
   SECTION HEADER
   ======================================== */

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

.hermes-results-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);
}

.hermes-results-badge:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 140, 0, 0.35);
}

.results-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: hermesResultsShimmer 4s ease-in-out infinite;
}

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

.hermes-results-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;
}

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

.results-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: hermesResultsGradient 6s ease-in-out infinite;
    font-style: italic;
}

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

/* ========================================
   FILTER NAVIGATION
   ======================================== */

.hermes-filter-nav {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(60px, 8vh, 80px);
}

.filter-nav-wrapper {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 60px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    justify-content: center;
}

.hermes-filter-btn {
    position: relative;
    background: transparent;
    color: #5D4E37;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    white-space: nowrap;
}

.hermes-filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.hermes-filter-btn span {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.hermes-filter-btn:hover,
.hermes-filter-btn.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.25);
}

.hermes-filter-btn:hover::before,
.hermes-filter-btn.active::before {
    opacity: 1;
}

.filter-btn-glow {
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.3) 0%, transparent 70%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.hermes-filter-btn:hover .filter-btn-glow,
.hermes-filter-btn.active .filter-btn-glow {
    opacity: 1;
}

/* ========================================
   RESULTS GRID
   ======================================== */

.hermes-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: clamp(32px, 5vw, 48px);
    margin-bottom: clamp(80px, 12vh, 120px);
}

.hermes-result-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    overflow: hidden;
    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);
    opacity: 1;
    transform: translateY(0);
}

.hermes-result-item: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);
}

/* Hide/Show Animation for Filtering */
.hermes-result-item.hidden {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
}

/* ========================================
   BEFORE/AFTER COMPARISON
   ======================================== */

.result-comparison-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: ew-resize;
}

.result-comparison-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.result-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.result-after {
    clip-path: inset(0 50% 0 0);
}

.result-label {
    position: absolute;
    top: 16px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.before-label {
    left: 16px;
}

.after-label {
    right: 16px;
}

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

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-50%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    border: 3px solid white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(255, 140, 0, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 
        0 12px 35px rgba(255, 140, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.1);
}

.slider-icon {
    color: white;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.slider-handle:hover .slider-icon {
    transform: scale(1.1);
}

/* ========================================
   RESULT INFO
   ======================================== */

.result-info {
    padding: 28px;
}

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

.result-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2A1B0A;
    line-height: 1.3;
    flex: 1;
}

.result-badge {
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    white-space: nowrap;
}

.result-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #5D4E37;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.result-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #5D4E37;
    font-weight: 500;
}

.result-detail i {
    width: 20px;
    height: 20px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8C00;
    font-size: 12px;
    flex-shrink: 0;
}

/* ========================================
   RESULTS CTA
   ======================================== */

.hermes-results-cta {
    display: flex;
    justify-content: center;
}

.results-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);
    max-width: 700px;
    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;
}

.results-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);
}

.results-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;
}

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

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

.results-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 32px;
    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);
}

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

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

.results-cta-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(16px, 2.5vw, 18px);
    color: #5D4E37;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.results-cta-btn {
    position: relative;
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FF7A00 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 20px 40px;
    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 12px 40px rgba(255, 140, 0, 0.3);
    animation: hermesResultsCtaGradient 8s ease-in-out infinite;
    min-width: 250px;
}

.results-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 50px rgba(255, 140, 0, 0.4);
}

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

.cta-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;
}

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

/* ========================================
   BACKGROUND ELEMENTS
   ======================================== */

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

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

.results-orb-1 {
    width: 350px;
    height: 350px;
    top: -175px;
    left: -100px;
}

.results-orb-2 {
    width: 280px;
    height: 280px;
    bottom: -140px;
    right: -80px;
    animation-delay: -10s;
}

.results-orb-3 {
    width: 220px;
    height: 220px;
    top: 60%;
    right: 15%;
    animation-delay: -20s;
}

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

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

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

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

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

@media (max-width: 1200px) {
    .hermes-results-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hermes-results-showcase {
        padding: clamp(60px, 10vh, 80px) 0;
    }
    
    .hermes-results-header {
        margin-bottom: clamp(40px, 6vh, 60px);
    }
    
    .hermes-filter-nav {
        margin-bottom: clamp(40px, 6vh, 60px);
    }
    
    .filter-nav-wrapper {
        padding: 6px;
        gap: 4px;
    }
    
    .hermes-filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .hermes-results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: clamp(60px, 8vh, 80px);
    }
    
    .result-comparison-wrapper {
        height: 280px;
    }
    
    .result-info {
        padding: 20px;
    }
    
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .result-badge {
        align-self: flex-end;
    }
    
    .results-cta-wrapper {
        padding: 40px 24px;
    }
    
    .results-cta-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .results-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hermes-results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hermes-result-item {
        border-radius: 20px;
    }
    
    .result-comparison-wrapper {
        height: 250px;
    }
    
    .slider-handle {
        width: 40px;
        height: 40px;
    }
    
    .slider-icon {
        font-size: 16px;
    }
    
    .result-info {
        padding: 18px;
    }
    
    .result-details {
        flex-direction: column;
        gap: 12px;
    }
    
    .filter-nav-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hermes-filter-btn {
        text-align: center;
    }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

.hermes-filter-btn:focus,
.results-cta-btn:focus {
    outline: 3px solid rgba(255, 140, 0, 0.6);
    outline-offset: 2px;
}

.hermes-result-item,
.hermes-filter-btn,
.results-cta-btn {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hermes-result-item,
    .hermes-filter-btn,
    .results-cta-btn,
    .slider-handle {
        transition-duration: 0.2s;
        animation-duration: 0.2s;
    }
    
    .results-bg-orb {
        animation: none;
    }
}

/* ========================================
   HERMES SOCIAL SHOWCASE SECTION
   Unique prefixes: hermes-social-, social-
   ======================================== */

/* ========================================
   MAIN SECTION CONTAINER
   ======================================== */

.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;
}

/* ========================================
   AMBIENT BACKGROUND EFFECTS
   ======================================== */

.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%);
}

/* ========================================
   CONTAINER AND LAYOUT
   ======================================== */

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

/* ========================================
   SECTION HEADER
   ======================================== */

.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
   ======================================== */

.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 CARDS
   ======================================== */

.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);
}

/* ========================================
   CARD HEADERS
   ======================================== */

.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);
}

/* ========================================
   WIDGET CONTAINERS
   ======================================== */

.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;
}

/* ========================================
   CARD FOOTERS
   ======================================== */

.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
   ======================================== */

.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);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@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); }
}

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

@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;
    }
}

/* ========================================
   LOADING STATE IMPROVEMENTS
   ======================================== */

/* 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;
    }
}

/* Accessibility */
.hermes-back-to-top:focus,
.main-contact-btn:focus,
.contact-link:focus {
    outline: 3px solid rgba(255, 140, 0, 0.6);
    outline-offset: 2px;
}

/* Performance optimizations */
.hermes-back-to-top,
.main-contact-btn,
.contact-option {
    will-change: transform;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hermes-back-to-top,
    .main-contact-btn,
    .contact-option,
    .btn-content,
    .option-content {
        transition-duration: 0.2s;
        animation-duration: 0.2s;
    }
    
    .main-contact-btn {
        animation: none;
    }
}
