/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES
   Sakshi Saluja Makeovers & Salon
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Colors */
    --primary-hsl: 155, 14%, 43%;
    --primary: hsl(var(--primary-hsl));             /* Elegant Sage Green */
    --primary-dark: #435b50;
    --primary-light: #eef2f0;
    
    --accent-hsl: 36, 40%, 64%;
    --accent: hsl(var(--accent-hsl));               /* Muted Champagne Gold */
    --accent-gold: #c5a059;                         /* Rich Gold for buttons/text */
    
    --bg-main: #faf7f2;                             /* Warm Alabaster/Ivory background */
    --bg-secondary: #efebe4;                        /* Soft Sand/Cream */
    --bg-dark: #232220;                             /* Espresso/Charcoal for dark sections */
    --bg-dark-light: #2c2b29;
    
    --text-main: #2c2b29;                           /* Charcoal (softer than black) */
    --text-muted: #76716b;                          /* Muted Grey */
    --text-white: #ffffff;
    
    --white: #ffffff;
    --success: #5f9e7f;
    --error: #c55a5a;
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', Helvetica, Arial, sans-serif;
    --font-ui: 'Outfit', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(95, 125, 112, 0.06);
    --shadow-md: 0 8px 24px rgba(95, 125, 112, 0.1);
    --shadow-lg: 0 16px 40px rgba(95, 125, 112, 0.15);
    --shadow-gold: 0 8px 20px rgba(197, 160, 89, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

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

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

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

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* --- Utility Typography & Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }
.margin-right-sm { margin-right: 8px; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.items-center { align-items: center; }

/* Grid Layouts */
.grid {
    display: grid;
    gap: 24px;
}
.grid-2col {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3col {
    grid-template-columns: repeat(3, 1fr);
}
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 40px; }

/* Section Formatting */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text-main);
    transform: translateY(-2px);
}

