/* --- Root Variables --- */
:root {
    --primary-gold: #c59d5f;
    --hover-gold: #a37f4a;
    --white: #ffffff;
    --black: #000000;
    --border-light: rgba(255, 255, 255, 0.1);
    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
     --action-red: #ff1f1f;
     --bg-overlay: rgba(0, 0, 0, 0.97);
}

 

/* --- Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
}

/* --- Header & Nav --- */
header {
    position: absolute;
    width: 100%;
    z-index: 10;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    font-size: 12px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-light);
}

.contact-info i {
    color: var(--primary-gold);
    margin-right: 8px;
    font-size: 0.9rem;
}

.contact-info span {
    margin-right: 15px;
}

 
.cart-info i {
    color: var(--primary-gold);
    margin-right: 10px;
    font-size: 1.1rem; /* Slightly larger for visual balance */
}
.btn-appointment {
    border: 1px solid var(--primary-gold);
    padding: 8px 15px;
    color: var(--primary-gold);
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s ease;
}

.btn-appointment:hover {
    background: var(--primary-gold);
    color: var(--white);
}

nav {
    text-align: center;
    padding: 30px 0;
}

.logo-container h1 {
    font-family: var(--font-display);
    letter-spacing: 6px;
    font-size: 28px;
    margin-top: 5px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--primary-gold);
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    letter-spacing: 2px;
    transition: 0.3s;
    text-transform: uppercase;
}

.nav-links a.active, 
.nav-links a:hover {
    color: var(--primary-gold);
}


 .logo-icon img {
    width: 200px;      /* Increased from 150px */
    max-width: 100%;   /* Ensures it stays responsive */
    height: auto;
    display: block;
    margin: 0 auto;
}

.logo-icon {
    margin-bottom: 15px; /* More space between image and text */
}

.logo-icon a {
    text-decoration: none;
    display: inline-block; /* Maintains the spacing you set in your logo-icon class */
}

.site-logo {
    border: none; /* Removes any default link borders on older browsers */
}

/* Optional: If you want to keep the icon container spacing */
.logo-icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
 /* --- Search Bar Styling --- */
.search-container {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Minimalist Apple-style line */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 11px;
    letter-spacing: 2px;
    padding: 8px 35px 8px 5px; /* Space for your image icon */
    width: 250px; /* Initial width */
    transition: width 0.4s ease;
}

.search-input:focus {
     border-bottom-color: var(--primary-gold);
}

.search-input::placeholder {
    color: #666;
}

/* --- Custom Image Icon Styling --- */
.search-btn {
    position: absolute;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
}

.custom-search-img {
    width: 20px; /* Control size of your own image */
    height: auto;
     transition: 0.3s ease;
}

.search-wrapper:hover .custom-search-img {
    transform: scale(1.1);
 }

 
@media screen and (max-width: 768px) {
    /* 1. Make the actions container fill the right side */
    .sticky-actions {
        margin-left: auto; /* Pushes the entire block to the right */
        display: flex;
        justify-content: flex-end;
    }

    /* 2. Hide the text field */
    .search-input {
        display: none;
    }

    /* 3. Remove default wrappers and borders that might be adding space */
    .search-wrapper {
        border: none;
        background: transparent;
        margin: 0;
        padding: 0;
    }

    /* 4. Remove padding from the button itself to hit the edge */
    .search-btn {
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
    }

    /* 5. Optional: If the main container has padding, override it */
    .sticky-container {
        padding-right: 1px; /* Adjust this to 0 if you want it to touch the bezel */
    }
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .search-container {
        margin: 15px 0;
        width: 100%;
        justify-content: center;
    }
    .search-input {
        width: 180px;
    }
}
/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    
    /* Change these two lines: */
    align-items: flex-end;    /* Aligns content to the bottom */
    justify-content: center;
    text-align: center;
    padding-bottom: 15vh;     /* Keeps it 15% away from the very bottom edge */
}

 
/* Specific background for the active/first slide - Darkened for better contrast */
.slide.active {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                      url('ultimate luxury bridal look.png');
}
/* Ensure slides fade in and out nicely */
.slide {
    position: absolute; /* Stack slides on top of each other */
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Style for the new subtitle text */
.hero-content .subtitle {
    font-family: var(--font-main);
    letter-spacing: 5px;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--primary-gold);
}



.hero-content h1 {
    font-family: var(--font-display);
    font-size: 80px;
    letter-spacing: 10px;
    font-weight: 400;
}

.hero-content h1 span {
    font-style: italic;
    color: var(--primary-gold);
    font-family: var(--font-display);
}

.btn-discover {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--primary-gold);
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-discover:hover {
    background: var(--hover-gold);
}
/* --- Navigation Arrows --- */
.arrow {
    position: absolute;
    /* Change 'top' to a higher percentage or use 'bottom' */
    top: 80%; 
    transform: translateY(-50%);
    
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    transition: 0.3s;
    z-index: 5;
}

.arrow:hover { 
    color: var(--white); 
}

