/* 
   Aether Living - AI-UX Signature CSS
   Complete Design System v1.5
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@100..900&display=swap');

:root {
    --aether-onyx: #080808;
    --aether-titanium: #D1D1D1;
    --aether-gold: #DBAC2E;
    --aether-glass: rgba(255, 255, 255, 0.03);
    --aether-border: rgba(255, 255, 255, 0.08);
    --aether-aura-1: rgba(219, 172, 46, 0.05);
    --aether-aura-2: rgba(17, 51, 34, 0.08);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fluid: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--aether-onyx);
    color: var(--aether-titanium);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Display Utilities ── */
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* ── Aether Background Auras ── */
.aura-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -10; /* Bottom-most layer */
    background: 
        radial-gradient(circle at 20% 30%, var(--aether-aura-1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, var(--aether-aura-2) 0%, transparent 40%);
    transition: all 1.5s ease;
}

.aura-bg.theme-gold { --aether-aura-1: rgba(219, 172, 46, 0.15); }
.aura-bg.theme-emerald { --aether-aura-1: rgba(17, 51, 34, 0.2); }
.aura-bg.theme-sapphire { --aether-aura-1: rgba(17, 34, 51, 0.2); }

/* ── Custom Aura Cursor ── */
#aura-cursor {
    position: fixed;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(219, 172, 46, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
}

#aura-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--aether-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
}

/* ── Floating Glass Dock (Nav 2.0) ── */
.aether-dock {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 100px;
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: var(--transition-fluid);
}

.dock-links {
    display: flex;
    gap: 20px;
    padding: 0 15px;
}

.dock-item {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition-fluid);
    position: relative;
    padding: 10px 0;
    text-decoration: none;
}

.dock-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--aether-gold);
    transition: var(--transition-fluid);
    transform: translateX(-50%);
}

.dock-item:hover { color: white; }
.dock-item:hover::after, .dock-item.active::after { width: 100%; }

.aether-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
    text-decoration: none;
}

.logo-text { display: flex; flex-direction: column; text-align: left; line-height: 1; }
.logo-text .main { font-family: var(--font-heading); font-size: 13px; color: white; letter-spacing: 2px; }
.logo-text .sub { font-size: 7px; color: var(--aether-gold); letter-spacing: 3px; font-weight: 700; text-transform: uppercase; margin-top: 3px; }

/* ── Mobile Menu Trigger ── */
.aether-menu-trigger {
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0 10px;
}

.aether-menu-trigger .bar { width: 100%; height: 2px; background: white; transition: 0.4s ease; }
.aether-menu-trigger.active .bar:first-child { transform: translateY(4px) rotate(45deg); }
.aether-menu-trigger.active .bar:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ── Immersive Overlay Menu ── */
.aether-overlay-menu {
    position: fixed;
    inset: 0;
    z-index: 1500;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.overlay-bg {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.4);
    backdrop-filter: blur(40px) saturate(200%);
}

.menu-nav { display: flex; flex-direction: column; gap: 20px; z-index: 2; text-align: center; }
.menu-link {
    font-family: var(--font-heading);
    font-size: clamp(32px, 8vw, 64px);
    color: white;
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s;
}

.menu-link:hover { color: var(--aether-gold); }

/* ── Hybrid Cinema Slider ── */
.aether-hero-slider {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    background-size: cover;
    background-position: center;
}

.slide-visual { position: absolute; inset: 0; z-index: 1; }
.slide-visual img { width: 100%; height: 100%; object-fit: cover; }

.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2; /* Ensure it is above visual but below content */
    pointer-events: none;
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10; /* Content firmly on top */
    background: transparent !important;
}

.swiper-slide {
    background: transparent !important; /* Ensure slide has no blocking bg */
}

.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 10vw, 120px);
    line-height: 1.1;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.swiper-slide-active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-title span { font-style: italic; color: var(--aether-gold); display: block; }

/* Nav Buttons */
.aether-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 100;
}

.aether-prev { left: 40px; }
.aether-next { right: 40px; }

/* ── Enhanced About Us Module ── */
.aether-about {
    padding: 200px 40px;
    background: transparent;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 120px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: 1s ease;
}

.about-img-box:hover img {
    filter: brightness(1);
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--aether-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid var(--aether-onyx);
    z-index: 2;
}

