/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --apple-blue: #007AFF;
    --apple-gray: #6e6e73;
    --apple-border: #E5E5E5;
    --apple-bg: #F5F5F7;
    --text-black: #000000;
    --bg-white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-black);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px; /* Space for mobile bottom bar */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* =========================================
   3. UTILITIES & BUTTONS
   ========================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.desktop-only {
    display: none;
}

.hidden {
    display: none;
}

.btn {
    display: inline-block;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--text-black);
    color: var(--bg-white);
    border: 1px solid var(--text-black);
}

.btn-primary:hover {
    background-color: #1f2937;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--apple-border);
    color: var(--text-black);
}

.btn-outline:hover {
    border-color: var(--text-black);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: 1px solid #25D366;
}

/* =========================================
   4. NAVBAR & MENU
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--apple-border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--apple-blue);
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--apple-gray);
}

.nav-links a:hover {
    color: var(--text-black);
}

.menu-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-black);
}

.menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--apple-border);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-menu.open {
    max-height: 300px;
    opacity: 1;
}

.mobile-menu-links {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--apple-gray);
}

.mobile-link:hover {
    color: var(--text-black);
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
    border-top: 1px solid var(--apple-border);
    border-bottom: 1px solid var(--apple-border);
    padding-top: 8rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.hero-content,
.hero-image {
    width: 100%;
}

.subtitle {
    color: var(--apple-gray);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.25rem;
    color: var(--apple-gray);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.location-text {
    color: var(--apple-gray);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Updated Image Placeholder for Circular Portrait */
.image-placeholder {
    /* Make it a square, then turn it into a circle */
    aspect-ratio: 1 / 1;
    border-radius: 50%;

    /* Make it smaller and center it */
    max-width: 350px; /* Adjust this value if you want it bigger/smaller */
    width: 100%;
    margin: 0 auto; /* Centers the circle horizontally */

    /* Keep Apple-style border and background */
    background-color: var(--apple-bg);
    border: 1px solid var(--apple-border);

    /* Ensure the image stays inside the circle */
    overflow: hidden;

    /* Flex centering for placeholder text (if image doesn't load) */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Style the image tag itself to fill the circle perfectly */
.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the photo fills the circle without stretching */
    display: block;
    position: absolute; /* Sits on top of placeholder text */
    top: 0;
    left: 0;
}

/* Hide the placeholder text since we have a real image now */
.image-placeholder span {
   visibility: hidden; 
}

/* =========================================
   6. FEATURES BANNER
   ========================================= */
.features-banner {
    border-top: 1px solid var(--apple-border);
    border-bottom: 1px solid var(--apple-border);
    border-top: 1px solid var(--apple-border);
    border-bottom: 1px solid var(--apple-border);
    padding: 2rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
    color: var(--apple-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

/* =========================================
   7. ABOUT SECTION
   ========================================= */
.about-section {
    border-top: 1px solid var(--apple-border);
    border-bottom: 1px solid var(--apple-border);
    padding: 6rem 24px;
    display: grid;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--apple-gray);
    line-height: 1.625;
    margin-bottom: 1.5rem;
}
/* =========================================
   7.5 CHAMBER GALLERY SECTION
   ========================================= */
.gallery-section {
    border-top: 1px solid var(--apple-border);
    border-bottom: 1px solid var(--apple-border);
    padding: 6rem 24px;
    /* padding-top: 30px;
    padding-bottom: 30px; */
    text-align: center;
}

.gallery-section h2 {
    margin-bottom: 3rem;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Keeps it from getting too wide on huge monitors */
    margin: 0 auto;
    aspect-ratio: 16 / 9; /* Locks the box into a perfect landscape rectangle */
    border-radius: 2rem;
    border: 1px solid var(--apple-border);
    overflow: hidden;
    background-color: var(--apple-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft, premium shadow */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* Default state: hidden and slightly pushed to the right */
    opacity: 0;
    transform: translateX(50px); 
    
    /* Smooth 1-second animation for both fading and sliding */
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.slide.active {
    /* Active state: fully visible and exactly in the center */
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slide.exit {
    /* Exit state: fading out and sliding away to the left */
    opacity: 0;
    transform: translateX(-50px);
    z-index: 1;
}
/* =========================================
   8. SCHEDULE & BOOKING SECTIONS
   ========================================= */
.schedule-section {
    border-top: 1px solid var(--apple-border);
    border-bottom: 1px solid var(--apple-border);
    background-color: var(--apple-bg); /* Section 5: Gets Background */
    padding: 6rem 0;
}

.booking-section {
    padding: 6rem 0;
    background-color: transparent; /* Section 6: No Background */
}

/* Centers the separated cards elegantly */
.centered-card {
    max-width: 800px;
    margin: 0 auto;
}

.card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid var(--apple-border);
}

.info-group {
    margin-bottom: 1.5rem;
}

.info-label {
    font-size: 0.875rem;
    color: var(--apple-gray);
    margin-bottom: 0.25rem;
}

.divider {
    height: 1px;
    width: 100%;
    background-color: var(--apple-border);
    margin: 1.5rem 0;
}

.schedule-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.schedule-list .time {
    color: var(--apple-gray);
    font-weight: 400;
}

.info-italic {
    font-size: 0.875rem;
    color: var(--apple-gray);
    font-style: italic;
}

.aj{
    color : rgb(241, 79, 79)
}

.close-day{
    color: rgba(255, 164, 164, 0.521);
}
/* --- Booking Form --- */
.booking-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-form-wrapper h3 {
    margin-bottom: 2rem;
    text-align: center;
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.apple-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--apple-border);
    padding: 0.75rem 0;
    background: transparent;
    transition: border-color 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
    color: var(--apple-gray);
    outline: none;
}

.apple-input:focus {
    border-bottom-color: var(--text-black);
    color: var(--text-black);
}

.apple-input:invalid {
    color: var(--apple-gray);
}

.apple-input:valid {
    color: var(--text-black);
}

input[type="date"].apple-input {
    cursor: pointer;
}

input[type="date"].apple-input::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
    padding: 5px;
}

input[type="date"].apple-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.checkbox-group input {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--text-black);
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.875rem;
    color: var(--apple-gray);
    cursor: pointer;
    user-select: none;
}

