:root {
    /* Brand Colors - Ethereal Glass Edition */
    --navy-darkest: #050505;
    /* Deepest black for depth */
    --navy-dark: #0a0a0a;
    /* Slightly lighter background */
    --navy-light: #151515;
    /* Surface background */

    --gold-primary: #e0cca7;
    /* Desaturated Champagne Gold (More premium/understated) */
    --gold-light: #f5edd0;
    --gold-dark: #8a7a59;

    /* Glass Effect Tokens */
    --glass-surface-strong: rgba(255, 255, 255, 0.08);
    --glass-surface: rgba(255, 255, 255, 0.04);
    --glass-surface-light: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-light: rgba(255, 255, 255, 0.05);

    --glass-blur-lg: blur(40px);
    --glass-blur-md: blur(20px);
    --glass-blur-sm: blur(10px);

    --shadow-glass:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);

    --shadow-glow: 0 0 20px rgba(224, 204, 167, 0.15);

    --brand-gradient: linear-gradient(135deg, #e0cca7 0%, #f5edd0 100%);

    --text-white: #ffffff;
    --text-gray: #a3a3a3;
    /* Neutral gray */
    --text-muted: #525252;

    --transition-smooth: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* iOS-like smooth spring */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}





/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: var(--navy-darkest);
    color: var(--text-gray);
    font-family: var(--font-body);
    /* Noise texture for premium feel */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    background-attachment: fixed;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

img,
video {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    letter-spacing: -0.01em;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 2px 10px rgba(212, 175, 55, 0.2);
}

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

/* Visibility Utilities */
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }
}

/* Buttons - Premium Gold Styles */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 4px;
    /* Sharper corners for corporate feel */
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--navy-darkest);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: none;
    /* Changed for sweep */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary.pulse-anim {
    animation: gold-pulse 3s infinite;
}

@keyframes gold-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
    }

    100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
}

/* Shimmer Sweep Effect */


.btn-primary:hover::after {
    left: 150%;
    transition: 0.7s ease-in-out;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block {
    display: block;
    width: 100%;
}


/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    /* Match site navy darkest more closely */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    transition: var(--transition-fast);
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 40px;
    /* Create breathing room from menu */
    text-decoration: none;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure header is on top of everything when menu is open */
body.nav-menu-open .header {
    z-index: 10002 !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 75px;
    /* Slightly reduced to give more vertical air */
    width: auto;
    /* Preserve natural aspect ratio */
    mix-blend-mode: screen;
    /* Makes black background transparent on dark headers */
    display: block;
    margin: -5px 0;
    /* Tighten the header slightly less */
}


/* Added .nav flex container style for desktop */
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    /* Already present, but confirming */
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    /* Vertical padding to bridge hover gap */
}

.nav-link i.fa-solid:not(.fa-chevron-down) {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
    list-style: none;
    /* Ensuring parent li has no dot */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 15, 28, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 240px;
    display: none;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 10px 0 0 -15px;
    /* Slightly tighter gap for better navigation */
}

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-gradient);
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding-left: 25px;
    border-left-color: var(--gold-primary);
}

.dropdown-menu a i {
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.dropdown-menu a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: width 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--gold-primary);
    margin: 5px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-image: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.5)), url('../images/hero-bg-luxury.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
    z-index: 10;
    transition: all 0.4s ease;
    cursor: pointer;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    position: relative;
    box-shadow:
        0 0 10px rgba(212, 175, 55, 0.3),
        inset 0 0 5px rgba(212, 175, 55, 0.1);
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2.5s infinite ease-in-out;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    transform: rotate(45deg);
    animation: scrollArrow 2.5s infinite ease-in-out;
    animation-delay: 0.3s;
    filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.4));
}

@keyframes scrollWheel {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 22px;
        opacity: 0;
    }
}

