/* ==========================================================================
   Design System & Custom Properties
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #242424;
    --accent-gold: #c5a880;
    --accent-gold-hover: #b3966e;
    --accent-gold-light: rgba(197, 168, 128, 0.1);
    --text-cream: #f9f6f0;
    --text-body: #a8a8a8;
    --text-muted: #6e6e6e;
    --text-white: #ffffff;
    --accent-green: #4e8c6f;
    
    /* Layout & Styling */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-large: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Luxury Glassmorphism & Shadows */
    --glass-bg: rgba(26, 26, 26, 0.8);
    --glass-border: rgba(197, 168, 128, 0.15);
    --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-inset: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-body);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-cream);
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
}

p {
    margin-bottom: 1.5rem;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Reusables & Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.img-responsive { width: 100%; height: auto; }
.rounded-luxury { border-radius: var(--border-radius-large); }

.text-gradient {
    background: linear-gradient(135deg, var(--text-cream) 30%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-cream);
    border-color: rgba(197, 168, 128, 0.4);
}

.btn-secondary:hover {
    background-color: var(--accent-gold-light);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* Badges & Tags */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-gold-light);
    border: 1px solid rgba(197, 168, 128, 0.2);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.tag-special {
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.svg-sparkle {
    animation: pulse 2s infinite ease-in-out;
}

/* Sections Structure */
section {
    padding: 100px 0;
    position: relative;
}

.section-subtitle {
    display: block;
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: var(--text-body);
}

/* ==========================================================================
   Header Navigation Styling
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

/* Logo Design */
.logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-cream);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-next {
    color: var(--text-cream);
}

.logo-step {
    color: var(--accent-gold);
}

.logo-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-body);
    margin-top: 2px;
    font-weight: 500;
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-cream);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--text-cream);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section Styling
   ========================================================================== */
.hero-section {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 140px;
    padding-bottom: 120px;
}

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

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtext {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-body);
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.rating-display .stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.95rem;
    color: var(--text-cream);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* ==========================================================================
   About Section Styling
   ========================================================================== */
.about-section {
    background-color: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 480px;
    width: 100%;
}

.about-img-wrapper {
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--glass-border);
}

.about-img-wrapper img {
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover img {
    transform: scale(1.04);
}

.large-img {
    width: 70%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.small-img {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    border: 6px solid var(--bg-primary);
}

.about-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-cream);
    margin-bottom: 20px;
}

.about-info p {
    font-size: 0.98rem;
    color: var(--text-body);
    margin-bottom: 24px;
}

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

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    border: 1px solid rgba(197, 168, 128, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================================================
   Services Section Styling
   ========================================================================== */
.services-section {
    background-color: var(--bg-secondary);
}

.tabs-container {
    margin-top: 30px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 50px;
    gap: 15px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 16px 24px;
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--text-cream);
}

.tab-btn.active {
    color: var(--accent-gold);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-icon {
    transition: var(--transition-smooth);
}

.tab-btn.active .tab-icon {
    stroke: var(--accent-gold);
}

/* Tab Panels Content */
.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.service-panel-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.service-media {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--glass-border);
}

.service-featured-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-media:hover .service-featured-img {
    transform: scale(1.03);
}

.service-media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.95) 20%, rgba(18, 18, 18, 0.4) 70%, transparent 100%);
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-media-overlay h4 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--accent-gold);
}

.service-media-overlay p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
}

.service-media-text {
    background-color: var(--bg-primary);
    padding: 40px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-luxury);
}

.home-services-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.home-services-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.bullet-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-tag {
    background-color: var(--accent-gold-light);
    border: 1px solid rgba(197, 168, 128, 0.15);
    color: var(--text-cream);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Service Item Menu Styling */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item {
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    transform: translateX(4px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.menu-item-name {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-cream);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
}

.menu-item.highlights {
    border-left: 2px solid var(--accent-gold);
    padding-left: 16px;
    border-bottom-style: solid;
    background: linear-gradient(90deg, rgba(197, 168, 128, 0.03) 0%, transparent 100%);
}

/* ==========================================================================
   Gallery Section Styling
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-primary);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 280px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

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

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    border: 1px solid var(--accent-gold);
}

.gallery-hover span {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-weight: 500;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

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

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

.gallery-item:hover .gallery-hover span {
    transform: translateY(0);
}

/* ==========================================================================
   Reviews/Testimonials Styling
   ========================================================================== */
.reviews-section {
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.testimonials-carousel-wrapper {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.carousel-container {
    display: flex;
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    background-color: var(--bg-primary);
    padding: 40px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-luxury);
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent-gold-light);
    line-height: 1;
    height: 35px;
    margin-top: -20px;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-cream);
    margin-bottom: 25px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.reviewer-name {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.rating-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
}

.control-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-body);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.control-btn:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    background-color: var(--accent-gold-light);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--accent-gold);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   Contact & Booking Form Styling
   ========================================================================== */
.contact-section {
    background-color: var(--bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
}

/* Form Styles */
.booking-form-wrapper {
    background-color: var(--bg-secondary);
    padding: 48px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-luxury);
}

.booking-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.form-instructions {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-cream);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-cream);
    padding: 12px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.form-group textarea {
    resize: none;
}

.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-cream);
}

/* Contact Details Card */
.details-card {
    background-color: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-luxury);
    margin-bottom: 24px;
}

.details-card h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.contact-meta-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.meta-item {
    display: flex;
    gap: 16px;
}

.meta-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.meta-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.meta-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-body);
}

.hover-underline:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.tag-location-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px !important;
}

.tag-location-note strong {
    color: var(--accent-gold);
}

.tag-popular {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-top: 4px !important;
    background-color: var(--accent-gold-light);
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
}

.map-container {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-luxury);
}

/* ==========================================================================
   Footer Styling
   ========================================================================== */
.main-footer {
    background-color: #0b0b0b;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
}

.social-links a:hover {
    color: var(--bg-primary);
    background-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.3);
}

.footer-links h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-body);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
}

.contact-footer-tel {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    font-weight: 500;
}

.contact-footer-tel a {
    color: var(--accent-gold) !important;
    font-weight: 600;
}

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

/* ==========================================================================
   Success Modal Overlay & Popup
   ========================================================================== */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.booking-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal {
    background-color: var(--bg-secondary);
    border: 1px solid var(--accent-gold);
    border-radius: var(--border-radius-large);
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.open .booking-modal {
    transform: scale(1);
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    border: 1px solid rgba(197, 168, 128, 0.25);
}

.booking-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.booking-modal p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 24px;
}

.modal-summary {
    background-color: var(--bg-primary);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: left;
    margin-bottom: 30px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-summary p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-body);
    display: flex;
    justify-content: space-between;
}

.modal-summary p strong {
    color: var(--text-cream);
}

.modal-summary p span {
    color: var(--accent-gold);
    font-weight: 500;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Scroll Reveling */
.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 3.25rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-panel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-featured-img {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Menu Drawer for Mobile */
    .hamburger-menu {
        display: block;
        z-index: 1100;
    }
    
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        padding: 100px 40px 40px 40px;
        transition: var(--transition-smooth);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 28px;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .header-cta {
        display: none; /* Hide on small screens to avoid clutter */
    }
    
    /* Layouts */
    .hero-section {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-form-wrapper {
        padding: 30px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .review-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    background-color: #20ba5a;
    color: white;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