.checkbox-group label:hover {
    color: var(--text-black);
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

/* --- New Form Fields Styling --- */
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    color: var(--apple-gray);
    pointer-events: none; 
}

.input-with-icon .apple-input {
    padding-left: 30px; 
}

/* --- Gender Radio Buttons --- */
.gender-section {
    margin: 0.5rem 0;
}

.section-label {
    font-size: 0.875rem;
    color: var(--apple-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--apple-gray);
    transition: color 0.3s ease;
}

.radio-label:hover, .radio-label input:checked + span {
    color: var(--text-black);
    font-weight: 500;
}

.radio-label input[type="radio"] {
    accent-color: var(--text-black); 
    width: 1.1rem;
    height: 1.1rem;
    cursor: pointer;
}

/* --- Premium Time Slot Buttons --- */
.time-picker-section {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.slot-heading {
    font-size: 0.85rem;
    color: var(--apple-gray);
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Forces exactly 2 buttons per row on mobile */
    gap: 0.5rem; /* Slightly tighter gap */
}

.time-slot-btn {
    background-color: transparent;
    border: 1px solid var(--apple-border);
    color: var(--apple-gray);
    padding: 0.5rem 0.25rem; /* Smaller padding to fit phone screens */
    border-radius: 0.5rem;
    font-size: 0.75rem; /* Smaller font for mobile */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.time-slot-btn.active {
    background-color: var(--text-black);
    color: var(--bg-white);
    border-color: var(--text-black);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.form-submit {
    padding-top: 1.5rem;
}

/* --- Dynamic Status Message --- */
.status-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.status-progress {
    color: #004085;
    background-color: #cce5ff;
    border: 1px solid #b8daff;
}

.status-error {
    color: #d93025;
    background-color: #fce8e6;
    border: 1px solid #fad2cf;
}

.status-success {
    color: #1a7f37;
    background-color: #e6f6ec;
    border: 1px solid #cce8d6;
}


/* =========================================
   9. WHY CHOOSE SECTION
   ========================================= */
.why-choose-section {
    border-top: 1px solid var(--apple-border);
    border-bottom: 1px solid var(--apple-border);
    padding: 6rem 24px;
    text-align: center;
}

.features-cards {
    display: grid;
    gap: 2rem;
    text-align: left;
    margin-top: 3rem;
}

.card-hover {
    padding: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.card-hover:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-hover p {
    font-size: 0.875rem;
    color: var(--apple-gray);
}

/* =========================================
   10. CONTACT SECTION
   ========================================= */
.contact-section {
    border-top: 1px solid var(--apple-border);
    border-bottom: 1px solid var(--apple-border);
    padding: 5rem 24px;
    text-align: center;
}

.contact-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.phone-link {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--apple-blue);
    transition: opacity 0.3s ease;
    letter-spacing: -0.025em;
}

.phone-link:hover {
    opacity: 0.8;
}
/* =========================================
   10.5 REVIEWS SECTION
   ========================================= */
.reviews-section {
    border-top: 1px solid var(--apple-border);
    border-bottom: 1px solid var(--apple-border);
    padding: 6rem 24px;
    text-align: center;
}

.reviews-section h2 {
    margin-bottom: 3rem;
}

.review-slider-container {
    position: relative;
    width: 100%;
    max-width: 800px; 
    margin: 0 auto;
    aspect-ratio: 21 / 9; 
    border-radius: 1.5rem;
    border: 1px solid var(--apple-border);
    overflow: hidden;
    background-color: #131314; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer; /* Lets users know they can click it */
}

/* --- Dot Indicators --- */
.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--apple-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--text-black);
    transform: scale(1.3); /* Slightly enlarges the active dot */
}

/* --- Slide Animation States --- */
.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; 
    /* padding: 1rem; */
    opacity: 0;
    transform: translateX(100%); 
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    z-index: 1;
    /* NEW: Stops the browser from thinking you are trying to "drag and save" the image */
    pointer-events: none; 
    user-select: none;
    -webkit-user-drag: none;
}

