/*
Theme Name: Aura Skin by Jeon
Theme URI: https://www.auraskinbyjeon.com/
Author: Antigravity
Description: A premium, modern, responsive WordPress theme for Aura Skin Cosmetic Center in Dubai.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: auraskin
*/

/* ==========================================================================
   DESIGN TOKENS & FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&family=Pinyon+Script&family=Italianno&display=swap');

:root {
    --primary: #013A2C;
    --secondary: #C9A24B;
    --accent: #E2B347;
    --text: #39443E;
    --muted: #6F6B5F;
    --surface: #FAF8F2;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--surface);
    color: var(--text);
    font-family: var(--font-sans);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

/* Typography fallbacks for standard WordPress pages */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--primary);
    margin-top: 0;
}

p {
    line-height: 1.85;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

/* ==========================================================================
   ANIMATIONS & LUXURY UI TOUCHES
   ========================================================================== */
@keyframes auraFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

.aura-float-animation {
    animation: auraFloat 7s ease-in-out infinite;
}

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

.mirror-sheen-pill {
    position: relative !important;
    overflow: hidden !important;
}

.mirror-sheen-pill::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -150% !important;
    width: 60% !important;
    height: 100% !important;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    ) !important;
    transform: skewX(-25deg) !important;
    pointer-events: none !important;
    animation: mirrorSheenPill 3s infinite cubic-bezier(0.19, 1, 0.22, 1) !important;
}