/* You might want to pull them in slightly if the text is very wide */
.left-arrow { left: 50px; }
.right-arrow { right: 50px; }


.menu-close{
        display: none;
    }
/* --- Responsive Design --- */
/* --- Desktop / Base Styles (Keeping your existing logic) --- */
/* (Keep all your root variables and reset styles here) */

@media (max-width: 768px) {
    /* --- The Dark Background Overlay --- */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px); /* Adds a high-end blur to the background */
        z-index: 90;
        display: none; /* Hidden by default */
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    /* --- The Slide-in Menu --- */
    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: -100%; /* Hidden off-screen */
        width: 280px; /* Fixed width for better control */
        height: 100vh;
        background-color: var(--black);
        border-right: 1px solid var(--primary-gold);
        z-index: 100;
        margin-top: 0; /* Reset desktop margin */
        transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .nav-links.show {
        left: 0; /* Slides in */
    }

    /* --- Close Icon Styling --- */
    .menu-close {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 23px;
        color: var(--primary-gold);
        cursor: pointer;
        font-weight: 500;
                display: block;

    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: 0.4s ease;
    }

    .nav-links.show li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.3s;
    }
}
/* ටෙක්ස්ට් එකයි ලින්ක් එකයි විතරක් සුදු කරන්න */
.contact-info .contact-link {
    color: var(--white) !important;
    text-decoration: none !important;
    -webkit-text-fill-color: var(--white) !important; /* Safari/iPhone fix */
}

/* Icon එකේ කලර් එක (Gold) වෙනස් වෙන්න දෙන්න එපා */
.contact-info i {
    color: var(--primary-gold) !important;
}

/* iPhone එකෙන් auto-detect කරන එක පාලනය කරන්න */
.contact-info span {
    color: var(--white);
}

/* Hover කරද්දීත් underline එක එන එක නවත්වන්න */
.contact-info .contact-link:hover {
    text-decoration: none !important;
    color: var(--white) !important;
}

/* --- Mobile Specific Styles (max-width: 768px) --- */
@media (max-width: 768px) {
    
    /* 1. Top Bar: Stacked but Visible */
    .top-bar {
        padding: 10px 15px;
        flex-direction: column; /* Stacks contact info above the actions */
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column; /* Phone on top, email below */
        gap: 5px;
    }

    .contact-info span {
        margin-right: 0;
        font-size: 11px;
    }

    .top-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        border-top: 1px solid var(--border-light);
        padding-top: 10px;
    }

    .btn-appointment {
        font-size: 10px;
        padding: 6px 12px;
        margin-left: 15px;
    }

    /* 2. Navigation: The "Sandwich" Layout */
    nav {
        display: flex;
        justify-content: space-between; 
        align-items: center;
        padding: 15px 20px;
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
        flex: 1; /* Takes up left space */
    }
    

    .menu-icon {
        width: 32px; /* Adjust size of your menu.png */
        height: auto;
        cursor: pointer;
        filter: invert(1); /* Makes a dark icon white if needed */
    }

    .logo-container {
        flex: 2; /* Keeps logo in the center */
        display: flex;
        justify-content: center;
    }

    .logo-icon img {
        width: 110px; /* Smaller logo for mobile */
        margin: 0 auto;
    }

    /* Spacer to balance the flexbox so logo stays dead center */
    nav::after {
        content: "";
        flex: 1; 
    }

     

    /* 4. Hero Section Adjustments */
    /* --- Update this section in your @media (max-width: 768px) block --- */

/* 4. Hero Section Adjustments */
.slide {
    /* This ensures the content is pushed to the bottom of the slide */
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    padding-bottom: 25vh; /* Adjust this value to move text higher or lower */
}

.hero-content {
    width: 95%;
    /* margin-bottom: 20px; Alternative way to push it up from the very bottom */
}

.hero-content h1 {
    font-size: 32px; 
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 15px; /* Space between title and button */
}

.hero-content .subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.btn-discover {
    margin-top: 10px;
    padding: 12px 20px;
    font-size: 11px;
    display: inline-block; /* Ensures padding and margins apply correctly */
}

/* Adjust Arrows so they don't overlap the new lower text position */
.arrow {
    top: auto;
    bottom: 5%; /* Places arrows near the bottom edge */
    transform: none;
}

    .left-arrow { left: 15px; }
    .right-arrow { right: 15px; }
}