.about-badge span {
    color: var(--aether-onyx);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.gold-dot {
    width: 6px;
    height: 6px;
    background: var(--aether-gold);
    border-radius: 50%;
}

.about-headline {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.1;
    color: white;
    margin-bottom: 50px;
    font-weight: 400;
}

.gold-italic {
    color: var(--aether-gold);
    font-style: italic;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

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

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.founder-info .name {
    font-family: var(--font-heading);
    font-size: 24px;
    color: white;
}

.founder-info .role {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aether-gold);
}

/* ── ULTRA LUXURY ROOM CAROUSEL ── */
.aether-room-slider-section {
    padding: 60px 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.rooms-header-inline {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.rooms-headline {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 64px);
    color: white;
    font-weight: 300;
    line-height: 1.1;
    margin-top: 10px;
}

.slider-controls {
    display: flex;
    gap: 15px;
}

.room-prev, .room-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.room-prev:hover, .room-next:hover {
    background: var(--aether-gold);
    color: #000;
    border-color: var(--aether-gold);
}

.room-swiper {
    width: 100%;
    padding: 0 40px 40px 40px; 
}

.room-slide {
    width: 380px; 
    max-width: 85vw;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9; 
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s;
    opacity: 0.35;
    transform: scale(0.85); 
}

.room-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.room-slide-img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.room-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.0) 65%);
    pointer-events: none;
}

.room-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px; 
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px; 
    transform: translateY(10px);
    opacity: 0;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.room-slide.swiper-slide-active .room-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.rs-meta {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--aether-gold);
    text-transform: uppercase;
}

.rs-title {
    font-family: var(--font-heading);
    font-size: 26px;
    color: white;
    font-weight: 400;
}

.rs-features {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.rs-link {
    color: white;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--aether-gold);
    padding-bottom: 4px;
    align-self: flex-start;
}
.rs-link i { font-size: 9px; transition: 0.3s; }
.rs-link:hover { color: var(--aether-gold); }
.rs-link:hover i { transform: translateX(5px); }

.rs-meta {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--aether-gold);
    text-transform: uppercase;
}

.rs-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: white;
    font-weight: 400;
}

.rs-features {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.rs-link {
    color: white;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--aether-gold);
    padding-bottom: 4px;
    align-self: flex-start;
}
.rs-link i { font-size: 9px; transition: 0.3s; }
.rs-link:hover { color: var(--aether-gold); }
.rs-link:hover i { transform: translateX(5px); }

/* Buttons */
.btn-aether {
    padding: 15px 35px;
    border: 1px solid var(--aether-gold);
    color: var(--aether-gold);
    border-radius: 100px;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ── AETHER FAQ (SSS) ── */
.aether-faq-section {
    padding: 120px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-headline {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 56px);
    color: white;
    font-weight: 300;
    margin-top: 10px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding: 30px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--aether-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-icon::before { top: 11px; left: 0; width: 24px; height: 2px; }
.faq-icon::after { top: 0; left: 11px; width: 2px; height: 24px; }

.faq-item.active .faq-icon::after { transform: rotate(90deg) scaleY(0); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding-bottom: 30px;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.8;
}

/* ── AETHER TESTIMONIALS ── */
.aether-testimonials-section {
    padding: 120px 0 150px;
    position: relative;
    overflow: hidden;
}

.testi-header {
    text-align: center;
    margin-bottom: 60px;
}

.testi-headline {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 64px);
    color: white;
    font-weight: 300;
    margin-top: 10px;
}

.testi-swiper {
    padding-bottom: 60px;
}

.testi-swiper .swiper-wrapper {
    transition-timing-function: linear !important; /* Seamless continuous movement */
}

.testi-swiper .swiper-slide {
    height: auto; /* Required for uniform card heights */
}

.testi-card {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%; /* For uniform height cards */
    display: flex;
    flex-direction: column;
}

.testi-card .testi-text {
    flex-grow: 1; /* Pushes author to the bottom */
}

.testi-stars {
    color: var(--aether-gold);
    font-size: 11px;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 4px;
}

.testi-text {
    font-family: var(--font-main);
    font-size: 15px; /* Comfortable reading size */
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.testi-author {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testi-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    opacity: 1;
    border-radius: 50%;
    transition: 0.4s;
    cursor: pointer;
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--aether-gold);
    transform: scale(1.5);
}

/* ── AETHER WHY US (FARKIMIZ) ── */
.aether-why-section {
    padding: 150px 40px;
    background: var(--aether-onyx);
    position: relative;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-headline {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 56px);
    color: white;
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 20px;
}

.why-desc {
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: background 0.4s, border-color 0.4s;
}

.why-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}

.why-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: background 0.4s, transform 0.4s;
}

.why-icon {
    font-size: 28px;
    color: var(--aether-gold);
    transition: color 0.4s;
}

.why-card:hover .why-icon-wrapper {
    background: var(--aether-gold);
    transform: scale(1.1);
}