/* Scroll Reveal Scaling & Bezier Curve */
[data-anim] {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Ken Burns Pan & Zoom for Hero Background */
@keyframes kenBurns {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
section[data-screen-label="Hero"] > img, 
section[data-el-section="Hero"] > img {
    animation: kenBurns 24s ease-in-out infinite !important;
    transition: transform 24s ease-in-out;
}

/* Premium Mirror (Shine Sweep) Hover Effect on All Buttons */
.hero-btn, 
.book-now-btn, 
.mobile-book-btn,
.home-submit-btn-animated,
.home-wa-btn-animated,
#submit-btn,
#home-submit-btn,
button[type="submit"],
a[style*="border-radius: 999px"],
a[style*="border-radius:999px"],
a[style*="border-radius: 99px"],
a[style*="border-radius:99px"],
a[style*="background: #E2B347"],
a[style*="background: #013A2C"],
a[style*="background: rgb(1, 58, 44)"],
a[style*="background: rgb(226, 179, 71)"] {
    position: relative !important;
    overflow: hidden !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.hero-btn::after, 
.book-now-btn::after, 
.mobile-book-btn::after,
.home-submit-btn-animated::after,
.home-wa-btn-animated::after,
#submit-btn::after,
#home-submit-btn::after,
button[type="submit"]::after,
a[style*="border-radius: 999px"]::after,
a[style*="border-radius:999px"]::after,
a[style*="border-radius: 99px"]::after,
a[style*="border-radius:99px"]::after,
a[style*="background: #E2B347"]::after,
a[style*="background: #013A2C"]::after,
a[style*="background: rgb(1, 58, 44)"]::after,
a[style*="background: rgb(226, 179, 71)"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
}

.hero-btn:hover::after, 
.book-now-btn:hover::after, 
.mobile-book-btn:hover::after,
.home-submit-btn-animated:hover::after,
.home-wa-btn-animated:hover::after,
#submit-btn:hover::after,
#home-submit-btn:hover::after,
button[type="submit"]:hover::after,
a[style*="border-radius: 999px"]:hover::after,
a[style*="border-radius:999px"]:hover::after,
a[style*="border-radius: 99px"]:hover::after,
a[style*="border-radius:99px"]:hover::after,
a[style*="background: #E2B347"]:hover::after,
a[style*="background: #013A2C"]:hover::after,
a[style*="background: rgb(1, 58, 44)"]:hover::after,
a[style*="background: rgb(226, 179, 71)"]:hover::after {
    animation: shineSweep 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

/* Override all hover shadows on buttons */
.hero-btn:hover, 
.book-now-btn:hover, 
.mobile-book-btn:hover,
.home-submit-btn-animated:hover,
.home-wa-btn-animated:hover,
#submit-btn:hover,
#home-submit-btn:hover,
button[type="submit"]:hover,
a[style*="border-radius: 999px"]:hover,
a[style*="border-radius:999px"]:hover,
a[style*="border-radius: 99px"]:hover,
a[style*="border-radius:99px"]:hover,
a[style*="background: #E2B347"]:hover,
a[style*="background: #013A2C"]:hover,
a[style*="background: rgb(1, 58, 44)"]:hover,
a[style*="background: rgb(226, 179, 71)"]:hover {
    box-shadow: none !important;
}

@keyframes shineSweep {
    0% { left: -150%; }
    100% { left: 150%; }
}

/* Premium Card Hover Scaling and Mirror Shine Effect */
.treatment-card, .booking-form-card, .cta-card, .find-us-card, .premium-glass-card, .blog-post-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.treatment-card, .booking-form-card, .cta-card, .find-us-card, .premium-glass-card, .blog-post-card {
    position: relative !important;
    overflow: hidden !important;
}
.treatment-card::after, .booking-form-card::after, .cta-card::after, .find-us-card::after, .premium-glass-card::after, .blog-post-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
}
.treatment-card:hover::after, .booking-form-card:hover::after, .cta-card:hover::after, .find-us-card:hover::after, .premium-glass-card:hover::after, .blog-post-card:hover::after {
    animation: shineSweepCard 1.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.treatment-card:hover, .booking-form-card:hover, .cta-card:hover, .find-us-card:hover, .premium-glass-card:hover, .blog-post-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 48px rgba(1, 58, 44, 0.09) !important;
}
.treatment-card:hover {
    border-color: rgba(226, 179, 71, 0.45) !important;
}
.treatment-card-bg-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}
.treatment-card:hover .treatment-card-bg-hover {
    opacity: 1 !important;
}
.treatment-card * {
    transition: color 0.4s ease, border-color 0.4s ease;
}
.treatment-card:hover h3,
.treatment-card:hover .treatment-title-link,
.treatment-card:hover p {
    color: #FFFFFF !important;
}
.treatment-card:hover span:first-of-type {
    color: rgba(255, 255, 255, 0.75) !important;
}
.treatment-card:hover span:last-of-type {
    color: #E2B347 !important;
}
.treatment-card:hover a {
    color: #E2B347 !important;
}
@keyframes shineSweepCard {
    0% { left: -150%; }
    100% { left: 150%; }
}

/* Ambient Liquid Glow Auras in the background */
/* Animated Moving Background Gradient */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animated-bg {
    background: linear-gradient(135deg, #FAF8F2, #F4EFEB, #FAF8F2, #EFEAE4) !important;
    background-size: 300% 300% !important;
    animation: gradientMove 14s ease infinite !important;
}

.aura-glow-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.aura-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18; /* Higher visibility for light backgrounds */
    pointer-events: none;
}

.aura-glow-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(201, 162, 75, 0.9) 0%, rgba(201, 162, 75, 0) 70%);
    top: -100px;
    left: -120px;
    animation: morphGlow1 9.6s ease-in-out infinite;
}

.aura-glow-2 {
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(1, 58, 44, 0.7) 0%, rgba(1, 58, 44, 0) 70%);
    bottom: -150px;
    right: -120px;
    animation: morphGlow2 12.8s ease-in-out infinite;
}

.aura-glow-3 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(201, 162, 75, 0.8) 0%, rgba(201, 162, 75, 0) 70%);
    top: 35%;
    right: 5%;
    animation: morphGlow1 11.2s ease-in-out infinite reverse;
}

@keyframes morphGlow1 {
    0%, 100% { transform: translate(0px, 0px) scale(1) rotate(0deg); }
    33% { transform: translate(120px, -90px) scale(1.35) rotate(120deg); }
    66% { transform: translate(-70px, 70px) scale(0.8) rotate(240deg); }
}