.btn-outline.btn-gold {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline.btn-gold:hover {
    background-color: var(--accent-gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

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

/* --- Top Bar & Sticky Navigation Header --- */
.top-bar {
    background-color: var(--bg-secondary);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(95, 125, 112, 0.1);
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item svg {
    color: var(--primary);
}

.main-header {
    background-color: rgba(250, 247, 242, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(95, 125, 112, 0.05);
}

.main-header.scrolled {
    padding: 12px 0;
    background-color: rgba(250, 247, 242, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--text-main);
}

.logo-subtitle {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 3.5px;
    margin-top: 2px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    position: relative;
    padding: 6px 0;
}

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

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

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

/* Mobile Nav Drawer & Hamburger Toggle */
.mobile-nav-toggle {
    display: none;
    color: var(--text-main);
    font-size: 1.5rem;
}

.mobile-nav-drawer {
    position: fixed;
    top: 93px; /* Just below header */
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--bg-main);
    z-index: 99;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    border-top: 1px solid rgba(95, 125, 112, 0.1);
}

.mobile-nav-drawer.open {
    height: calc(100vh - 93px);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-main);
    border-bottom: 1px solid rgba(95, 125, 112, 0.05);
    padding-bottom: 12px;
}

.mobile-link:hover {
    color: var(--accent-gold);
    padding-left: 8px;
}

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

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 25%;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-content {
    max-width: 650px;
    color: var(--white);
}

.hero-badge {
    background-color: rgba(95, 125, 112, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title .highlight {
    font-style: italic;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    color: var(--accent);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* --- About & Ethos Section --- */
.about-section {
    background-color: var(--bg-main);
}

.about-images-grid {
    position: relative;
    padding-right: 50px;
}

.about-img-container {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-img-container img {
    width: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img-container:hover img {
    transform: scale(1.05);
}

.about-images-grid .main-img {
    width: 80%;
    height: 480px;
}

.about-images-grid .main-img img {
    height: 100%;
}

.about-images-grid .secondary-img {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 50%;
    height: 280px;
    border: 8px solid var(--bg-main);
    z-index: 2;
}

.about-images-grid .secondary-img img {
    height: 100%;
}

.about-floating-card {
    position: absolute;
    top: 40px;
    right: 10%;
    background-color: rgba(95, 125, 112, 0.9);
    backdrop-filter: blur(10px);
    padding: 24px 30px;
    border-radius: var(--radius-sm);
    color: var(--white);
    display: flex;
    flex-direction: column;
    z-index: 3;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-floating-card .card-title {
    font-family: var(--font-ui);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.about-floating-card .card-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    margin-top: 4px;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 12px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.feature-title {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-signature-container {
    border-top: 1px solid rgba(95, 125, 112, 0.1);
    padding-top: 24px;
}

.author-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.author-title {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

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

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 14px 28px;
    background-color: var(--bg-main);
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.tab-btn:hover {
    color: var(--text-main);
    background-color: var(--white);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

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

/* Service Cards */
.service-item-card {
    background-color: var(--bg-main);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-normal);
    border-left: 0px solid var(--accent-gold);
}

.service-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-gold);
    background-color: var(--white);
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-main);
}

.service-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}

.service-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    text-align: right;
}

.service-price {
    font-family: var(--font-ui);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.service-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
}

.services-cta {
    margin-top: 60px;
    font-size: 1rem;
    color: var(--text-muted);
}

.services-cta p {
    margin-bottom: 20px;
}

/* --- Filterable Gallery Section --- */
.gallery-section {
    background-color: var(--bg-main);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(95, 125, 112, 0.2);
    transition: var(--transition-normal);
}

.filter-btn:hover {
    color: var(--text-main);
    border-color: var(--primary);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.gallery-item.hidden {
    display: none !important;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(44, 43, 41, 0.1), rgba(44, 43, 41, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 2;
}

.overlay-text {
    transform: translateY(20px);
    transition: transform var(--transition-normal);
    color: var(--white);
}

.item-cat {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.item-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
}

.view-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    padding: 10px;
    border-radius: var(--radius-full);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.view-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Hover effects */
.gallery-item:hover img {
    transform: scale(1.06);
}

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

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

.gallery-item:hover .view-btn {
    opacity: 1;
    transform: scale(1);
}

/* --- Lightbox Modal --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 34, 32, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    text-align: center;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 12px;
    transition: var(--transition-normal);
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--accent-gold);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* --- Reviews Section --- */
.reviews-section {
    background-color: var(--bg-secondary);
}

.rating-badge-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

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

.rating-count {
    font-size: 0.8rem;
    font-family: var(--font-ui);
    color: var(--text-muted);
}

.reviews-carousel-wrapper {
    max-width: 800px;
    margin: 50px auto 0 auto;
    position: relative;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    transition: transform var(--transition-slow);
}

.review-card {
    min-width: 100%;
    box-sizing: border-box;
    background-color: var(--bg-main);
    padding: 50px 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.review-quote {
    position: absolute;
    top: 30px;
    left: 40px;
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 0.1;
    color: rgba(95, 125, 112, 0.08);
}

.review-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.author-name {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
}

.author-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: rgba(95, 125, 112, 0.2);
    transition: var(--transition-normal);
}

.dot-btn.active {
    background-color: var(--primary);
    width: 24px;
}

/* --- Contact & Booking Section --- */
.contact-section {
    background-color: var(--bg-dark);
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.text-white {
    color: var(--white) !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.contact-lead {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent);
    padding: 12px;
    border-radius: var(--radius-sm);
}

.detail-title {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.detail-desc {
    font-size: 0.9rem;
    line-height: 1.5;
}

.hover-gold:hover {
    color: var(--accent) !important;
}

.maps-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Booking Card Form */
.booking-form-card {
    background-color: var(--bg-dark-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 30px;
}

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

.form-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

select.form-input option {
    background-color: var(--bg-dark-light);
    color: var(--white);
}

.text-area {
    height: 100px;
    resize: none;
}

/* --- Footer Section --- */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-links a {
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.04);
    padding: 10px;
    border-radius: var(--radius-full);
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.footer-group-title {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 1024px) {
    .grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-images-grid .main-img {
        height: 400px;
    }
    .about-images-grid .secondary-img {
        height: 240px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 2.1rem;
    }
    .grid-2col, .grid-3col, .footer-content {
        grid-template-columns: 1fr;
    }
    .gap-4 { gap: 30px; }
    
    /* Top bar */
    .top-bar-content {
        justify-content: center;
        gap: 20px;
    }
    .hide-mobile {
        display: none !important;
    }
    
    /* Nav */
    .desktop-nav {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }
    
    /* Hero */
    .hero-section {
        height: 80vh;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .hero-stats {
        gap: 20px;
    }
    
    /* About */
    .about-images-grid {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .about-images-grid .main-img {
        width: 100%;
        height: 320px;
    }
    .about-floating-card {
        top: 20px;
        right: 20px;
        padding: 12px 18px;
    }
    .about-floating-card .card-subtitle {
        font-size: 1.15rem;
    }
    
    /* Services & Cards */
    .services-tabs {
        gap: 8px;
    }
    .tab-btn {
        padding: 10px 18px;
        font-size: 0.75rem;
    }
    .service-item-card {
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .service-price-block {
        align-items: flex-start;
        text-align: left;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 300px;
    }
    .gallery-overlay {
        opacity: 1; /* Always visible on mobile */
        background-image: linear-gradient(rgba(44, 43, 41, 0.2), rgba(44, 43, 41, 0.7));
    }
    .overlay-text {
        transform: translateY(0);
    }
    .view-btn {
        display: none; /* Hide zoom clicker icon in favour of clicking the item container */
    }
    
    /* Lightbox */
    .lightbox-content img {
        max-width: 95%;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    
    /* Reviews */
    .review-card {
        padding: 30px;
    }
    .review-quote {
        font-size: 5rem;
        left: 20px;
        top: 15px;
    }
    
    /* Booking Form */
    .booking-form-card {
        padding: 24px;
    }
}