@keyframes scrollArrow {

    0%,
    100% {
        opacity: 0.3;
        transform: rotate(45deg) translate(0, 0);
    }

    50% {
        opacity: 1;
        transform: rotate(45deg) translate(3px, 3px);
    }
}

/* Hide on mobile to reduce clutter */
@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* Luxury abstract background element */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vh;
    height: 60vh;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin: 0 auto 40px;
    max-width: 65ch;
    /* Improved readability */
    border-left: 3px solid var(--gold-primary);
    padding-left: 20px;
    line-height: 1.6;
    /* Better leading */
}

/* Features - Glass & Gold */
.section {
    padding: 100px 0 80px;
    /* Balanced spacing */
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.glass-card {
    background: var(--glass-surface);
    backdrop-filter: var(--glass-blur-md);
    -webkit-backdrop-filter: var(--glass-blur-md);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 24px;
    /* More rounded */
    transition: transform var(--transition-smooth), background var(--transition-smooth), box-shadow var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    /* Thinner accent */
    background: var(--brand-gradient);
    transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0.8;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: var(--glass-surface-strong);
    box-shadow: var(--shadow-glass), var(--shadow-glow);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-card:hover::before {
    width: 100%;
}

.icon-box {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.glass-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.glass-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Why Us / Feature Items */
.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-left: 2px solid var(--gold-primary);
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}


/* Contact/Forms */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
    background: var(--navy-dark);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    min-height: 480px;
    /* Keep height stable during transition */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-success {
    text-align: center;
    animation: scaleIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-success .success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.3));
}

.contact-success h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-success p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-family: inherit;
    transition: all 0.3s ease;
    appearance: none;
    /* Modern look */
}

/* Fix for Select Options being unreadable in some browsers */
.form-group select option {
    background-color: var(--navy-darkest);
    color: var(--text-white);
    padding: 15px;
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: whatsappEntrance 0.8s ease-out forwards;
    opacity: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background-color: #20ba5a;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

@keyframes whatsappEntrance {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Adjustments for WhatsApp */
/* Mobile Adjustments for WhatsApp & Assistant */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 120px !important;
        /* Increased to avoid overlapping hero buttons */
        right: 20px !important;
        width: 55px;
        height: 55px;
        font-size: 25px;
        z-index: 9999;
    }

    .concierge-launcher {
        bottom: 120px !important;
        /* Increased to avoid overlapping hero buttons */
        right: 90px !important;
        width: 55px;
        height: 55px;
        z-index: 9999;
    }

    .whatsapp-tooltip {
        display: none;
        /* Hide tooltip on small mobile */
    }
}

input.error,
select.error,
textarea.error {
    border-color: #ef4444;
    /* Red for error */
}

.error-message {
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 5px;
    display: block;
    height: 0;
    overflow: hidden;
    transition: height 0.3s;
}

.error-message.visible {
    height: auto;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Orb fallbacks if they still exist in HTML */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    animation: orbitFloat 25s infinite ease-in-out alternate;
}