.why-card:hover .why-icon {
    color: var(--aether-onyx);
}

.why-title {
    font-family: var(--font-main);
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
    font-weight: 400;
}

.why-card p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.8;
}

/* ── AETHER BOOKING FORM ── */
.aether-booking-section {
    padding: 100px 40px 150px;
    position: relative;
    background: linear-gradient(180deg, var(--aether-onyx) 0%, rgba(12,12,12,1) 100%);
}

.booking-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.booking-content {
    max-width: 500px;
}

.booking-headline {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 64px);
    color: white;
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.booking-desc {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 1.8;
}

.booking-form-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

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

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

.aether-form .form-group.full-width {
    margin-bottom: 30px;
}

.aether-form label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.aether-form input,
.aether-form textarea {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 18px 20px;
    color: white;
    font-size: 15px;
    font-family: var(--font-main);
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.aether-form input:focus,
.aether-form textarea:focus {
    border-color: var(--aether-gold);
    background: rgba(0,0,0,0.8);
}

.aether-form input::placeholder,
.aether-form textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-submit {
    width: 100%;
    cursor: pointer;
    background: white;
    color: black;
    border: none;
    font-weight: 600;
    justify-content: center;
    transition: 0.4s;
}

.form-submit:hover {
    background: var(--aether-gold);
    color: black;
}

/* ── Mobile Logic ── */
@media (max-width: 1024px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }

    .aether-hero-slider { height: 85vh; }
    
    .aether-dock {
        bottom: auto;
        top: 20px;
        width: 94%;
        justify-content: space-between;
        background: rgba(12, 12, 12, 0.6);
    }

    .logo-text .main { font-size: 10px; }
    .logo-text .sub { display: none; }

    .slide-title { font-size: 34px; }
    .aether-nav-btn { width: 44px; height: 44px; top: auto; bottom: 80px; }
    .aether-prev { left: 20px; }
    .aether-next { right: 20px; }

    .aether-room-slider-section { padding: 40px 0; }
    .rooms-header-inline { flex-direction: column; align-items: flex-start; gap: 20px; padding: 0 20px;}
    .room-slide { width: 88vw; aspect-ratio: 4/5; }
    .room-swiper { padding: 0 10px 40px 10px; }
    .room-slide-content { padding: 20px; }
    .rs-title { font-size: 24px; }
    .slider-controls { margin-top: 10px; }
    
    .aether-about { padding: 80px 20px; }
    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .about-img-box { aspect-ratio: 1/1; }
    .about-badge { width: 90px; height: 90px; bottom: -20px; right: -20px; }
    .about-headline { font-size: 38px; }

    #hero-player { 
        width: 400%; 
        left: 50%; /* Restored to center correctly with transform */
        min-height: 100vh;
    }

    .aether-faq-section { padding: 80px 20px; }
    .faq-headline { font-size: 38px; }

    .aether-why-section { padding: 80px 20px; }
    .why-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-card { padding: 30px 20px; }
    
    .aether-booking-section { padding: 60px 20px 100px; }
    .booking-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .booking-headline { font-size: 36px; }
    .booking-form-box { padding: 30px 20px; }
    .aether-form .form-row { grid-template-columns: 1fr; gap: 20px; }
    .aether-form .form-group { width: 100% !important; }
    /* Footer Mobile */
    .footer-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 50px !important;
    }

    /* Villas Mobile */
    .villa-item {
        grid-template-columns: 1fr !important;
    }
    .vi-img { order: -1; height: 350px !important; }
    .vi-content { padding: 40px 20px !important; }
    .vi-title { font-size: 38px !important; }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr !important;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* ── AETHER VILLAS PAGE ── */
.villas-hero {
    padding: 180px 40px 100px;
    background: transparent;
}

.page-hero-immersive {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 40px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.page-hero-immersive::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.page-hero-immersive .container {
    position: relative;
    z-index: 2;
}

.villa-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 150px 40px 150px;
}

.villa-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    overflow: hidden;
    min-height: 600px;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.villa-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.vi-img {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.vi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.villa-item:hover .vi-img img {
    transform: scale(1.08);
}

.vi-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vi-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--aether-gold);
    display: block;
    margin-bottom: 25px;
}

.vi-title {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1.1;
    color: white;
    margin-bottom: 30px;
}

.vi-desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
    max-width: 500px;
}