/* Ensure Toggle is hidden on Desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }
}




/* --- About Section (White Background) --- */
.about-section {
    background-color: var(--white); /* White background as requested */
    color: var(--black);
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.about-section .container {
    max-width: 1200px;
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image Overlap Logic */
.image-grid {
    position: relative;
    height: 500px;
}

.main-img {
    width: 80%;
    height: 400px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.secondary-img {
    width: 60%;
    height: 450px;
    position: absolute;
    left: 0;
    bottom: -40px;
    z-index: 2;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
}

/* Text Content Styling */
.text-block h2 {
    font-family: var(--font-display);
    font-size: 55px;
    line-height: 1.1;
    margin: 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-label {
    color: var(--primary-gold);
    letter-spacing: 5px;
    font-size: 12px;
    font-weight: 600;
}

.divider {
    width: 100px;
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
    position: relative;
}

/* Adding that tiny gold diamond in the middle of the divider line */
.divider::after {
    content: '◇';
    position: absolute;
    top: -10px;
    right: -20px;
    color: var(--primary-gold);
}

.text-block p {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
    max-width: 450px;
}

.btn-about {
    display: inline-block;
    padding: 18px 45px;
    background-color: #c09a6b; /* Muted gold from image */
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-about:hover {
    background-color: var(--hover-gold);
}

/* --- About Section Mobile Responsive --- */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
        text-align: center; /* Center all text */
    }

    .about-content {
        grid-template-columns: 1fr; /* Stack images and text vertically */
        gap: 40px;
    }

    /* Adjusting Image Overlap for Mobile */
    .image-grid {
        height: 350px; /* Reduced height for mobile */
        width: 100%;
        max-width: 400px;
        margin: 0 auto; /* Center the image container */
    }

    .main-img {
        width: 85%;
        height: 280px;
        right: 0;
        top: 0;
    }

    .secondary-img {
        width: 55%;
        height: 220px;
        left: 0;
        bottom: 20px; /* Adjusted to not overflow section */
    }

    /* Reducing Text Sizes */
    .text-block h2 {
        font-size: 32px; /* Reduced from 55px */
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .divider {
        margin: 20px auto; /* Center the divider line */
    }

    /* Adjust the gold diamond position for center alignment */
    .divider::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .text-block p {
        font-size: 14px; /* Slightly smaller text */
        margin: 0 auto 30px; /* Center paragraph and reduce bottom margin */
        max-width: 100%; /* Use full width on mobile */
    }

    .btn-about {
        padding: 15px 35px; /* Smaller button */
        font-size: 13px;
        width: 100%; /* Optional: make button full width on small phones */
        max-width: 250px;
    }
}



/* --- Services Section --- */
.services-section {
    background-color: #fcfcfc; 
    padding: 100px 5%;
    text-align: center;
}

/* Header with Lines */
.services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-main);
    font-size: 14px;
    letter-spacing: 5px;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
}

.divider-line {
    width: 100px;
    height: 1px;
    background-color: #e0e0e0;
    position: relative;
}

.divider-line::after {
    content: '◇';
    position: absolute;
    top: -10px;
    color: var(--primary-gold);
    font-size: 12px;
}

.services-header .divider-line:first-child::after { right: -5px; }
.services-header .divider-line:last-child::after { left: -5px; }

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(197, 157, 95, 0.2); /* Subtle gold border */
    background-color: #eee;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-item:hover .circle-img img {
    transform: scale(1.1);
}

.service-item h3 {
    font-family: var(--font-display);
    color: var(--black);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
}

.service-item p {
    font-family: var(--font-main);
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    padding: 0 10px;
}

/* Outline Button - Fixed to Root Colors */
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--hover-gold);
}
 /* --- Services Section Mobile Responsive --- */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 5%;
    }

    /* Adjusting Header Lines */
    .services-header {
        gap: 10px;
        margin-bottom: 40px;
    }

    .divider-line {
        width: 50px; /* Shorter lines for mobile */
    }

    .section-subtitle {
        font-size: 11px; /* Smaller subtitle */
        letter-spacing: 3px;
    }

    /* Stack the services vertically */
    .services-grid {
        grid-template-columns: 1fr; 
        gap: 50px; /* More space between stacked items */
    }

    .service-item {
        padding: 0 10px;
    }

    /* Scale down circular images */
    .circle-img {
        width: 160px; /* Reduced from 200px */
        height: 160px;
        margin-bottom: 20px;
    }

    .service-item h3 {
        font-size: 18px; /* Reduced from 22px */
        margin-bottom: 10px;
    }

    .service-item p {
        font-size: 13px;
        margin-bottom: 20px;
        padding: 0 20px; /* More padding for better readability */
    }

    .btn-outline {
        padding: 10px 25px;
        font-size: 11px;
    }
}





/* --- Appointment Banner --- */
.appointment-banner {
    position: relative;
    width: 100%;
    min-height: 350px; /* Adjusted for better visibility */
    
    /* ADD IMAGE HERE: This uses a gradient to darken the image and the background-image itself */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('artistry and environment.png'); /* Ensure your image path is correct */
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 10%;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.banner-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Pushes text left, button right */
    align-items: center;
}