@keyframes orbitFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 40px) scale(0.95);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gold-primary);
    top: 0;
    right: 0;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #4f46e5;
    bottom: 0;
    left: 0;
    opacity: 0.1;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 15, 24, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
        padding: 60px 20px 100px;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        transform: translateX(100%);
        flex-direction: column;
        align-items: flex-start;
        display: flex !important;
        gap: 20px;
        overflow-y: auto;
        z-index: 10000;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav .btn-primary {
        width: 100%;
        margin-top: 30px;
        padding: 14px 20px;
        font-size: 0.95rem;
        display: block;
        text-align: center;
    }

    .nav .nav-cta {
        width: calc(100% - 40px);
        margin: 50px 20px 60px;
        padding: 16px 20px;
        font-size: 0.95rem;
        display: block;
        text-align: center;
        border-radius: 12px;
        flex-shrink: 0;
        white-space: normal;
        line-height: 1.4;
    }

    .nav.active {
        transform: translateX(0);
    }

    /* Added overlay for better focus on menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 1000;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        transform: translateX(20px);
    }

    .nav.active .nav-list li {
        animation: menuItemIn 0.4s ease forwards;
    }

    .nav.active .nav-list li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav.active .nav-list li:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav.active .nav-list li:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav.active .nav-list li:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav.active .nav-list li:nth-child(5) {
        animation-delay: 0.3s;
    }

    .nav.active .nav-list li:nth-child(6) {
        animation-delay: 0.35s;
    }

    .nav.active .nav-list li:nth-child(7) {
        animation-delay: 0.4s;
    }

    .nav.active .nav-cta {
        animation: menuItemIn 0.4s ease forwards;
        animation-delay: 0.5s;
        opacity: 0;
    }

    @keyframes menuItemIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-link {
        padding: 15px 0;
        font-size: 1.05rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        letter-spacing: 0.3px;
        width: 100%;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 12px;
        position: relative;
        transition: all 0.3s ease;
        text-align: left;
    }

    .nav-link span {
        flex: 1;
        line-height: 1.2;
    }

    .nav-link:active,
    .nav-link.active {
        color: var(--gold-primary);
    }

    /* Force hide widgets when menu is open */
    body.nav-menu-open .whatsapp-float,
    body.nav-menu-open .concierge-launcher,
    body.nav-menu-open .ai-concierge {
        display: none !important;
    }

    .nav-link i.fa-solid:not(.fa-chevron-down) {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        color: var(--gold-primary);
        opacity: 0.9;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .nav-link .toggle-icon {
        margin-left: auto;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    /* Mobile Dropdowns */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        display: none;
        background: rgba(255, 255, 255, 0.02) !important;
        border: none !important;
        border-left: 1px solid rgba(212, 175, 55, 0.3) !important;
        box-shadow: none !important;
        padding: 5px 0 10px 25px !important;
        width: 100% !important;
        min-width: unset !important;
        margin: 5px 0 !important;
        border-radius: 0 !important;
    }

    .dropdown-menu::before,
    .dropdown-menu::after {
        display: none;
        /* Hide desktop helpers */
    }

    .dropdown.active>.dropdown-menu {
        display: flex !important;
        flex-direction: column;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown-menu li {
        border-bottom: none !important;
    }

    .dropdown-menu a {
        white-space: normal;
        padding: 12px 0;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 12px;
    }

    .dropdown-menu a i.fa-solid:not(.fa-chevron-right) {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        color: var(--gold-primary);
        opacity: 0.7;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .dropdown-menu a i.fa-chevron-right {
        display: none;
        /* Hide chevron right on mobile sub-links */
    }

    .dropdown.active>.nav-link {
        color: var(--gold-primary);
    }

    .dropdown.active>.nav-link i {
        transform: rotate(180deg);
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .hero-title {
        font-size: 3rem;
    }

    .logo-img {
        height: 50px;
        /* Scaled down for mobile */
        width: auto;
        margin: -5px 0;
    }

    /* Hide scroll indicator on mobile - serves no purpose on touch devices */
    .scroll-indicator {
        display: none !important;
    }

    /* Fix hero background on mobile - fixed attachment doesn't work well */
    .hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
    }
}

/* Animation Classes */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

/* Zig-Zag Feature Layout */
.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image-placeholder {
    flex: 1;
    height: 400px;
    background: var(--navy-dark);
    /* Fallback */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-image {
    flex: 1;
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Abstract gradients for placeholders since image gen is limited */
.bg-lighting {
    background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 100%);
}

.bg-security {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.bg-audio {
    background: linear-gradient(135deg, #312e81 0%, #4c1d95 100%);
}

.feature-image-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.feature-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light-gray);
}

.feature-list i {
    color: var(--gold-primary);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--navy-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.blog-img-top {
    height: 200px;
    background: var(--navy-light);
    position: relative;
}

.blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-primary);
    color: var(--navy-darkest);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.blog-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    display: block;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.read-more-link {
    color: var(--gold-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: auto;
}

/* Vision/Mission Section */
.vision-box {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.05), transparent);
    border-left: 4px solid var(--gold-primary);
    padding: 40px;
    margin: 40px 0;
}

/* Responsive adjustments for new layouts */
@media (max-width: 900px) {

    .feature-row,
    .feature-row:nth-child(even) {
        flex-direction: column !important;
        /* Override inline styles */
        text-align: left;
        gap: 30px;
    }

    .feature-image-placeholder,
    .feature-image {
        width: 100%;
        height: 250px;
        /* Reduced height for mobile */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 30px;
        padding-left: 15px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        margin: 0 !important;
        width: 100%;
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .btn-outline {
        border-color: rgba(224, 204, 167, 0.4);
        background: rgba(255, 255, 255, 0.03);
    }

    .logo-img {
        height: 50px;
        width: auto;
    }

    .features-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .glass-card {
        padding: 24px;
    }
}

/* Enhanced Footer */
.footer {
    background: var(--navy-darkest);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 20px;
    margin-top: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    text-align: center;
    /* Revert to center */
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    /* Center the text within h4 */
    display: inline-block;
    /* For underline centering if kept */
}

/* Gold underline - Centered */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-gray);
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

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

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    justify-content: center;
    /* Center flex items */
    text-align: left;
    /* Keep text left aligned inside the item for readability */
}

/* Fix text align inside the item while item is centered */
.footer-contact-item>div {
    text-align: left;
}

.footer-contact-item i {
    color: var(--gold-primary);
    margin-top: 5px;
    min-width: 20px;
    /* Align text properly */
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
    /* Center social icons */
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition-fast);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--gold-primary);
    color: var(--navy-darkest);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-primary);
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer map adjustments */
@media (max-width: 768px) {
    .map-container {
        height: 200px;
    }

    .footer {
        text-align: center;
        /* Ensure mobile stays left aligned */
    }

    /* GLOBAL MOBILE LOGO FIX */
    .logo-img {
        height: 42px !important;
        /* Slightly smaller to prevent menu crowding */
        width: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .logo {
        margin-right: 0;
        /* Reset for centered mobile or side-by-side */
    }
}

/* Live Demo Section */
.demo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.house-layout {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.house-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.room {
    fill: #1e293b;
    /* Dark room default */
    stroke: var(--gold-primary);
    stroke-width: 2;
    transition: fill 0.5s ease, filter 0.5s ease;
}

.room.active {
    fill: rgba(212, 175, 55, 0.6);
    /* Gold light when active */
    filter: drop-shadow(0 0 15px var(--gold-primary));
}

.room-label {
    fill: var(--text-white);
    font-size: 14px;
    pointer-events: none;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.furniture {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2;
    pointer-events: none;
}

/* Phone Mockup */
.phone-wrapper {
    flex: 0 0 300px;
    perspective: 1000px;
}

.phone-frame {
    width: 280px;
    height: 550px;
    background: #0f172a;
    border-radius: 40px;
    border: 8px solid #334155;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    margin: 0 auto;
    transition: transform 0.3s;
}

.phone-frame:hover {
    transform: translateY(-10px) rotateY(-5deg);
}

/* Notch */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #334155;
    border-radius: 0 0 15px 15px;
    z-index: 2;
}

.phone-screen {
    background: #1e293b;
    /* Dark background for app */
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--navy-darkest);
    padding: 40px 20px 20px 20px;
    /* Extra top padding for notch */
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, #0f172a, #1a2436);
}

.app-controls {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.control-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-white);
    border: 1px solid transparent;
    transition: 0.3s;
}