@keyframes morphGlow2 {
    0%, 100% { transform: translate(0px, 0px) scale(1) rotate(0deg); }
    50% { transform: translate(-100px, 100px) scale(1.42) rotate(180deg); }
}

/* ==========================================================================
   RESPONSIVE GLASS NAVIGATION & MOBILE MENU
   ========================================================================== */
/* Mobile Menu Background Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 58, 44, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
}

.mobile-menu-toggle:focus {
    outline: none !important;
    box-shadow: none !important;
}

.mobile-menu-toggle span {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.mobile-menu-toggle span:nth-child(2) {
    transform: translateY(0);
}

.mobile-menu-toggle span:nth-child(3) {
    transform: translateY(7px);
}

/* Mobile Menu Open State */
.mobile-menu-toggle.active span {
    background-color: #013A2C !important;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: var(--text);
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
    color: var(--secondary);
}

.main-nav .current-menu-item > a {
    font-weight: 500;
}



/* Responsive Header & Menu */
@media (max-width: 900px) {
    header {
        position: fixed !important;
        top: 12px !important;
        left: 12px !important;
        right: 12px !important;
        transform: none !important;
        width: auto !important;
        max-width: 1160px !important;
        height: 56px !important; /* Elegant balanced height */
        border-radius: 999px !important;
        padding: 0 14px 0 18px !important; /* Vertically centered padding */
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        background: rgba(250, 248, 242, 0.72) !important;
        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
        border: 1px solid rgba(201, 162, 75, 0.35) !important;
        box-shadow: 0 8px 32px rgba(1, 58, 44, 0.10) !important;
    }

    header a img {
        width: 44px !important;
        height: 44px !important;
    }

    header a span span:nth-child(1) {
        font-size: 16px !important;
    }

    header a span span:nth-child(2) {
        font-size: 8.5px !important;
        letter-spacing: 0.28em !important;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 36px !important;
        height: 36px !important;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; /* Full screen overlay */
        height: 100vh;
        background: rgba(255, 255, 255, 0.28) !important; /* Luminous light liquid glass background */
        backdrop-filter: blur(32px) saturate(200%);
        -webkit-backdrop-filter: blur(32px) saturate(200%);
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centered vertically */
        align-items: center;
        gap: 32px;
        z-index: 99; /* Sits directly below header (100) */
        visibility: hidden;
        transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
        padding: 100px 24px 40px 24px;
        box-sizing: border-box;
    }

    .main-nav.active {
        right: 0;
        visibility: visible;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .main-nav.active ul li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.active ul li:nth-child(3) { transition-delay: 0.20s; }
    .main-nav.active ul li:nth-child(4) { transition-delay: 0.25s; }

    .main-nav ul li a {
        font-family: var(--font-serif) !important;
        font-size: 24px !important;
        letter-spacing: 0.1em !important;
        color: #013A2C !important; /* High-contrast primary dark green */
        display: block;
        padding: 12px 0;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        border-bottom: 1px solid rgba(1, 58, 44, 0.12) !important; /* Subtle dark green divider */
        text-transform: uppercase;
        font-weight: 500 !important;
        transition: color 0.3s ease, border-color 0.3s ease !important;
    }

    .main-nav ul li a:hover {
        color: #C9A24B !important;
        border-bottom-color: rgba(201, 162, 75, 0.4) !important;
    }

    header .book-now-btn {
        display: none !important; /* Hide button on mobile inside inline header */
    }

    .main-nav .mobile-book-btn {
        display: inline-flex !important;
        margin: 20px auto 0 auto !important;
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center;
        box-sizing: border-box;
        background: #013A2C !important; /* Premium dark green button */
        color: #FAF8F2 !important; /* Cream text */
        padding: 16px 36px !important;
        border-radius: 999px !important;
        font-size: 13px !important;
        letter-spacing: 0.16em !important;
        text-transform: uppercase !important;
        font-weight: 600 !important;
        box-shadow: 0 8px 24px rgba(1, 58, 44, 0.18) !important;
        border: none !important;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, background-color 0.3s ease, color 0.3s ease !important;
    }

    .main-nav.active .mobile-book-btn {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVE LAYOUT & SPACING ENHANCEMENTS
   ========================================================================== */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }

    /* Responsive Spacing & Padding matching 24px margins */
    section,
    [data-el-section] {
        padding: 60px 24px !important;
        box-sizing: border-box !important;
    }

    /* Header floating layout alignment with margins */
    header[data-el-section="Header — Glass Nav"] {
        left: 24px !important;
        right: 24px !important;
        width: auto !important;
        transform: none !important;
    }

    /* Page Hero paddings under fixed header */
    section[data-screen-label="Hero"], 
    #top {
        padding: 120px 24px 40px 24px !important;
        min-height: 100vh !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;
    }

    section[data-screen-label="About Hero"],
    section[data-screen-label="Treatments Hero"],
    section[data-screen-label="Contact Hero"] {
        padding: 140px 24px 40px 24px !important;
    }

    /* Hero section layouts */
    .hero-content-container {
        width: 100% !important;
        padding: 0 0 20px 0 !important;
        gap: 24px !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    #top div[data-anim="fade-up"] {
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }

    #top span[style*="0.42em"] {
        letter-spacing: 0.24em !important;
        margin-bottom: 16px !important;
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }

    #top h1 {
        font-size: clamp(34px, 7.8vw, 46px) !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }

    #top p {
        font-size: clamp(26px, 5.5vw, 32px) !important;
        text-align: center !important;
        margin-bottom: 24px !important;
     }

    #top div[style*="display: flex; gap: 40px"] {
        justify-content: center !important;
    }

    .hero-glass-card {
        padding: 30px 24px !important;
        border-radius: 24px !important;
        text-align: center !important;
    }

    .hero-glass-card h1 {
        font-size: clamp(32px, 7.5vw, 44px) !important;
        line-height: 1.12 !important;
        margin-bottom: 12px !important;
    }

    .hero-glass-card p {
        font-size: 16px !important;
        letter-spacing: 0.16em !important;
        margin-bottom: 24px !important;
    }

    .hero-buttons-container {
        flex-direction: row !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .hero-btn {
        flex: 1 !important;
        width: auto !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 14px 16px !important;
        font-size: 11px !important;
        letter-spacing: 0.1em !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
    }

    #top .find-us-card {
        display: none !important;
    }

    .find-us-card {
        width: 100% !important;
        padding: 18px 20px !important;
        border-radius: 18px !important;
        text-align: center !important;
        align-items: center !important;
        animation: none !important; /* Prevent visual collisions on scroll */
        margin-bottom: 16px !important;
    }

    /* Normalize direct child content containers to keep left & right margins consistent */
    section > div:not(.aura-glow-container):not(.mesh-gradient-container),
    [data-el-section] > div:not(.aura-glow-container):not(.mesh-gradient-container),
    section > article,
    [data-el-section] > article {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }

    /* Column layout wrapped grids gap optimization & stacking */
    div[style*="display: flex; flex-wrap: wrap;"],
    .contact-columns-wrapper {
        gap: 32px !important;
        justify-content: center !important;
    }

    div[style*="display: flex; flex-wrap: wrap;"] > div,
    div[style*="display: flex; flex-wrap: wrap;"] > form,
    div[style*="display: flex; flex-wrap: wrap;"] > article,
    .contact-info-column {
        min-width: 0 !important;
        width: 100% !important;
        flex: 1 1 100% !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .contact-info-card {
        padding: 30px 24px !important;
        border-radius: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Floating badges alignment adjustments for mobile to prevent viewport overflow */
    #about div[data-anim-delay="150"] > div[style*="position: absolute"],
    section[data-el-section="Our Story"] div[style*="position: absolute"] {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: 20px auto 0 auto !important;
        max-width: 100% !important;
        width: fit-content !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }

    /* Treatments grid cards details */
    .treatments-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .treatment-article-card {
        padding: 24px 20px !important;
        border-radius: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .treatment-card-content {
        flex: 1 1 auto !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .treatment-card-image-wrapper {
        flex: 1 1 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    /* General responsive forms */
    .booking-form-card {
        padding: 30px 24px !important;
        border-radius: 24px !important;
    }

    .booking-form-card input,
    .booking-form-card select,
    .booking-form-card textarea {
        font-size: 16px !important; /* Disables iOS Safari auto-zoom */
        padding: 14px 16px !important;
        border-radius: 12px !important;
    }

    .booking-form-card button[type="submit"] {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 15px 30px !important;
    }

    /* Responsive CTA strip */
    .cta-card {
        padding: 30px 24px !important;
        border-radius: 24px !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 18px !important;
    }

    .cta-card h2 {
        text-align: center !important;
        font-size: clamp(24px, 4vw, 32px) !important;
        width: 100% !important;
    }

    .cta-card a {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* Center Footer on Mobile */
    footer > div {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
    }

    /* Floating WhatsApp FAB - compact pulsing design */
    a.whatsapp-float,
    a[href*="wa.me"][style*="position: fixed"] {
        right: 20px !important;
        bottom: 20px !important;
        width: 54px !important;
        height: 54px !important;
        padding: 0 !important;
        justify-content: center !important;
        align-items: center !important;
        border-radius: 50% !important;
        box-shadow: 0 8px 24px rgba(1, 58, 44, 0.35) !important;
        background: #013A2C !important; /* Solid brand dark green background */
        border: 1px solid rgba(226, 179, 71, 0.4) !important; /* Solid premium gold border */
        font-size: 0 !important; /* Hide text label on mobile */
        color: transparent !important;
        z-index: 99 !important;
        animation: floatPulse 2s infinite !important;
        display: flex !important;
        transition: transform 0.3s ease, background-color 0.3s ease !important;
    }

    a.whatsapp-float:active,
    a[href*="wa.me"][style*="position: fixed"]:active {
        transform: scale(0.9) !important;
        background: #02513e !important;
    }

    a[href*="wa.me"][style*="position: fixed"] span,
    a[href*="wa.me"][style*="position: fixed"] svg {
        display: none !important; /* Hide dot and desktop inline svg */
    }

    a[href*="wa.me"][style*="position: fixed"]::after {
        content: "";
        display: block;
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23F4E9CF' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    @keyframes floatPulse {
        0% { box-shadow: 0 0 0 0 rgba(1, 58, 44, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(1, 58, 44, 0); }
        100% { box-shadow: 0 0 0 0 rgba(1, 58, 44, 0); }
    }
}


/* Default styling for content pages and blogs */
.wp-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 120px 24px;
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 162, 75, 0.28);
    box-shadow: 0 12px 40px rgba(1, 58, 44, 0.07);
    border-radius: 26px;
    padding: 36px;
    margin-bottom: 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}



.wp-block-button__link {
    background-color: var(--primary) !important;
    color: #F4E9CF !important;
    border-radius: 999px !important;
    padding: 12px 24px !important;
    font-family: var(--font-sans);
    font-size: 13px !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    border: none !important;
}

.wp-block-button__link:hover {
    background-color: var(--secondary) !important;
}

/* ==========================================================================
   TREATMENTS PAGE ALTERNATING TWO-COLUMN LAYOUT
   ========================================================================== */
.treatment-article-card {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    padding: 48px 52px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 162, 75, 0.28);
    box-shadow: 0 14px 44px rgba(1, 58, 44, 0.08);
    scroll-margin-top: 110px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.treatment-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(1, 58, 44, 0.12);
}

.treatment-card-image-wrapper {
    position: relative;
    flex: 0 0 420px;
    width: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(1, 58, 44, 0.12);
    align-self: stretch;
    min-height: 280px;
}

.treatment-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.treatment-article-card:hover .treatment-card-image {
    transform: scale(1.04);
}

/* Mirror shine sweep on treatment photos — same as button effect */
.treatment-card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
}

.treatment-article-card:hover .treatment-card-image-wrapper::after {
    animation: shineSweep 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@media (min-width: 900px) {
    #glow-signature .treatment-card-image {
        object-position: 70% center;
    }
}

.treatment-card-content {
    flex: 1.2 1 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Alternating rows on desktop */
@media (min-width: 900px) {
    .treatment-article-card {
        align-items: stretch;
    }
    .treatment-card-even {
        flex-direction: row-reverse;
    }
}


@media (max-width: 900px) {
    .treatment-article-card {
        padding: 38px 24px;
        gap: 24px;
    }
    .treatment-card-image-wrapper {
        flex: none;
        width: 100%;
        height: 280px;
        min-height: 280px;
        max-width: 100%;
    }
    .treatment-card-image {
        height: 100%;
        object-position: center center;
    }
    .treatment-card-content h2 {
        font-size: clamp(22px, 5vw, 30px) !important;
    }
}

/* ==========================================================================
   TREATMENTS PAGE - KEY FEATURES & SUITABLE FOR REFIND DESIGN
   ========================================================================== */
.feature-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(1, 58, 44, 0.08);
    font-size: 13.5px;
    letter-spacing: 0.03em;
    color: #39443E;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    user-select: none;
}

.feature-tag:hover {
    background: #ffffff;
    border-color: rgba(201, 162, 75, 0.45);
    color: #013A2C;
    transform: translateY(-2.5px);
    box-shadow: 0 8px 20px rgba(1, 58, 44, 0.05), 0 2px 6px rgba(201, 162, 75, 0.08);
}

.feature-tag-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1.5px solid #C9A24B;
    margin-right: 9px;
    transition: all 0.3s ease;
    background: transparent;
    flex-shrink: 0;
}

.feature-tag:hover .feature-tag-dot {
    background: #C9A24B;
    transform: scale(1.2);
}

.suitable-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px 24px;
}