.banner-text h2 {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-sub {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* The gold line before the text */
.banner-line {
    width: 35px;
    height: 1px;
    background-color: var(--primary-gold);
}

.banner-sub p {
    color: var(--primary-gold);
    font-size: 15px;
    letter-spacing: 1px;
    font-style: italic; /* Matches the "vibe" of custom tailoring */
}

/* The Gold Button */
.btn-book {
    padding: 18px 35px;
    background-color: #bc986a; /* Exact tan/gold color from your image */
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-book:hover {
    background-color: #a48259;
    letter-spacing: 3px; /* Subtle hover effect */
}
/* --- Appointment Banner Mobile Responsive --- */
@media (max-width: 768px) {
    .appointment-banner {
        min-height: auto; /* Allow content to dictate height */
        padding: 60px 5%;
        text-align: center;
        /* Slightly darker gradient for better text contrast on small screens */
        background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                    url('artistry and environment.png');
        background-size: cover;
        background-position: center;
    }

    .banner-content {
        flex-direction: column; /* Stack text and button */
        gap: 30px;
        justify-content: center;
    }

    .banner-text h2 {
        font-size: 28px; /* Reduced from 42px */
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .banner-sub {
        justify-content: center; /* Center the line and italic text */
        flex-direction: column; /* Stack line above text or keep side-by-side */
        gap: 10px;
    }

    .banner-line {
        width: 50px; /* Make the gold line a bit more visible as a divider */
        height: 2px;
    }

    .banner-sub p {
        font-size: 14px;
        padding: 0 10px;
    }

    .btn-book {
        width: 100%; /* Full width button for better thumb reach */
        max-width: 280px;
        padding: 16px 20px;
        font-size: 11px;
    }
}





/* --- Media Section --- */
.media-section {
    background-color: var(--white);
    padding: 100px 5%;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Video Container & Play Button */
.media-video-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.media-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Dims image to make play button pop */
}

.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: #bc986a; /* Gold color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.play-circle-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border: 1px solid rgba(188, 152, 106, 0.5);
    border-radius: 50%;
    z-index: 1;
}

/* Text Content */
.media-text-block h2 {
    font-family: var(--font-display);
    font-size: 60px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.media-divider-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.media-label {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--primary-gold);
    font-weight: 600;
    white-space: nowrap;
}

.media-line {
    width: 150px;
    height: 1px;
    background-color: #e0e0e0;
    position: relative;
}

.media-line::after {
    content: '◇';
    position: absolute;
    left: 0;
    top: -9px;
    color: #e0e0e0;
    font-size: 12px;
}

.media-text-block p {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-video {
    display: inline-block;
    padding: 18px 35px;
    background-color: #bc986a;
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-video:hover {
    background-color: var(--hover-gold);
}
/* --- Media Section Mobile Responsive --- */
@media (max-width: 768px) {
    .media-section {
        padding: 60px 5%;
        text-align: center;
    }

    .media-grid {
        grid-template-columns: 1fr; /* Stack video on top of text */
        gap: 40px;
    }

    /* Video Container Adjustments */
    .media-video-container {
        height: 280px; /* Reduced height for mobile screens */
    }

    /* Scaling down the play button elements */
    .play-button {
        width: 60px; /* Reduced from 80px */
        height: 60px;
        font-size: 16px;
    }

    .play-circle-outer {
        width: 85px; /* Reduced from 110px */
        height: 85px;
    }

    /* Text Content Adjustments */
    .media-text-block h2 {
        font-size: 34px; /* Significantly reduced from 60px */
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .media-divider-wrapper {
        justify-content: center; /* Center the label and line */
        margin-bottom: 20px;
    }

    .media-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* Use a shorter decorative line on mobile */
    .media-line {
        width: 80px; /* Reduced from 150px */
    }

    .media-text-block p {
        font-size: 14px;
        line-height: 1.6;
        margin: 0 auto 30px; /* Center and constrain */
        max-width: 100%;
    }

    .btn-video {
        width: 100%;
        max-width: 280px;
        padding: 16px 20px;
        font-size: 11px;
    }
}



/* --- Tailors Section --- */
.tailors-section {
    background-color: var(--white);
    padding: 100px 5%;
    text-align: center;
}

.tailors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tailor-card {
    background: #fdfdfd; /* Very subtle off-white to define the card area */
    transition: transform 0.3s ease;
}

.tailor-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 25px;
}

.tailor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.tailor-card:hover .tailor-img img {
    filter: brightness(0.9);
}

.tailor-role {
    font-size: 11px;
    letter-spacing: 3px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.tailor-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--black);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Diamond Social Icons */
.tailor-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 30px;
}
/* Removes underline from the social link wrappers */
.tailor-socials a {
    text-decoration: none !important;
  }
.social-diamond {
    width: 35px;
    height: 35px;
    border: 1px solid #e0e0e0;
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-diamond i {
    transform: rotate(-45deg); /* Counter-rotate icon so it stays upright */
    font-size: 14px;
    color: var(--primary-gold);
}

.social-diamond:hover {
    border-color: var(--primary-gold);
    background-color: var(--primary-gold);
}

.social-diamond:hover i {
    color: var(--white);
}

 /* --- Tailors Section Mobile Responsive --- */
@media (max-width: 768px) {
    .tailors-section {
        padding: 60px 5%;
    }

    .tailors-grid {
        grid-template-columns: 1fr; /* Stack tailors vertically */
        gap: 50px; /* Space between each tailor card */
    }

    .tailor-img {
        height: 320px; /* Reduced from 400px to save vertical space */
        margin-bottom: 20px;
    }

    .tailor-info h3 {
        font-size: 22px; /* Reduced from 28px */
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .tailor-role {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .tailor-socials {
        gap: 20px; /* Slightly more gap for easier tapping on mobile */
        padding-bottom: 20px;
    }

    /* Keep the diamond icons but make them slightly larger for touch */
    .social-diamond {
        width: 40px; 
        height: 40px;
    }
}




/* --- Testimonials Section --- */
.testimonials-section {
    position: relative;
    background: url('Skincare and radiance.png') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
}

.testimonials-overlay {
    background: rgba(0, 0, 0, 0.85); /* Dark cinematic overlay */
    width: 100%;
    height: 100%;
    padding: 100px 5%;
}

.testimonial-title {
    font-family: var(--font-display);
    font-size: 45px;
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 30px;
}

.quote-icon {
    color: var(--primary-gold);
    font-size: 24px;
    margin-bottom: 30px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.testimonial-text {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-main);
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--primary-gold);
    font-weight: 500;
}

/* --- Nav Line --- */
.testimonial-nav {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.nav-line {
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.nav-progress {
    position: absolute;
    width: 30%; /* This width can be adjusted by JS based on slide index */
    height: 100%;
    background: var(--primary-gold);
    left: 35%; /* Centered for visual style */
}

/* --- Arrows --- */
.test-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.test-arrow:hover {
    color: var(--primary-gold);
}

.test-left { left: 50px; }
.test-right { right: 50px; }

/* --- Testimonials Section Mobile Responsive --- */
@media (max-width: 768px) {
    .testimonials-section {
        min-height: auto; /* Content will define the height */
    }

    .testimonials-overlay {
        padding: 60px 10%; /* More side padding for the text */
    }

    .testimonial-title {
        font-size: 28px; /* Reduced from 45px */
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .quote-icon {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .testimonial-text {
        font-size: 14px; /* Slightly smaller for readability */
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .testimonial-author {
        font-size: 11px;
        letter-spacing: 2px;
    }

    /* Adjust Navigation Line */
    .testimonial-nav {
        margin-top: 40px;
    }

    .nav-line {
        width: 100px; /* Narrower line for mobile */
    }

    /* Adjust Arrows for Mobile - Moving them below or making them smaller */
    .test-arrow {
        position: relative; /* Remove from sides to prevent overlapping text */
        top: auto;
        transform: none;
        display: inline-block;
        margin: 20px 30px 0; /* Space them out below the content */
        font-size: 24px;
    }

    .test-left { left: auto; }
    .test-right { right: auto; }
}


/* --- Packages Section --- */
.packages-section {
    background-color: #f9f9f9;
    padding: 100px 5%;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.package-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-10px);
}

.package-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-img img {
    transform: scale(1.1);
}

/* Price Tag Styling */
.package-price {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--black);
    color: var(--primary-gold);
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: bold;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-gold);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 2px;
    padding: 5px 12px;
    font-weight: 600;
}

.package-content {
    padding: 40px 30px;
}

.package-content h4 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--black);
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

/* Featured Card Highlighting */
.package-card.featured {
    border: 1px solid var(--primary-gold);
}

/* --- Packages Section Mobile Responsive --- */
@media (max-width: 768px) {
    .packages-section {
        padding: 60px 0; /* Removed side padding so cards can touch the screen edge while sliding */
        text-align: center;
    }

    /* Change Grid to a horizontal Scroll Wrapper */
    .packages-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory; /* Makes cards snap into place */
        gap: 20px;
        padding: 0 20px 30px; /* Space at bottom for scrollbar/shadows */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
    }

    /* Hide scrollbar for a cleaner look */
    .packages-grid::-webkit-scrollbar {
        display: none;
    }

    .package-card {
        min-width: 85%; /* Shows one card and a tiny peek of the next one */
        scroll-snap-align: center;
        margin-bottom: 10px;
    }

    .package-img {
        height: 250px; /* Reduced image height */
    }

    .package-price {
        font-size: 18px;
        padding: 8px 15px;
    }

    .package-content {
        padding: 30px 20px;
    }

    .package-content h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .package-features li {
        font-size: 13px;
        padding-bottom: 10px;
    }

    /* Center Section Title specifically on mobile */
    .services-header {
        padding: 0 20px;
        margin-bottom: 30px;
    }
}



/* --- BST Footer --- */
.site-footer {
    background-color: #0a0a0a; /* Deepest black */
    color: #999;
    padding: 80px 5% 0;
    border-top: 1px solid var(--border-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-column h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
}

/* Subtle gold line under headings */
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--primary-gold);
}

.brand-col p {
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0;
}

.footer-logo {
    width: 150px;
    filter: brightness(0) invert(1); /* Makes logo white if it's dark */
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

/* Social Icons in Footer */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* Newsletter Form */
.footer-form {
    display: flex;
    margin-top: 20px;
}

.footer-form input {
    flex: 1;
    background: #151515;
    border: 1px solid #222;
    padding: 12px 15px;
    color: var(--white);
    font-size: 13px;
    outline: none;
}

.footer-form button {
    background: var(--primary-gold);
    border: none;
    color: var(--white);
    padding: 0 20px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-form button:hover {
    background: var(--hover-gold);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 25px 0;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.legal-links a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
}

.legal-links a:hover {
    color: var(--primary-gold);
}


/* --- BST Footer Mobile Responsive --- */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 5% 0;
        text-align: center; /* Center all footer content */
    }

    .footer-container {
        grid-template-columns: 1fr; /* Stack all 4 columns */
        gap: 50px;
        padding-bottom: 40px;
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Center the gold accent line under headings */
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }

    .brand-col p {
        font-size: 13px;
        margin: 15px auto;
        max-width: 300px;
    }

    .footer-logo {
        margin: 0 auto; /* Center the logo */
        width: 130px;
    }

    .footer-socials {
        justify-content: center; /* Center social icons */
        margin-top: 10px;
    }

    /* Newsletter Form Adjustments */
    .footer-form {
        flex-direction: column; /* Stack input and button */
        gap: 10px;
        max-width: 300px;
        margin: 20px auto 0;
    }

    .footer-form input {
        width: 100%;
        text-align: center;
    }

    .footer-form button {
        padding: 15px;
        width: 100%;
    }

    /* Footer Bottom Section */
    .footer-bottom {
        padding: 30px 0;
    }

    .bottom-container {
        flex-direction: column; /* Stack copyright and legal links */
        gap: 15px;
        text-align: center;
    }

    .legal-links {
        margin-top: 5px;
    }

    .legal-links a {
        margin: 0 10px; /* Space links out horizontally on mobile */
        display: inline-block;
    }
}




/* --- All Packages Slider Section --- */
.all-packages-section {
    padding: 100px 5%;
    background-color: var(--white);
    overflow: hidden;
}

.packages-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.packages-slider {
    display: flex;
    gap: 20px;
    /* SWIPE LOGIC */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

/* HIDE SCROLLBARS */
.packages-slider {
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */
}
.packages-slider::-webkit-scrollbar {
    display: none;             /* Chrome/Safari */
}

.package-item {
    flex: 0 0 calc(25% - 15px); /* Default 4 cards */
    min-width: calc(25% - 15px);
    scroll-snap-align: start;   /* Snaps card to edge */
}

/* CARD STYLING */
.p-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}

.p-card:hover {
    border-color: var(--primary-gold);
}

.p-img {
    height: 350px;
    overflow: hidden;
}

.p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.p-card:hover .p-img img {
    transform: scale(1.05);
}

.p-info {
    padding: 30px 20px;
}

.p-info h4 {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--black);
}

.p-info p {
    font-size: 13px;
    color: #777;
    margin-bottom: 25px;
    line-height: 1.6;
    height: 60px;
}

/* ARROWS */
.p-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: var(--black);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-arrow:hover {
    background: var(--primary-gold);
}

.p-left { left: -25px; }
.p-right { right: -25px; }

 

 /* --- View All Packages Button --- */
.view-all-container {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 20px;
}

.btn-view-all {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--primary-gold);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-view-all:hover {
    color: var(--white);
    background-color: var(--primary-gold);
    border-color: var(--hover-gold);
    letter-spacing: 4px; /* Subtle "Apple-style" expansion */
 }
/* --- All Packages Slider - Mobile Responsive --- */
@media (max-width: 768px) {
    .all-packages-section {
        padding: 60px 10px; /* Reduced side padding */
    }

    .packages-wrapper {
        padding: 0 10px; /* Space for arrows */
    }

    .package-item {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: center; /* Snaps perfectly to center on mobile */
    }

    .p-img {
        height: 280px; /* Slightly shorter for mobile screens */
    }

    .p-info h4 {
        font-size: 16px;
    }

    /* --- Show Arrows in Mobile Mode --- */
    .p-arrow {
        width: 40px;
        height: 40px;
        top: 35%; /* Adjust height to align with the image area */
        opacity: 0.9;
        display: flex; /* Ensure they remain visible */
    }

    /* Move arrows inward so they don't hide off-screen */
    .p-left { 
        left: 0; 
        border-radius: 0 4px 4px 0; /* Slight rounded edge on inner side */
    }
    
    .p-right { 
        right: 0; 
        border-radius: 4px 0 0 4px; 
    }

    /* Optional: View All Button center alignment */
    .view-all-container {
        margin-top: 40px;
    }

    .btn-view-all {
        width: 100%;
        max-width: 280px;
        padding: 15px 10px;
        font-size: 11px;
    }
}
 



/* --- Contact Section --- */
.contact-section {
    background-color: var(--white);
    padding: 100px 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Detail Items */
.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.detail-icon i {
    transform: rotate(-45deg);
    font-size: 18px;
}

.detail-item:hover .detail-icon {
    background-color: var(--primary-gold);
    color: var(--white);
}

.detail-text h4 {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 5px;
}

.detail-text p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* Bespoke Form */
.bespoke-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bespoke-form input, 
.bespoke-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    font-family: var(--font-main);
    font-size: 13px;
    outline: none;
    transition: 0.3s;
}

.bespoke-form input:focus, 
.bespoke-form textarea:focus {
    border-color: var(--primary-gold);
    background-color: var(--white);
}

.btn-submit {
    align-self: flex-start;
    padding: 18px 45px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-submit:hover {
    background-color: var(--primary-gold);
    border-color: var(--hover-gold);
    letter-spacing: 4px;
}
/* --- Contact Section Mobile Responsive --- */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 5%;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr; /* Stack contact info and form */
        gap: 50px;
    }

    /* Centering Detail Items */
    .detail-item {
        flex-direction: column; /* Icon above text */
        align-items: center;
        gap: 15px;
        margin-bottom: 35px;
    }

    .detail-icon {
        width: 45px; /* Slightly smaller for mobile */
        height: 45px;
    }

    .detail-text h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .detail-text p {
        font-size: 13px;
        padding: 0 10px;
    }

    /* Bespoke Form Adjustments */
    .form-row {
        grid-template-columns: 1fr; /* Stack Name and Email inputs */
        gap: 20px;
    }

    .bespoke-form input, 
    .bespoke-form textarea {
        padding: 14px;
        font-size: 14px; /* Slightly larger text for easier typing on mobile */
        text-align: center; /* Centered placeholder/text */
    }

    .btn-submit {
        align-self: center; /* Center the button */
        width: 100%; /* Full width for easy tapping */
        max-width: 280px;
        padding: 16px 20px;
        font-size: 11px;
    }
}





/* --- Large About Section --- */
.about-hero-large {
    background-color: var(--white);
    padding: 120px 5%;
    overflow: hidden;
}

.about-large-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

/* Image Box with Floating Elements */
.about-visual-box {
    position: relative;
    padding: 40px;
}

.about-visual-box img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 30px 30px 0px #f4f4f4; /* Minimalist Brutalist shadow */
}

.accent-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--primary-gold);
    z-index: 1;
}

