:root {
    /* New Minimal Luxury Palette */
    --primary-color: #C5A059; /* Subtle Gold Accents */
    --primary-light: #E0C080;
    --primary-dark: #A67C37;
    --bg-base: #F5EBE0; /* Warm Beige / Nude Base */
    --bg-card: #FAF6F2; /* Lighter Cream for cards */
    --text-main: #0A0A0A; /* Black Text */
    --text-secondary: #4A3B2F; /* Brown Text */
    --text-muted: #8E8D8A;
    --text-on-dark: #FFFFFF;
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(74, 59, 47, 0.1); /* Brownish border */
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    --ui-font: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Layout */
    --container-max-width: 1200px;
    --section-spacing: 120px;
}

/* Grain Aesthetic Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9990;
    opacity: 0.05;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    background-repeat: repeat;
}

/* Magnetic Utility */
.magnetic {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Text Reveal Masking */
.reveal-text-container {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
}

.reveal-text-line {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    /* Responsive side padding for mobile fit */
}

span {
    color: var(--primary-color);
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 700;
}

p {
    color: var(--text-secondary); /* Brown Text for body copy */
}

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

ul {
    list-style: none;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: transparent;
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 80px;
    background-color: rgba(245, 235, 224, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

header nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.luxe-logo {
    height: 100px;
    width: auto;
    filter: brightness(1.1);
    transition: var(--transition-smooth);
}

header.scrolled .luxe-logo {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav_links a {
    font-family: var(--ui-font);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary); /* Brownish nav links */
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-cta {
    display: block;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-base);
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1.0; /* Full brightness */
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-main);
}

.hero p {
    font-size: 1.2rem;
    margin: 0 auto 40px;
    max-width: 500px;
    color: var(--text-secondary); /* Brown */
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-family: var(--ui-font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition-smooth);
}

.btn.primary {
    background-color: var(--text-main); /* Black background for buttons */
    color: var(--text-on-dark);
}

.btn.primary:hover {
    background-color: var(--primary-color); /* Gold on hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn.secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-5px);
}

.btn.lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn.xl {
    padding: 22px 60px;
    font-size: 1.25rem;
}

/* --- Section Styling --- */
section {
    padding: var(--section-spacing) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ui-font);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.subtitle::before, .subtitle::after {
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 0 15px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Adaptive grid for better mobile stacking */
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(197, 160, 89, 0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    pointer-events: none;
}

.booking-input {
    width: 100%;
    background: rgba(42, 42, 42, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.booking-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(42, 42, 42, 0.6);
}

.mb-15 { margin-bottom: 15px; }

.service-card:hover::after {
    left: 150%;
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 20px rgba(197, 160, 89, 0.2);
}

.service-img {
    height: 420px;
    width: 100%;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top; /* Ensures the braids and hair design stay centered/at the top */
    transition: var(--transition-smooth);
}

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-info p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.price {
    display: block;
    font-family: var(--ui-font);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-carousel {
    width: 100%;
    aspect-ratio: 1 / 1.25;
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    box-shadow: 20px 20px 0 var(--primary-color);
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    transform: scale(0.9);
    opacity: 0.4;
    filter: blur(5px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide.active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-color);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-family: var(--ui-font);
    font-weight: 500;
}

.stylist-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0 35px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.signature-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.signature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signature-text .name {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 5px;
}

.signature-text .role {
    font-family: var(--ui-font);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- Booking (Advanced Schedule System) --- */
.container-booking {
    max-width: 1100px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.booking-calendar-card, .booking-details-card {
    background: transparent;
    border: none;
    border-radius: 20px;
    padding: 20px 0;
    box-shadow: none;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.month-label {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-main);
}

.cal-nav-btn {
    width: 35px;
    height: 35px;
    background: none;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.cal-nav-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    text-align: center;
}

.calendar-day {
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--body-font);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin: 0 auto;
}

.calendar-day:hover:not(.day-empty):not(.day-unavailable) {
    background: var(--bg-base);
    color: var(--text-main);
}

.day-unavailable {
    color: var(--text-muted);
    opacity: 0.3;
    pointer-events: none;
    text-decoration: line-through;
}

/* Specific state from user screenshot */
.day-active-selected {
    background-color: #0A0A0A !important;
    color: #FFFFFF !important;
}

.day-selected-secondary {
    background-color: #8E8D8A !important;
    color: #FFFFFF !important;
}

.legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 30px;
    font-size: 0.85rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.available { background-color: #4A3B2F; }
.dot.unavailable { background-color: #FFFFFF; border: 1px solid #EAEAEA; }
.dot.selected { background-color: #8E8D8A; }

.notice-text {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Service Selection Styling */
.style-selection-wrapper {
    margin: 25px 0 35px;
}

.style-selection-wrapper label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.style-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.style-item {
    padding: 15px 22px;
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.style-item:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--primary-color);
}

.style-item.selected {
    background: #FFF;
    border-color: var(--text-main);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.style-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.style-name {
    font-family: var(--ui-font);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
}

.style-price {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.check-icon {
    font-size: 1.3rem;
    color: var(--primary-color);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition-smooth);
}

.style-item.selected .check-icon {
    opacity: 1;
    transform: scale(1);
}

/* Time Grid Configuration */
.time-grid-wrapper {
    margin-top: 30px;
}

.time-grid-wrapper label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

.time-btn {
    padding: 12px;
    border: 1px solid var(--glass-border);
    background: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--ui-font);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    color: var(--text-main);
}

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

.time-btn.active {
    background-color: var(--text-main);
    color: #FFF;
    border-color: var(--text-main);
}

.time-placeholder {
    grid-column: span 2;
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 968px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

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

.detail-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--body-font);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* --- Footer --- */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

/* --- Animations --- */
.fade-up {
    animation: fadeUp 1s ease forwards;
}

.fade-up-delay {
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.fade-up-delay-2 {
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* --- Pricing & Policy (Dark Glossy) --- */
.dark-glossy-section {
    background-color: #050505;
    background-image: radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent 50%),
                      radial-gradient(circle at bottom left, rgba(197, 160, 89, 0.05), transparent 50%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.pricing-policy-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.glossy-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.cursive-title {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.price-category {
    margin-bottom: 35px;
}

.price-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.category-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    padding: 2px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 5px;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.price-category h3 {
    font-family: var(--ui-font);
    font-size: 1.1rem;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-family: var(--body-font);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.price-list li::after {
    content: '';
    flex-grow: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    margin: 0 15px;
    position: relative;
    top: -5px;
}

.price-list li span:last-child {
    font-family: var(--ui-font);
    font-weight: 600;
    color: #FFFFFF;
}

/* Policy Card Specifics */
.policy-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.policy-border {
    border: 1px solid rgba(197, 160, 89, 0.6);
    padding: 10px 40px;
    margin-bottom: 40px;
    width: 100%;
}

.policy-border .cursive-title {
    margin-bottom: 0;
    font-size: 4rem;
}

.policy-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
}

.policy-content .highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--ui-font);
    margin-bottom: 20px;
}

.btn.primary-gold {
    display: block;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    padding: 15px 0;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn.primary-gold:hover {
    background-color: var(--primary-color);
    color: #0A0A0A;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(245, 235, 224, 0.98);
        padding: 30px;
        flex-direction: column;
        gap: 25px;
        align-items: center;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        z-index: 999;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    }

    .nav-links.active {
        display: flex;
        animation: slideDownFade 0.4s ease forwards;
    }

    @keyframes slideDownFade {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .about-grid, .contact-grid, .pricing-policy-grid {
        grid-template-columns: 1fr;
    }
    
    .about-carousel {
        box-shadow: 10px 10px 0 var(--primary-color);
    }
    
    .about-img {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
    
    .glossy-card {
        padding: 40px 25px;
    }

    .booking-calendar-card, .booking-details-card {
        padding: 24px 15px; /* Less padding to fit on iPhone SE */
    }

    .calendar-days-grid {
        gap: 6px;
    }

    .calendar-day {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    .month-label {
        font-size: 1.6rem;
    }

    .legend {
        gap: 10px;
        flex-wrap: wrap;
    }

    .style-item {
        padding: 12px 15px;
    }
    
    .contact-form {
        margin-top: 10px; /* Fix any clipping from bottom elements */
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.booking-select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: var(--body-font);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.booking-select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.booking-select option {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 10px;
}

.booking-select optgroup {
    background-color: #1A1A1A;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
/* --- Mobile Responsiveness Enhancements --- */
@media (max-width: 968px) {
    :root {
        --section-spacing: 80px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-carousel {
        box-shadow: 10px 10px 0 var(--primary-color);
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .pricing-policy-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- Success Modal Styling --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--primary-color);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 550px;
    width: 95%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.modal-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 25px;
}

.modal-details-list {
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    margin-bottom: 30px;
}

.modal-details-list p {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.modal-details-list hr {
    border: none;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    margin: 15px 0;
}

.modal-details-list strong {
    color: var(--text-main);
    font-weight: 700;
}

.modal-details-list a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-primary {
    background: var(--text-main);
    color: #FFF;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-family: var(--ui-font);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .modal-content {
        padding: 40px 15px;
        width: 95%;
    }
    .modal-title {
        font-size: 1.8rem;
    }
    .modal-details-list {
        padding: 15px;
    }
}