.suitable-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.5;
    color: #55604F;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    user-select: none;
    padding: 2px 0;
}

.suitable-item:hover {
    color: #013A2C;
    transform: translateX(5px);
}

.suitable-spark {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: #C9A24B;
    stroke-width: 1.25px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.suitable-item:hover .suitable-spark {
    transform: rotate(90deg) scale(1.15);
    fill: #C9A24B;
}

/* ===== LUXURY ANIMATED MESH GRADIENT BACKGROUND ===== */
.mesh-gradient-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    background: #013A2C; /* Forest green fallback */
}

/* WebGL Canvas layout, sized to parent and colored using local variables for script */
.mesh-gradient-canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    
    /* 4-color custom green palette matching brand colors (strictly green, no gold/yellow) */
    --gradient-color-1: #013A2C; /* Aura Dark Green */
    --gradient-color-2: #02513E; /* Lighter Emerald */
    --gradient-color-3: #0b2b22; /* Dark Deep Emerald */
    --gradient-color-4: #124d3e; /* Rich Forest Green */
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, #013A2C 0%, rgba(1, 58, 44, 0) 70%);
    top: -20%;
    left: -20%;
    animation: meshMove1 17.6s infinite ease-in-out alternate;
}

.blob-2 {
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, #02513E 0%, rgba(2, 81, 62, 0) 70%);
    bottom: -15%;
    right: -15%;
    animation: meshMove2 14.4s infinite ease-in-out alternate;
}

