:root {
    --black: #020907; /* Ultra dark forest green-black */
    --charcoal: #051410; /* Very dark forest green */
    --charcoal-light: #0b221b; /* Dark forest green */
    --ivory: #fcfbfa; /* Warm premium ivory */
    --white: #ffffff;
    --beige: #e5dfd3; /* Luxury warm beige */
    --emerald: #0b845c; /* Premium brand green */
    --emerald-hover: #0ea675; /* Hover green */
    --brand-gold: #c5a880; /* Elegant gold brand color */
    --brand-gold-hover: #dfcbaf;
    --text-muted: #8fa098; /* Soothing sage-gray */
    --glass-bg: rgba(13, 34, 27, 0.55); /* Deep green transparent card background */
    --glass-border: rgba(197, 168, 128, 0.15); /* Subtle gold border */
    --font-main: 'Outfit', sans-serif;
    --font-title: 'Cormorant Garamond', serif; /* Serif brand font */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--black);
    /* Ambient glow gradients + subtle gold grid pattern */
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(11, 132, 92, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(197, 168, 128, 0.05) 0%, transparent 45%),
        linear-gradient(rgba(197, 168, 128, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 168, 128, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 80px 80px, 80px 80px;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .section-title, .hero-title {
    font-family: var(--font-title);
    font-weight: 500;
    letter-spacing: -0.01em;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--brand-gold);
    color: var(--black);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--brand-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.35), 0 0 15px rgba(197, 168, 128, 0.15);
}

.btn-secondary {
    background: var(--ivory);
    color: var(--black);
}

.btn-secondary:hover {
    background: #fff;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--brand-gold);
    color: var(--black);
}

.btn-text {
    color: var(--ivory);
}

.btn-text:hover {
    color: var(--brand-gold);
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glass-card:hover {
    background: rgba(13, 34, 27, 0.75);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15), 0 0 15px rgba(197, 168, 128, 0.08);
    border-color: var(--brand-gold);
}

/* Tags & Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 168, 128, 0.06);
    color: var(--brand-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.premium-badge {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-gold);
    border: 1px solid rgba(197, 168, 128, 0.3);
    background: rgba(197, 168, 128, 0.05);
}

.premium-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--emerald);
    border-radius: 50%;
    display: inline-block;
}

.tag {
    display: inline-block;
    background: rgba(11, 132, 92, 0.15);
    border: 1px solid rgba(11, 132, 92, 0.3);
    color: var(--emerald);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 12px;
}

/* 1. Top Bar */
.top-bar {
    background: var(--charcoal);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--ivory);
    position: relative;
    z-index: 100;
}

.top-bar-cta {
    color: var(--brand-gold);
    font-weight: 600;
}

/* 2. Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(2, 9, 7, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(2, 9, 7, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
    transition: var(--transition);
}

.header.scrolled .header-content {
    height: 75px;
}

.logo img {
    height: 75px;
    filter: brightness(1.2);
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 55px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    font-weight: 500;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* 3. Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 35%, rgba(11, 132, 92, 0.16), transparent 55%),
                radial-gradient(circle at 25% 75%, rgba(197, 168, 128, 0.05), transparent 50%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 3.8rem;
    line-height: 1.15;
    margin: 20px 0;
    font-weight: 500;
    background: linear-gradient(to bottom right, var(--white), var(--beige));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-line {
    font-size: 1.1rem;
    color: var(--emerald);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}

.trust-badges-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #d1d5db;
}

.trust-badges-inline span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-badges-inline i {
    color: var(--emerald);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
}

.hero-img {
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.float-card {
    position: absolute;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.float-card i {
    color: var(--emerald);
}

.card-1 { top: 10%; right: -20px; animation-delay: 0s; }
.card-2 { bottom: 20%; left: -30px; animation-delay: 1s; }
.card-3 { top: 40%; left: -20px; animation-delay: 2s; }
.card-4 { bottom: 10%; right: -10px; animation-delay: 3s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* 4. Service Ticker */
.ticker-wrap {
    width: 100%;
    background: var(--charcoal);
    padding: 16px 0 56px 0; /* Added bottom padding to account for the overlapping CTA bar */
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    cursor: pointer;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-wrap:hover .ticker {
    animation-play-state: paused;
}

.ticker-item {
    padding: 0 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--beige);
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* 5. Quick Action Bar */
.quick-action-bar {
    max-width: 900px;
    margin: -40px auto 40px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--charcoal-light);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
}

.action-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    border-right: 1px solid var(--glass-border);
}

.action-card:last-child {
    border-right: none;
}

.action-card i {
    font-size: 1.8rem;
    color: var(--brand-gold);
    transition: var(--transition);
}

.action-card:hover i {
    transform: scale(1.1);
}

/* General Sections */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 500;
    font-family: var(--font-title);
    color: var(--ivory);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* 6. Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.trust-grid .glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.trust-grid i {
    font-size: 2rem;
    color: var(--brand-gold);
}

/* 7. Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--charcoal);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.12);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 168, 128, 0.18), 0 0 20px rgba(11, 132, 92, 0.1);
    border-color: var(--brand-gold);
}

.img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .img-wrapper img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--charcoal), transparent);
}

.service-info {
    padding: 24px;
}

.service-info h3 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    min-height: 60px;
}

/* 8. Popular Section */
.popular-section {
    background: linear-gradient(45deg, var(--charcoal-light), var(--black));
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    padding: 40px 20px;
    text-align: center;
}

.feature-card h3 {
    margin-top: 20px;
    font-size: 1.5rem;
    font-family: var(--font-title);
    font-weight: 500;
}