.experience-tag {
    position: absolute;
    top: 60px;
    right: -20px;
    background: #ff1f1f; /* Your Action Red */
    color: var(--white);
    padding: 10px 25px;
    font-size: 12px;
    letter-spacing: 3px;
    z-index: 3;
    transform: rotate(90deg);
    transform-origin: right top;
}

/* Text Styling */
.red-accent-label {
    color: #ff1f1f;
    font-size: 12px;
    letter-spacing: 5px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.display-title {
    font-family: var(--font-display);
    font-size: 70px;
    line-height: 1;
    color: var(--black);
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.display-title span {
    color: var(--primary-gold);
    font-style: italic;
    font-weight: 400;
}

.story-blocks {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.story-item h3 {
    font-family: var(--font-main);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--black);
}

.story-item p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

/* Stats Section */
.about-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--black);
}

.stat-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Large About Section Mobile Responsive --- */
@media (max-width: 768px) {
    .about-hero-large {
        padding: 60px 5%;
    }

    .about-large-grid {
        grid-template-columns: 1fr; /* Stack image above text */
        gap: 60px;
        text-align: center;
    }

    /* Adjusting the Visual Box for Mobile */
    .about-visual-box {
        padding: 20px; /* Reduce padding to fit screen */
    }

    .about-visual-box img {
        height: 450px; /* Reduced from 700px */
        box-shadow: 15px 15px 0px #f4f4f4; /* Scale down the brutalist shadow */
    }

    .accent-frame {
        width: 90%;
        height: 90%;
    }

    /* Reposition the Red Action Tag */
    .experience-tag {
        top: 40px;
        right: 0px;
        font-size: 10px;
        padding: 8px 15px;
        /* Keep the 90deg rotation but make it more compact */
    }

    /* Typography Adjustments */
    .display-title {
        font-size: 38px; /* Massive drop from 70px to fit mobile width */
        margin-bottom: 30px;
        letter-spacing: 0px;
    }

    .red-accent-label {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .story-blocks {
        gap: 30px;
        margin-bottom: 40px;
    }

    .story-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Stats Section Grid */
    .about-stats {
        flex-direction: column; /* Stack stats vertically */
        gap: 30px;
        padding-top: 30px;
        align-items: center;
    }

    .stat-num {
        font-size: 32px;
    }

    .stat-label {
        font-size: 10px;
    }
}






/* --- Sticky Glass Navbar --- */
.sticky-nav {
    position: fixed;
    top: -120px;
    width: 100%;
    z-index: 1000;
    
    /* FIX: Changed to rgba so the blur is actually visible */
    background:var(--black); 
     
    border-bottom: 1px solid rgba(197, 157, 95, 0.2);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.sticky-nav.visible {
    top: 0;
    visibility: visible;
}

.sticky-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Mobile Toggle --- */
.sticky-mobile-toggle {
    display: none; /* Desktop hidden */
    flex: 1;       /* Equal to actions for perfect centering */
}

.sticky-menu-icon {
    width: 26px;
    height: auto;
    cursor: pointer;
    filter: invert(1);
    transition: 0.3s ease;
}

/* --- Logo Styling --- */
.sticky-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1; 
}

.sticky-logo img {
    height: 90px; /* Adjusted for better desktop fit */
    width: auto;
    display: block;
}

/* --- Navigation Links (Desktop) --- */
.sticky-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 2; 
    justify-content: center;
}