.vi-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.spec-badge {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-badge i {
    color: var(--aether-gold);
}

.vi-footer {
    display: flex;
    align-items: center;
    gap: 30px;
}

.vi-link {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid var(--aether-gold);
    padding-bottom: 5px;
    transition: 0.3s;
}

.vi-link:hover {
    color: var(--aether-gold);
}

/* ── AETHER FOOTER ── */
.aether-footer {
    padding: 120px 40px 60px;
    background: #080808;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-aura {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 30px;
}

.footer-brand .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo-text .main {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 4px;
    color: white;
}

.footer-brand .logo-text .sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--aether-gold);
}

.footer-brand .site-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    max-width: 350px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: var(--font-main);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--aether-gold);
    transform: translateX(5px);
}

.footer-contact-item {
    margin-bottom: 25px;
}

.footer-contact-item span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 8px;
}

.footer-contact-item p, .footer-contact-item a {
    font-size: 15px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact-item a:hover {
    color: var(--aether-gold);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: 0.4s;
}

.social-links a:hover {
    background: var(--aether-gold);
    color: var(--aether-onyx);
    border-color: var(--aether-gold);
    transform: translateY(-5px);
}

/* ── AETHER VILLA DETAIL PAGE ── */
.vd-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.vd-hero-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.vd-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.vd-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #080808 0%, rgba(8, 8, 8, 0.4) 40%, transparent 100%);
    z-index: 2;
}

.vd-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    margin-top: 100px;
}

.vd-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 130px);
    line-height: 0.9;
    color: white;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.vd-meta-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 40px 60px;
    display: inline-flex;
    gap: 60px;
    margin-top: 40px;
}

.vd-meta-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vd-meta-item span {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--aether-gold);
    text-transform: uppercase;
    font-weight: 500;
}

.vd-meta-item p {
    font-size: 22px;
    color: white;
    font-weight: 400;
    font-family: var(--font-main);
}

.vd-main-layout {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: 100px;
}

.vd-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: white;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.vd-section-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.vd-text {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
}

.vd-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vd-amenity {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.vd-amenity i {
    color: var(--aether-gold);
    font-size: 18px;
}

.vd-sidebar {
    position: sticky;
    top: 150px;
    align-self: flex-start;
}

.vd-booking-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 50px 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
}

.vd-price-box {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vd-price-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vd-price-val {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--aether-gold);
    margin-top: 10px;
}

/* Mobile Detail Adjustment */
@media (max-width: 1024px) {
    .vd-main-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 20px;
    }
    .vd-hero { height: 70vh; padding: 40px 20px; }
    .vd-meta-grid { flex-wrap: wrap; gap: 20px; }
    .vd-amenities-grid { grid-template-columns: 1fr 1fr; }
    .vd-sidebar { position: static; }
}

/* ── AETHER GALLERY SYSTEM ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 30px;
    padding: 120px 40px;
}

.gallery-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

.gallery-caption {
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption span {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--aether-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.gallery-caption h4 {
    color: white;
    font-size: 24px;
    font-family: var(--font-heading);
}

/* Gallery Grid Logic (Editorial Layout) */
.gi-large { grid-column: span 8; grid-row: span 3; }
.gi-tall { grid-column: span 4; grid-row: span 3; }
.gi-square { grid-column: span 4; grid-row: span 2; }
.gi-wide { grid-column: span 8; grid-row: span 2; }

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 400px;
        padding: 60px 20px;
    }
    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* ── AETHER BLOG CARDS ── */
.aether-blog-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
}

.aether-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.blog-card-img-wrap {
    display: block;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.aether-blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.07);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.blog-card-body {
    padding: 32px;
}

.blog-date {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aether-gold);
    display: block;
    margin-bottom: 14px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-card-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover { color: var(--aether-gold); }

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aether-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(219,172,46,0.3);
    padding-bottom: 4px;
    transition: gap 0.3s, border-color 0.3s;
}

/* ── AETHER BLOG DETAIL ── */
.bd-main-content {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
}

.bd-featured-image-wrap {
    width: 100%;
    margin-bottom: 60px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.bd-featured-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.5s ease;
}

.bd-featured-image-wrap:hover .bd-featured-img {
    transform: scale(1.05);
}

.bd-img-meta {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.bd-meta-line {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
}

.bd-dots {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--aether-gold);
}

.bd-text-wrap p {
    margin-bottom: 35px;
}

.bd-text-wrap p:first-of-type::first-letter {
    font-family: var(--font-heading);
    font-size: 84px;
    float: left;
    margin-right: 15px;
    line-height: 0.8;
    color: var(--aether-gold);
    margin-top: 10px;
}

.bd-sticky-sidebar {
    position: sticky;
    top: 120px;
}

