/* css/style.css - Delhi Luxury Spa Directory Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --bg-dark: #07090e;
    --bg-card: #111520;
    --bg-card-hover: #161c2b;
    --bg-glass: rgba(17, 21, 32, 0.75);
    
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #997a15;
    --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa8210 100%);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border-glow: rgba(212, 175, 55, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    
    --shadow-glow: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Containers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Announcement Bar */
.top-bar {
    background: linear-gradient(90deg, #101726 0%, #1e283d 50%, #101726 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.5rem 0;
    font-size: 0.825rem;
    color: var(--text-muted);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-contact a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 1rem;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}
.logo:hover {
    transform: translateY(-2px);
}
.brand-logo-img {
    height: 48px;
    max-height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}
.logo:hover .brand-logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffe066 0%, #d4af37 50%, #aa7c11 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b0d13;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}
.logo:hover .logo-icon {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.7);
    transform: rotate(5deg);
}
.logo-text h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #ffffff;
    line-height: 1.05;
}
.logo-text h2 span {
    background: linear-gradient(135deg, #ffe066 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.logo-text p {
    font-size: 0.68rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 2px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}
.mobile-toggle-btn {
    display: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: var(--gold-primary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
@media (max-width: 992px) {
    .mobile-toggle-btn {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0d121c;
        border-bottom: 1px solid var(--gold-primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
        gap: 0.75rem;
        display: none;
        box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    }
    .nav-menu.mobile-active {
        display: flex;
    }
    .nav-link {
        width: 100%;
        padding: 0.6rem 1rem;
    }
}
.btn-gold {
    background: var(--gold-gradient);
    color: #0b0d13;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px -5px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5.5rem 0 4.5rem;
    background: #06080e;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 850px;
    height: 550px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, rgba(243, 229, 171, 0.05) 45%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
    animation: heroPulseGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.35) 50%, transparent 100%);
}

@keyframes heroPulseGlow {
    0% { opacity: 0.65; transform: translateX(-50%) scale(0.95); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

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

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(17, 21, 32, 0.85) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #f3e5ab;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-badge:hover {
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    display: inline-block;
    animation: heroBadgePulse 1.8s infinite;
}

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

.hero-badge i {
    color: var(--gold-primary);
    font-size: 0.95rem;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    background: linear-gradient(135deg, #fff099 0%, #d4af37 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
    position: relative;
    display: inline-block;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 820px;
    margin: 0 auto 2.75rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* Search Box Container */
.search-card {
    position: relative;
    background: linear-gradient(160deg, rgba(20, 27, 41, 0.9) 0%, rgba(11, 15, 25, 0.95) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 1px solid rgba(243, 229, 171, 0.55);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 35px 80px -15px rgba(0, 0, 0, 0.85),
                0 0 40px rgba(212, 175, 55, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
    max-width: 1040px;
    margin: 0 auto;
    transition: var(--transition);
}

.search-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 40px 90px -15px rgba(0, 0, 0, 0.9),
                0 0 50px rgba(212, 175, 55, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.search-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1.1fr auto;
    gap: 1.25rem;
    align-items: flex-end;
}

.search-field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.search-field label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.search-field label i {
    font-size: 0.85rem;
    color: var(--gold-light);
}

.select-wrapper, .input-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    background: #0d121d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    padding: 0.85rem 2.5rem 0.85rem 1.1rem;
    border-radius: 12px;
    font-size: 0.925rem;
    outline: none;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.select-wrapper select option {
    background: #0d121d;
    color: #f8fafc;
    padding: 0.5rem;
}

.select-wrapper .select-arrow {
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 0.8rem;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.select-wrapper select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.input-wrapper input {
    width: 100%;
    background: #0d121d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f8fafc;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
    font-size: 0.925rem;
    outline: none;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.25s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}

.input-wrapper input::placeholder {
    color: #64748b;
}

.select-wrapper select:focus,
.input-wrapper input:focus {
    border-color: var(--gold-primary);
    background: #111726;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25), inset 0 2px 4px rgba(0,0,0,0.3);
}

.search-btn-wrapper {
    display: flex;
    align-items: flex-end;
}

.hero-search-btn {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-search-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.hero-search-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Quick Locality Tags Section */
.quick-tags-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.75rem 0 1rem;
    position: relative;
}

.quick-tags-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.quick-tags-divider span {
    position: relative;
    background: #0f1523;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.725rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

.quick-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.65rem;
    margin-top: 0.5rem;
}

.tag-chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.825rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.tag-chip:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tag-chip.active {
    background: linear-gradient(135deg, #ffe066 0%, #d4af37 100%);
    color: #07090e;
    font-weight: 700;
    border-color: #ffe066;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45);
    transform: translateY(-1px);
}

/* Listings Section */
.section {
    padding: 4rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-subtitle {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

/* Spa Grid */
.spa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}
.spa-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.spa-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-card);
}
.spa-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.spa-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.spa-card:hover .spa-image {
    transform: scale(1.08);
}
.luxury-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.rating-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(10, 13, 20, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-glow);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.rating-badge i { color: #f59e0b; }

.spa-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.spa-locality {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.spa-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}
.spa-address {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.spa-address i { color: var(--gold-primary); margin-top: 0.2rem; }

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}
.service-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    color: var(--text-muted);
}
.spa-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.spa-price {
    display: flex;
    flex-direction: column;
}
.price-label { font-size: 0.7rem; color: var(--text-dim); text-transform: uppercase; }
.price-val { font-size: 1.1rem; font-weight: 700; color: var(--gold-light); }

.spa-actions {
    display: flex;
    gap: 0.5rem;
}
.btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #182030;
    border: 1px solid var(--border-subtle);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}
.btn-icon:hover {
    background: var(--gold-primary);
    color: #000;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
}
.modal-container {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-card);
    transform: scale(0.95);
    transition: var(--transition);
}
.modal-overlay.active .modal-container {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #182030;
    border: none;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}
.modal-close:hover {
    color: #fff;
    background: var(--gold-primary);
}

/* Form Controls */
.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #182030;
    border: 1px solid var(--border-subtle);
    color: #fff;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* SEO Content & FAQ Section */
.seo-section {
    background: #0d121c;
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0;
}
.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.seo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}
.seo-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}
.seo-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}
.faq-answer {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
    border-top: 1px solid var(--border-subtle);
    margin-top: 0.5rem;
    padding-top: 1rem;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: #05070a;
    border-top: 1px solid var(--border-subtle);
    padding: 3rem 0 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}
.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .search-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    .search-btn-wrapper {
        grid-column: span 2;
    }
    .hero-title {
        font-size: 2.3rem;
    }
}
@media (max-width: 600px) {
    .search-grid {
        grid-template-columns: 1fr;
    }
    .search-btn-wrapper {
        grid-column: span 1;
    }
    .spa-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 1.85rem;
    }
}

/* Trust Highlights Feature Bar */
.trust-bar-section {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, rgba(17, 21, 32, 0.4) 0%, rgba(7, 9, 14, 0.8) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.trust-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}
.trust-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}
.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}
.trust-info h4 {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 600;
}
.trust-info p {
    font-size: 0.825rem;
    color: var(--text-muted);
}