.blob-3 {
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, #0c4a3b 0%, rgba(12, 74, 59, 0) 70%);
    top: 15%;
    right: -10%;
    animation: meshMove3 19.2s infinite ease-in-out alternate;
}

.blob-4 {
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(18, 77, 62, 0.5) 0%, rgba(18, 77, 62, 0) 75%);
    bottom: -20%;
    left: 10%;
    opacity: 0.5;
    animation: meshMove4 12.8s infinite ease-in-out alternate;
}

@keyframes meshMove1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15%, 10%) scale(1.08); }
    100% { transform: translate(-10%, 15%) scale(0.92); }
}

@keyframes meshMove2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-12%, -15%) scale(0.93); }
    100% { transform: translate(12%, -8%) scale(1.06); }
}

@keyframes meshMove3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15%, 12%) scale(1.07); }
    100% { transform: translate(8%, -15%) scale(0.94); }
}

@keyframes meshMove4 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12%, -12%) scale(1.04); }
    100% { transform: translate(-8%, 10%) scale(0.96); }
}

/* Mobile: make 3D background blobs more visible */
@media (max-width: 768px) {
    .mesh-blob {
        filter: blur(50px) !important;
        opacity: 1 !important;
    }
    .blob-1 { width: 120%; height: 120%; }
    .blob-2 { width: 110%; height: 110%; }
    .blob-3 { width: 100%; height: 100%; }
    .blob-4 { width: 90%; height: 90%; opacity: 0.85 !important; }
    .aura-glow-blob {
        filter: blur(60px) !important;
        opacity: 0.5 !important;
    }
    .aura-glow-1 { width: 320px; height: 320px; }
    .aura-glow-2 { width: 380px; height: 380px; }
    .aura-glow-3 { width: 280px; height: 280px; }
}