.bd-side-title {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.bd-recent-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bd-recent-item {
    display: flex;
    gap: 20px;
    text-decoration: none;
    align-items: center;
}

.recent-img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.bd-recent-item:hover .recent-img-wrap img {
    transform: scale(1.1);
}

.recent-content span {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--aether-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.recent-content h4 {
    color: white;
    font-size: 15px;
    line-height: 1.4;
    font-family: var(--font-heading);
    transition: color 0.3s;
}

.bd-recent-item:hover .recent-content h4 {
    color: var(--aether-gold);
}

/* ── AETHER CONTACT v4 (Splitscreen Experience) ── */
.ac-v4-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.ac-v4-visual {
    flex: 1.1;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.ac-v4-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8,8,8,0.4), rgba(8,8,8,0.7));
}

.ac-v4-content {
    flex: 0.9;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    z-index: 10;
}

.ac-v4-inner {
    width: 100%;
    max-width: 550px;
}

.ac-v4-heading {
    margin-bottom: 60px;
}

.ac-v4-heading span {
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--aether-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.ac-v4-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
    color: white;
}

/* v4 Minimal Form */
.ac-v4-form {
    margin-bottom: 60px;
}

.ac-v4-control {
    margin-bottom: 40px;
    position: relative;
}

.ac-v4-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    font-size: 16px;
    color: white;
    outline: none;
    transition: 0.4s;
}

.ac-v4-input:focus {
    border-bottom-color: var(--aether-gold);
}

.ac-v4-label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    pointer-events: none;
    transition: 0.4s;
}

.ac-v4-input:focus + .ac-v4-label,
.ac-v4-input:not(:placeholder-shown) + .ac-v4-label {
    top: -15px;
    font-size: 10px;
    color: var(--aether-gold);
    letter-spacing: 2px;
}

/* Side Info Bar (Under Form) */
.ac-v4-info-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ac-v4-info-box span {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.ac-v4-info-box p, .ac-v4-info-box a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
}

/* ── AETHER BLOG DETAIL (BD) ── */
.bd-layout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    padding: 100px 40px;
}

/* ── AETHER ABOUT DETAIL (ABD) ── */
.abd-section {
    padding: 120px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.abd-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.abd-img-box {
    position: relative;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
}

.abd-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abd-why-section {
    padding: 150px 40px;
    background: rgba(255,255,255,0.01);
}

.abd-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1024px) {
    /* Blog Detail Mobile */
    .bd-layout-grid { grid-template-columns: 1fr; gap: 60px; padding: 60px 20px; }
    .bd-featured-image-wrap { margin-bottom: 40px; }
    .bd-img-meta { bottom: 20px; left: 20px; padding: 8px 15px; }
    .bd-img-meta span { font-size: 9px; }
    .bd-text-wrap p:first-of-type::first-letter { font-size: 60px; }
    .bd-sidebar { margin-top: 40px; }

    .vd-hero { height: auto; min-height: 100vh; padding: 140px 20px 60px; align-items: flex-start; }
    .vd-hero-content { margin-top: 0; }
    .vd-title { font-size: 38px; line-height: 1.1; letter-spacing: -1px; margin-bottom: 30px; }
    .vd-meta-card { flex-direction: column; padding: 25px; gap: 20px; border-radius: 20px; width: 100%; }
    .vd-meta-item p { font-size: 18px; }
    .vd-meta-item { gap: 5px; }
    
    .abd-grid { grid-template-columns: 1fr; gap: 40px; }
    .abd-img-box { height: 400px; }
    .abd-why-grid { grid-template-columns: 1fr; gap: 30px; }
    .abd-section { padding: 80px 20px; }
    .abd-why-section { padding: 80px 20px; }
    
    .ac-v4-wrapper { flex-direction: column; }
    .ac-v4-visual { height: 40vh; flex: none; }
    .ac-v4-content { padding: 80px 40px; }
}

@media (max-width: 768px) {
    .ac-v4-info-bar { grid-template-columns: 1fr; }
}

/* Container Refinement */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 1200px) { .container { max-width: 1100px; } }
@media (min-width: 1400px) { .container { max-width: 1200px; } }

.section {
    padding: 80px 30px;
}

@media (max-width: 768px) {
    .section { padding: 60px 15px; }
    .container { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 1200px) {
    .ac-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ── MOBILE FIXED CONTACT BUTTONS ── */
.mobile-fixed-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.mfc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.mfc-call {
    background: rgba(212, 175, 55, 0.9); /* Aether Gold */
    color: #000;
}

.mfc-whatsapp {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.3);
}

.mfc-btn i {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .mobile-fixed-contact {
        display: flex;
    }
}