/* Top 3 Ranked Showcase Badges */
.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
}
.rank-badge-1 {
    background: linear-gradient(135deg, #ffe066 0%, #d4af37 50%, #997a15 100%);
    color: #000;
}
.rank-badge-2 {
    background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 100%);
    color: #0f172a;
}
.rank-badge-3 {
    background: linear-gradient(135deg, #f97316 0%, #b45309 100%);
    color: #fff;
}

/* Testimonials Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
}
.testimonial-stars {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.author-details h5 {
    font-size: 0.95rem;
    color: #fff;
}
.author-details p {
    font-size: 0.775rem;
    color: var(--gold-primary);
}

/* Blog Insights Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-meta {
    font-size: 0.8rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.blog-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}
.blog-title a:hover {
    color: var(--gold-primary);
}
.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* SEO Spotlight Cards */
.seo-landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.seo-landing-card {
    background: linear-gradient(145deg, #131926 0%, #0d121c 100%);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
    display: block;
}
.seo-landing-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.seo-landing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.seo-landing-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Footer Keyword Tags Styling */
.seo-footer-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold-light);
    border-radius: 20px;
    font-size: 0.78rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.seo-footer-tag:hover {
    background: var(--gold-primary);
    color: #000;
    font-weight: 600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* About Us Section Styles */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(13, 18, 28, 0.8) 0%, rgba(7, 9, 14, 1) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
.about-image-stack {
    position: relative;
}
.about-main-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--gold-primary);
    box-shadow: var(--shadow-glow);
    object-fit: cover;
    height: 380px;
}
.about-badge-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}
@media (max-width: 576px) {
    .about-badge-card {
        position: relative;
        bottom: 0; right: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   MASTER MOBILE RESPONSIVE ENHANCEMENTS (ALL VIEWPORTS & DEVICES)
   ========================================================================== */

/* Tablet & Smaller Desktops (<= 992px) */
@media (max-width: 992px) {
    .detail-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .booking-sidebar {
        position: static !important;
        top: 0 !important;
        width: 100% !important;
        margin-top: 1.5rem !important;
    }
    .spa-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    .seo-grid, .seo-landing-grid, .blog-grid, .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
        gap: 1.5rem !important;
    }
}

/* Mobile & Small Tablets (<= 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1.1rem !important;
    }
    .top-bar .container {
        flex-direction: column !important;
        gap: 0.4rem !important;
        text-align: center !important;
    }
    .top-bar-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    .top-bar-contact a {
        margin-left: 0 !important;
    }
    .hero-title, h1.hero-title {
        font-size: 2rem !important;
        line-height: 1.25 !important;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    .section-title {
        font-size: 1.75rem !important;
    }
    .spa-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .seo-grid, .seo-landing-grid, .blog-grid, .testimonial-grid, .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .detail-hero {
        height: auto !important;
        min-height: 240px !important;
        padding: 3.5rem 0 2rem !important;
    }
    .detail-hero h1 {
        font-size: 2rem !important;
    }
    .modal-container {
        padding: 1.5rem 1.25rem !important;
        max-width: 92% !important;
        max-height: 88vh !important;
    }
    .modal-close {
        top: 0.85rem !important;
        right: 0.85rem !important;
    }
}

/* Smartphones & Small Screens (<= 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 0.85rem !important;
    }
    .hero-title, h1.hero-title {
        font-size: 1.7rem !important;
        letter-spacing: -0.01em !important;
    }
    .detail-hero h1 {
        font-size: 1.7rem !important;
    }
    .section-subtitle {
        font-size: 0.825rem !important;
    }
    .section-title {
        font-size: 1.5rem !important;
    }
    .spa-content {
        padding: 1.25rem 1rem !important;
    }
    .spa-actions {
        width: 100% !important;
        justify-content: flex-end !important;
    }
    .modal-container {
        padding: 1.25rem 1rem !important;
        width: 95% !important;
        border-radius: 14px !important;
    }
    .modal-header h3 {
        font-size: 1.25rem !important;
    }
    .toast-notification {
        left: 1rem !important;
        right: 1rem !important;
        bottom: 1rem !important;
        width: auto !important;
        text-align: center !important;
        justify-content: center !important;
        font-size: 0.85rem !important;
    }
    .about-main-img {
        height: 260px !important;
    }
}

/* Ultra Small Screens & Narrow Viewports (<= 480px) */
@media (max-width: 480px) {
    /* Prevent horizontal grid squishing inside inline forms and modal bodies */
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
    .form-group input, .form-group select, .form-group textarea {
        font-size: 0.9rem !important;
        padding: 0.75rem 0.85rem !important;
    }
    .btn-gold, .btn-outline {
        padding: 0.7rem 1.1rem !important;
        font-size: 0.85rem !important;
    }
    .navbar {
        padding: 0.75rem 0 !important;
    }
    .logo img {
        height: 34px !important;
    }
    .logo-text {
        font-size: 1.15rem !important;
    }
}