.no-transition {
    transition: none !important;
}

.review-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.review-slide.exit-left {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.review-slide.exit-right {
    opacity: 0;
    transform: translateX(100%);
    z-index: 1;
}
/* =========================================
   11. FOOTER
   ========================================= */
footer {
    padding: 24px; 
    font-size: 0.875rem;
    color: var(--apple-gray);
    background-color: var(--apple-bg); /* Keeps your alternating background pattern */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 Column for Mobile */
    gap: 2.5rem;
    text-align: center; /* Centers all text on mobile */
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Consistent spacing between text lines */
}

.footer-title {
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* --- Left Section: Social Links --- */
.footer-social-text {
    margin-top: 1rem;
    font-weight: 500;
}

.footer-social-text a {
    transition: color 0.3s ease;
}

.footer-social-text a:hover {
    color: var(--text-black);
}

/* --- Middle Section: Quick Links --- */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-links a {
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--text-black);
}

/* --- Right Section: Contact Items --- */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center; /* Centers icon and text together on mobile */
    gap: 0.75rem;
}

.footer-icon {
    font-size: 1.1rem;
    line-height: 1.2;
}

/* --- Bottom Copyright Bar --- */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--apple-border);
    text-align: center; /* Ensures it stays in the bottom middle */
}

.author-link {
    color: var(--text-black);
    font-weight: 600;
    transition: color 0.3s ease;
}

.author-link:hover {
    color: var(--apple-blue);
}

.facebook{
    color: #1877F2;
}

.instagram{
    color: #ff6d1edb;
}

/* =========================================
   12. MOBILE BOTTOM BAR
   ========================================= */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--apple-border);
    padding: 1rem;
    z-index: 40;
    display: flex;
    gap: 0.75rem;
}

.mobile-bottom-bar .btn {
    flex: 1;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

/* =========================================
   13. ANIMATIONS
   ========================================= */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

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

/* =========================================
   14. MEDIA QUERIES (At the very bottom)
   ========================================= */

/* Small Devices (Tablets/Phablets) */
@media (min-width: 600px) {
    .hero-buttons {
        flex-direction: row;
    }
    .schedule-list li {
        flex-direction: row;
        justify-content: space-between;
    }
    .input-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
}

@media (max-width: 600px) {
    /* .review-slider-container {
        aspect-ratio: 16 / 9; /* Makes the box slightly taller on mobile 
    }*/
    .slider-btn { width: 36px; height: 36px; }
    .slider-btn svg { width: 20px; height: 20px; }
    .prev-btn { left: 8px; }
    .next-btn { right: 8px; }
}

/* Medium Devices (Desktops/Laptops) */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
    .desktop-only {
        display: flex;
    }
    .mobile-only {
        display: none !important;
    }
    h1 {
        font-size: 4.5rem;
    }
    h2 {
        font-size: 3rem;
    }
    .hero {
        padding-top: 10rem;
        padding-bottom: 8rem;
        flex-direction: row;
    }
    .hero-content,
    .hero-image {
        width: 50%;
    }
    .description {
        font-size: 1.5rem;
    }
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .features-grid div:not(:last-child) {
        border-right: 1px solid var(--apple-border);
    }
    .about-section {
        grid-template-columns: repeat(2, 1fr);
    }
    .booking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    .phone-link {
        font-size: 3rem;
    }
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .footer-right {
        text-align: right;
    }
    .footer-social {
        justify-content: flex-start;
    }
    /* --- Desktop Footer Override --- */
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr; /* Creates 3 equal columns */
        text-align: left; /* Aligns all text to the left */
        align-items: start;
    }
    
    /* This creates the exact layout from your screenshot */
    .footer-col:nth-child(1) {
        justify-self: start; /* Locks Left column to the far Left */
    }
    
    .footer-col:nth-child(2) {
        justify-self: center; /* Perfectly centers the Middle column */
    }
    
    .footer-col:nth-child(3) {
        justify-self: end; /* Pushes Right column to the far Right */
    }
    
    .footer-contact-item {
        justify-content: flex-start; /* Stops icons from being centered on PC */
    }
}