.sticky-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.3s;
}
.sticky-links a:hover {
    color: var(--primary-gold);
    /* Subtle premium lift */
    transform: translateY(-1px);
    /* Soft gold glow to match the bespoke aesthetic */
    text-shadow: 0 0 8px rgba(197, 157, 95, 0.3);
}

/* --- Action Area & Button --- */
.sticky-actions {
    flex: 1; /* Equal to toggle for perfect centering */
    display: flex;
    justify-content: flex-end;
}

.btn-sticky-appointment {
    border: 1px solid var(--primary-gold);
    padding: 10px 22px;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

/* --- MOBILE ALIGNMENT FIX (768px) --- */
@media (max-width: 768px) {
    .sticky-mobile-toggle {
        display: flex; /* Changed from block to flex */
        align-items: center;
        flex: 1; /* Match the right side */
    }

    .sticky-container {
        padding: 8px 20px;
    }

    .sticky-links {
        display: none;
    }

    .sticky-logo {
        flex: 2; /* Center column gets more room */
        justify-content: center;
    }

    .sticky-logo img {
        height: 55px; /* Scaled for mobile */
    }

    .sticky-actions {
        flex: 1; /* Match the left side */
        justify-content: flex-end;
    }

    .btn-sticky-appointment {
        padding: 8px 12px;
        font-size: 9px;
    }
}




@media screen and (max-width: 768px) {
    /* Ensure the main nav container spreads items out */
    .nav-container, .sticky-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    /* Pushes search to the far right without affecting logo */
    .sticky-actions, .search-wrapper {
        margin-left: auto; 
        display: flex;
        align-items: center;
    }

    /* Hide the input but keep the icon */
    .search-input {
        display: none !important;
    }

    /* Clean up the button for a crisp look */
    .search-btn {
        background: transparent;
        border: none;
        padding: 10px; /* Provides a better touch target */
        margin: 0;
        cursor: pointer;
        color: var(--black); /* Or your preferred icon color */
    }

    /* Prevent any extra padding on the search icon from the wrapper */
    .search-wrapper {
        border: none;
        background: transparent;
        padding-right: 5px; /* Tiny gap from the screen edge */
    }
}

/* --- Root Variables --- */


/* --- Search Modal Styles --- */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2500;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alignment to top for scrolling */
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 1000px;
    text-align: center;
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    max-height: 85vh; /* Limits content height to allow scrolling */
}