/* ==========================================================================
   LUXURY MULTI-COLUMN FOOTER
   ========================================================================== */
.luxury-footer {
    background: #FAF8F2;
    color: #013A2C;
    padding: 80px 24px 40px 24px;
    border-top: 1px solid rgba(1, 58, 44, 0.12);
    font-family: 'Jost', sans-serif;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.luxury-footer-grid {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
}

.luxury-footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.luxury-footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.luxury-footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.luxury-footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #013A2C;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.luxury-footer-tagline {
    font-size: 14.5px;
    line-height: 1.8;
    color: rgba(1, 58, 44, 0.75);
    margin: 0;
    font-weight: 300;
}

.luxury-footer-h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: #C9A24B;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.luxury-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.luxury-footer-link {
    color: rgba(1, 58, 44, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.luxury-footer-link:hover {
    color: #C9A24B;
    padding-left: 4px;
}

.luxury-footer-bottom {
    max-width: 1160px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(1, 58, 44, 0.12);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 13.5px;
    color: rgba(1, 58, 44, 0.6);
}

.luxury-footer-legal-links {
    display: flex;
    gap: 24px;
}

.luxury-footer-legal-link {
    color: rgba(1, 58, 44, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.luxury-footer-legal-link:hover {
    color: #C9A24B;
}

@media (max-width: 768px) {
    .luxury-footer {
        padding: 60px 24px 30px 24px !important;
        text-align: center !important;
    }
    .luxury-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        margin-bottom: 40px !important;
    }
    .luxury-footer-col {
        align-items: center !important;
    }
    .luxury-footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 16px !important;
    }
    .luxury-footer-legal-links {
        justify-content: center !important;
    }
}

/* ==========================================================================
   CABIN CREW PROMO RESPONSIVE COLUMNS
   ========================================================================== */
@media (min-width: 992px) {
    .cabin-crew-promo-card {
        grid-column: span 2 !important;
    }
}

/* ==========================================================================
   GLOW DESTINATION TITLE LINE NO-WRAP
   ========================================================================== */
.glow-title-line {
    display: inline-block;
}
@media (min-width: 576px) {
    .glow-title-line {
        white-space: nowrap !important;
    }
}

.crew-card {
    padding: 60px 56px;
}
@media (max-width: 768px) {
    .crew-card {
        padding: 36px 28px !important;
    }
}

@media (min-width: 769px) {
    .about-image-column {
        margin-top: 108px !important;
    }
}