.control-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.control-item span {
    font-weight: 500;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #475569;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--gold-primary);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--gold-primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Smart Quote Wizard Styles */
.wizard-container {
    max-width: 600px;
    width: 90%;
    margin: 10% auto;
    padding: 30px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.wizard-header {
    text-align: center;
    margin-bottom: 30px;
}

.wizard-progress {
    position: relative;
    margin: 20px auto;
    max-width: 300px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background: var(--gold-primary);
    width: 33%;
    /* Start at step 1 */
    transition: width 0.4s ease;
    border-radius: 2px;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step {
    width: 30px;
    height: 30px;
    background: var(--navy-dark);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.step.active {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.step.completed {
    background: var(--gold-primary);
    color: var(--navy-dark);
    border-color: var(--gold-primary);
}

.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.option-card {
    cursor: pointer;
    position: relative;
}

.option-card input {
    position: absolute;
    opacity: 0;
}

.card-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.card-content i {
    font-size: 2rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.option-card input:checked+.card-content {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.option-card input:checked+.card-content i,
.option-card input:checked+.card-content span {
    color: var(--gold-primary);
}

.pill-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.pill {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.pill input {
    display: none;
}

.pill:has(input:checked) {
    background: var(--gold-primary);
    color: var(--navy-dark);
    border-color: var(--gold-primary);
}

.wizard-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.wizard-success {
    text-align: center;
    padding: 20px;
}

.success-icon i {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    animation: gold-pulse 2s infinite;
}

/* AI Smart Concierge Premium Styles */
.ai-concierge {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: var(--glass-surface-strong);
    backdrop-filter: var(--glass-blur-md);
    -webkit-backdrop-filter: var(--glass-blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--shadow-glow);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: conciergeSlideUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transform-origin: bottom right;
}

.concierge-launcher {
    position: fixed;
    bottom: 30px;
    right: 105px;
    /* Positioned to the left of WhatsApp */
    width: 60px;
    height: 60px;
    background: var(--brand-gradient);
    border: none;
    border-radius: 50%;
    color: var(--navy-darkest);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(224, 204, 167, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappEntrance 0.8s ease-out forwards;
}

.concierge-launcher i {
    position: relative;
    z-index: 5;
    color: var(--navy-darkest);
    /* Ensure dark icon on gold background */
    /* Ensure icon is above pulse animation */
}

.concierge-launcher:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(224, 204, 167, 0.6);
}

.ai-avatar {
    position: relative;
}

@keyframes conciergeSlideUp {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.concierge-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.ai-avatar {
    width: 45px;
    height: 45px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-darkest);
    font-size: 1.2rem;
    position: relative;
    box-shadow: 0 0 15px rgba(224, 204, 167, 0.4);
}

.ai-status-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    animation: aiPulse 2s infinite;
}

@keyframes aiPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.concierge-info {
    flex: 1;
}

.concierge-name {
    display: block;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.concierge-status {
    font-size: 0.75rem;
    color: var(--gold-primary);
    opacity: 0.8;
}

.close-concierge {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: color 0.3s;
}

.close-concierge:hover {
    color: var(--text-white);
}

.concierge-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-msg-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    animation: msgReveal 0.4s ease-out forwards;
}

.ai-msg-wrapper {
    align-self: flex-start;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-darkest);
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.chat-msg {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ai-msg {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-bottom-left-radius: 2px;
}

@keyframes msgReveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 5px 0;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }
}

.concierge-actions {
    padding: 15px 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.action-btn {
    background: rgba(224, 204, 167, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-btn:hover {
    background: var(--brand-gradient);
    color: var(--navy-darkest);
    transform: translateX(5px);
}

.action-btn i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .ai-concierge {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 150px;
        /* Moved up to clear icons */
    }
}

/* Pricing Grid Styles - Added for Pricing Page */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--navy-dark);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(145deg, var(--navy-dark), #1e293b);
    border-color: var(--gold-primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.25);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold-primary);
    color: var(--navy-darkest);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.pricing-header h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 5px;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.price-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--gold-primary);
}

@media (max-width: 900px) {
    .pricing-card.featured {
        transform: none;
        margin: 20px 0;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}