.feature-card .badge {
    margin: 0;
}

/* 9. Recommendation */
.rec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.rec-item {
    background: var(--charcoal);
    padding: 24px;
    border-radius: 12px;
    border-top: 3px solid var(--brand-gold);
    border-left: 1px solid rgba(197, 168, 128, 0.08);
    border-right: 1px solid rgba(197, 168, 128, 0.08);
    border-bottom: 1px solid rgba(197, 168, 128, 0.08);
}

.rec-item h4 {
    margin-bottom: 10px;
    color: var(--ivory);
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 500;
}

.rec-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 10. Offer Section */
.offer-banner {
    background: radial-gradient(circle at center, var(--charcoal-light) 0%, var(--black) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.offer-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.offer-card {
    background: rgba(197, 168, 128, 0.05);
    border: 1px solid var(--brand-gold);
    border-radius: 16px;
    padding: 30px;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.1);
}

.offer-card h3 {
    font-size: 2.5rem;
    color: var(--brand-gold);
    margin-bottom: 10px;
    font-family: var(--font-title);
    font-weight: 600;
}

.urgency {
    color: #ff9800;
    margin-bottom: 30px;
    font-weight: 500;
}

/* 11. Experience Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: dashed 2px var(--glass-border);
    z-index: -1;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-item .icon {
    width: 80px;
    height: 80px;
    background: var(--charcoal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-gold);
    margin: 0 auto 20px;
    border: 1px solid var(--glass-border);
    position: relative;
}

.timeline-item h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 12. Comfort & Care */
.comfort-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.comfort-card {
    background: var(--charcoal);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 4px solid var(--brand-gold);
    border-top: 1px solid rgba(197, 168, 128, 0.05);
    border-right: 1px solid rgba(197, 168, 128, 0.05);
    border-bottom: 1px solid rgba(197, 168, 128, 0.05);
}

.comfort-card i {
    color: var(--brand-gold);
    font-size: 1.5rem;
}

/* 13. Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefits-grid .glass-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 20px;
}

.benefits-grid i {
    color: var(--emerald);
    font-size: 1.2rem;
}

/* 14. Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2, 9, 7, 0.9), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

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

.gallery-item .caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 20px;
    color: var(--ivory);
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 2;
    transition: var(--transition);
}

.gallery-item:hover .caption {
    bottom: 0;
}

/* 15. Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    text-align: left;
    position: relative;
    padding: 40px;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(197, 168, 128, 0.08);
    font-family: serif;
    line-height: 1;
}

.stars {
    color: var(--brand-gold);
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.review-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ivory);
}

/* 16. SEO Section */
.seo-section {
    background: var(--charcoal);
}

.seo-copy {
    color: #888;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 0.9rem;
}

.seo-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.seo-chips span {
    background: var(--black);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #d1d5db;
    border: 1px solid var(--glass-border);
}

/* 17. FAQ */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--charcoal);
    color: var(--white);
    padding: 20px;
    text-align: left;
    border: none;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover, .faq-question.active {
    background: var(--charcoal-light);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    background: var(--charcoal);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: #d1d5db;
    padding-bottom: 20px;
}

/* 18. Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    padding: 40px;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--ivory);
    font-family: var(--font-title);
    font-weight: 500;
}

.contact-info p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: #f3f4f6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info i {
    color: var(--brand-gold);
    width: 20px;
}

.contact-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-map {
    padding: 0;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    min-height: 300px;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(45deg, var(--charcoal), var(--black));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #d1d5db;
}

/* 19. Final CTA */
.final-cta-section {
    background: linear-gradient(rgba(2, 9, 7, 0.8), rgba(2, 9, 7, 0.95)), url('assets/hero_spa_1779706971079.png') center/cover no-repeat;
    background-attachment: fixed;
    padding: 120px 0;
}

.final-ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

/* 20. Footer */
.footer {
    background: #020705;
    padding: 80px 0 20px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    height: 85px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-brand p {
    color: #d1d5db;
    max-width: 300px;
}

.footer h4 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--ivory);
    font-family: var(--font-title);
    font-weight: 500;
}

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

.footer ul a, .footer-services li {
    color: #d1d5db;
}

.footer ul a:hover {
    color: var(--brand-gold);
}

.footer-contact p {
    color: #d1d5db;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--brand-gold);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--charcoal);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    z-index: 1000;
}

.mobile-sticky-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: var(--ivory);
    font-size: 0.8rem;
    gap: 6px;
    border-right: 1px solid var(--glass-border);
}

.mobile-sticky-bar a:last-child {
    border-right: none;
}

.mobile-sticky-bar a i {
    font-size: 1.2rem;
}

.mobile-sticky-bar .whatsapp {
    background: var(--emerald);
    color: var(--ivory);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid, .popular-grid, .comfort-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--charcoal);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav.active {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .quick-action-bar {
        grid-template-columns: repeat(2, 1fr);
        margin: -20px 20px 40px;
    }
    
    .action-card {
        border-bottom: 1px solid var(--glass-border);
    }
    
    .action-card:nth-child(even) {
        border-right: none;
    }
    
    .services-grid, .gallery-grid, .reviews-grid, .contact-wrapper, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 40px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .mobile-sticky-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 60px; /* Space for sticky bar */
    }
}

@media (max-width: 480px) {
    .trust-grid, .popular-grid, .comfort-grid, .benefits-grid, .timeline {
        grid-template-columns: 1fr;
    }
    
    .offer-cards {
        flex-direction: column;
    }
}