.search-modal.active .modal-content {
    transform: translateY(0);
}

/* --- Fixed Top Section (Input) --- */
.modal-top-fixed {
    flex-shrink: 0;
    margin-bottom: 30px;
}

#modalSearchInput {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 56px);
    text-align: center;
    padding: 10px 0;
}

.input-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 10px auto;
    transition: width 0.8s ease;
}

.search-modal.active .input-line {
    width: 100%;
}

/* --- Scrollable Results Area --- */
.search-results-preview {
    flex-grow: 1;
    overflow-y: auto; /* Enable scrolling for many results */
    padding: 20px 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns on PC */
    gap: 20px;
    margin-top: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) transparent;
}

/* Scrollbar Styling for Chrome/Safari */
.search-results-preview::-webkit-scrollbar {
    width: 4px;
}
.search-results-preview::-webkit-scrollbar-track {
    background: transparent;
}
.search-results-preview::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

/* Center placeholder text */
.search-results-preview:has(p) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-results-preview p {
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

/* --- Result Item --- */
.result-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.result-img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
}

.result-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-info {
    text-align: left;
}

.result-info h4 {
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--white);
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-price {
    font-family: var(--font-display);
    color: var(--primary-gold);
    font-size: 16px;
}

/* --- Close Button --- */
.modal-close {
    position: absolute;
    top: 40px;
    right: 50px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--action-red);
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .search-modal {
        padding-top: 60px;
    }

    #modalSearchInput {
    
    font-size: 20px;
    
}


    .modal-close {
        top: 20px;
        right: 20px;
    }

    .search-results-preview {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
        max-height: 70vh;
    }

    .result-item {
        gap: 15px;
        padding: 10px;
    }

    .result-img {
        width: 75px;
        height: 75px;
    }
}


.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 250px; /* Adjust based on your text length */
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease;
    transform: translateY(10px); /* Slight lift effect */
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-progress {
    height: 100%;
    background-color: #ff1f1f; /* Your Action Red */
    width: 0%;
    transition: width 0.5s ease;
}


/* Prevent auto-zoom on form inputs for mobile devices */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="number"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}