/* ==========================================================================
   Global Navigation Framework Override for Services Page
   ========================================================================== */
.navbar {
    background: linear-gradient(rgba(11, 11, 11, 0.2), rgba(11, 11, 11, 0.2)), 
                url('') center/cover no-repeat;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 40px;
    height: 120px;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(156, 175, 136, 0.2); 
}

.nav-links {
    display: flex;
    gap: 30px; 
    list-style: none;
}

.nav-links.left {
    justify-content: flex-end;
    margin-right: 40px;
}

.nav-links.right {
    justify-content: flex-start;
    margin-left: 40px;
}

.nav-links a {
    color: var(--primary-green); /* Fixes purple link bug: forces brand sage green */
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.nav-links a:hover {
    color: var(--pure-white);
}

.logo-container {
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* ==========================================================================
   Services Page Layout - Section 1: Hairstyle Marquee Banner
   ========================================================================== */
.services-hero-banner {
    position: relative;
    width: 100%;
    min-height: 45vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Clean dark blend mode over your custom background image */
    background: linear-gradient(rgba(11, 11, 11, 0.4), rgba(11, 11, 11, 0.4)), 
                url('indexPictur/P1.jpeg') center/cover no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Outer wrapper viewport window that hides the overflow lines */
.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

/* The physical track holding your image blocks moving infinitely */
.marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: scrollMarquee 25s linear infinite; /* Smooth continuous linear movement loop */
}

/* Pauses the slider movement gently only when a client hovers their mouse over a hair image block */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Individual Hair Style Block items */
.hair-style-block {
    width: 280px;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(156, 175, 136, 0.2); /* Subtle brand green border ring frames */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.hair-style-block:hover {
    transform: scale(1.03);
    border-color: var(--primary-green); /* Highlights to brand sage green on hover */
}

.hair-style-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Infinite Scroll Animation Logic (Moves from right to left smoothly) */
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Moves exactly by half the track length (original 5 blocks) before restarting seamlessly */
        transform: translateX(calc(-50% - 15px)); 
    }
}

/* ==========================================================================
   Top Showcase Bar - Reviews Slider (Left) & Actions Panel (Right)
   ========================================================================== */
.top-showcase-bar {
    background-color: var(--matte-black);
    padding: 60px 8%;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Reviews on left, actions on right */
    gap: 50px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-reviews-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-left: 2px solid var(--primary-green); /* Elegant green accent border line */
    padding-left: 30px;
}

.review-stars-row {
    color: var(--primary-green); /* Glowing green stars */
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-comment-text {
    font-family: var(--font-body);
    color: var(--pure-white);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
}

.review-client-name {
    font-family: 'Apple Chancery', 'Lucida Calligraphy', cursive; /* Beautiful calligraphy styling */
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 5px;
}

.top-actions-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
}

.top-actions-panel .btn-whatsapp,
.top-actions-panel .btn-green {
    margin-top: 0;
    width: 100%;
    max-width: 380px;
    text-align: center;
}

/* Custom WhatsApp Interactive Button Component */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    background-color: transparent;
    border: 1.5px solid #25D366; /* Strict WhatsApp Green branding line */
    color: #25D366;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    color: var(--matte-black);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   Bottom Cross-Promotion Boutique Section (Above Footer)
   ========================================================================== */
/* Main Services Section Title Styling */
.services-main-header {
  text-align: center;
  padding: 60px 20px 20px 20px; /* Generates breathing space below your review buttons */
  background-color: #000000; /* Rich solid black backdrop matching your theme */
  width: 100%;
}

.main-services-title {
  font-family: 'Playfair Display', Georgia, serif; /* Elegant serif match */
  color: #9caf88; /* Brand sage green highlight accent color */
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Optional elegant divider bar below the title */
.green-accent-line {
  width: 120px;
  height: 2px;
  background-color: #9caf88;
  margin: 0 auto; /* Centers the accent bar underneath the text */
  box-shadow: 0 0 10px rgba(156, 175, 136, 0.5); /* Subtle sage glow to match the vibe */
}

/* Responsive fix for smaller mobile screens */
@media (max-width: 768px) {
  .main-services-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  .green-accent-line {
    width: 80px;
  }
}


.boutique-cross-section {
    background-color: #111111; 
    padding: 80px 8%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.boutique-title {
    font-family: var(--font-heading);
    color: var(--pure-white);
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.boutique-subtitle {
    font-family: 'Apple Chancery', 'Lucida Calligraphy', cursive;
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 45px;
}

.boutique-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.boutique-card {
    background-color: var(--matte-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 30px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.boutique-card:hover {
    border-color: rgba(156, 175, 136, 0.2);
    transform: translateY(-5px);
}

.boutique-card h4 {
    font-family: var(--font-heading);
    color: var(--pure-white);
    font-size: 1.6rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.boutique-card p {
    font-family: var(--font-body);
    color: var(--body-text);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 25px;
    opacity: 0.8;
}

/* Coffee Shop doesn't exist yet — button is intentionally inert (native
   disabled attribute, no href) until a real destination exists. */
.btn-disabled {
    display: inline-block;
    padding: 14px 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--body-text);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-top: 25px;
    opacity: 0.5;
    cursor: not-allowed;
}

.boutique-coming-soon {
    display: block;
    margin-top: 10px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}


/* ==========================================================================
   Mobile Adjustments for Top Showcase & Boutique Grids
   ========================================================================= */
@media (max-width: 900px) {
    /* Correctly refactored to align with your review-booking showcase grid box */
    .top-showcase-bar {
        grid-template-columns: 1fr; /* Collapses text and buttons into a single vertical row */
        padding: 40px 25px;
        gap: 40px;
    }
    .top-reviews-wrapper {
        padding-left: 20px;
    }
    .top-actions-panel {
        align-items: center;
    }
    .top-actions-panel .btn-whatsapp,
    .top-actions-panel .btn-green {
        width: 100%;
        max-width: 100%;
    }
    /* Boutique cross-promotion grid stack */
    .boutique-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .boutique-card {
        padding: 40px 20px;
    }
} /* Fixed: Added missing closing brace right here */


/* ==========================================================================
   Services Page - Section 2: Four Category Price Menu Grid
   ========================================================================== */
.services-catalog-section {
    background-color: var(--matte-black);
    padding: 100px 8%;
    display: flex;
    flex-direction: column;
    gap: 120px; 
}

/* Base side-by-side row wrapper structural grids */
.service-menu-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 60px;
    align-items: center;
}

/* Layout helper variant: flips image right and content text left on alternating blocks */
.service-menu-row.alt-flipped {
    grid-template-columns: 1.2fr 1fr;
}

/* Crisp image placeholder block box component */
.menu-image-panel {
    width: 100%;
    height: 550px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Price sheet textual card area */
.menu-text-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-category-title {
    font-family: var(--font-heading);
    color: var(--primary-green); 
    font-size: 2.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.menu-category-subtitle {
    font-family: 'Apple Chancery', 'Lucida Calligraphy', cursive;
    color: var(--body-text);
    font-size: 1.15rem; 
    letter-spacing: 1px;
    margin-bottom: 40px;
    opacity: 0.85;
}

/* Clean salon menu price item rows list wrapper rules */
.price-list-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-item-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    font-family: var(--font-body);
}

.price-item-name {
    color: var(--pure-white); 
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-right: 15px;
}

/* Premium aesthetic price connector dot leader lines */
.price-item-dots {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(156, 175, 136, 0.25);
    margin-bottom: 6px;
}

.price-item-value {
    font-family: 'Apple Chancery', 'Lucida Calligraphy', cursive;
    color: var(--primary-green); 
    font-size: 1.25rem;
    font-weight: 600;
    padding-left: 15px;
}

/* ==========================================================================
   ONE SINGLE Combined Mobile Responsive Override Bracket
   ========================================================================== */
@media (max-width: 900px) {
    /* Navbar Mobile Overrides */
    .navbar {
        grid-template-columns: 1fr;
        height: auto;
        padding: 30px 20px;
        justify-items: center;
    }
    .nav-links.left, .nav-links.right {
        margin: 15px 0 0 0;
        justify-content: center;
        gap: 20px;
    }
    .logo-container {
        height: 70px;
        width: 140px;
        order: -1;
    }

    /* Marquee Banner Slider Mobile Overrides */
    .services-hero-banner {
        min-height: 35vh;
        padding: 50px 0;
    }
    .hair-style-block {
        width: 180px;
        height: 250px;
    }
    .marquee-track {
        gap: 15px;
        animation-duration: 18s; 
    }
    @keyframes scrollMarquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 7.5px)); }
    }

    /* Services Pricing Grid Catalog Mobile Overrides */
    .services-catalog-section {
        padding: 60px 20px;
        gap: 80px;
    }
    .service-menu-row, 
    .service-menu-row.alt-flipped {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .menu-image-panel {
        height: 350px;
    }
    .service-menu-row.alt-flipped .menu-image-panel {
        order: 2;
    }
    .menu-category-title {
        font-size: 2.2rem;
    }
    .price-item-name, .price-item-value {
        font-size: 1rem;
    }
    
    /* Review Shroud Popup Tab Card Mobile Overrides */
    .review-modal-card {
        padding: 30px 20px !important;
    }
    .modal-header-title {
        font-size: 1.6rem !important;
    }
}


/* ==========================================================================
   Review Form Popup Tab Shroud Layout Component (MANDATORY TO LOCK IN)
   ========================================================================== */
.modal-shroud-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none; 
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 20px;
}

.modal-shroud-backdrop.tab-active {
    opacity: 1;
    pointer-events: auto;
}

.review-modal-card {
    background-color: var(--matte-black);
    border: 2px solid var(--primary-green); 
    border-radius: 4px;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transform: translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-shroud-backdrop.tab-active .review-modal-card {
    transform: translateY(0); 
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    font-family: sans-serif;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: var(--primary-green); 
}

.modal-header-title {
    font-family: var(--font-heading);
    color: var(--pure-white);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-align: center;
}

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

.review-form-group label {
    font-family: var(--font-body);
    color: var(--body-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.review-form-input {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    padding: 12px 15px;
    color: var(--pure-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.review-form-input:focus {
    border-color: var(--primary-green); 
}

select.review-form-input option {
    background-color: var(--matte-black);
    color: var(--pure-white);
}

textarea.review-form-input {
    resize: none;
    min-height: 110px;
}

.btn-submit-review {
    width: 100%;
    padding: 14px;
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit-review:hover {
    background-color: var(--primary-green);
    color: var(--matte-black);
    box-shadow: 0 5px 15px rgba(156, 175, 136, 0.3);
}

/* Footer Container Styles */
.main-footer {
  background-color: #000000; /* Rich pure black block context matching the screenshot */
  padding: 60px 20px 40px 20px;
  text-align: center;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Bold Editorial Heading Styling */
.footer-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff; /* Sharp crisp white typography text */
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

/* Icons Grid Block */
.social-links-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px; /* Spacing layout gap between each circle button badge */
  margin-bottom: 45px;
}

/* Circle Icon Badges matching your layout graphic */
.social-circle-icon {
  width: 46px;
  height: 46px;
  border: 1px solid #9caf88; /* Clean thin sage green borders outline */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9caf88; /* Sage green inner icon vectors color */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
}

/* Scale Vector Icons size cleanly */
.social-circle-icon svg {
  width: 20px;
  height: 20px;
}

/* Elegant responsive interaction animations */
.social-circle-icon:hover {
  background-color: #9caf88; /* Inverts layout colors fill on mouse hover actions */
  color: #000000;
  box-shadow: 0 0 15px rgba(156, 175, 136, 0.6);
  transform: translateY(-3px);
}

/* Thin muted bottom horizontal divider layout line rules */
.footer-divider {
  width: 180px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1); /* Soft subtle dark line separator style */
  margin: 0 auto 30px auto;
}

/* Copyright Muted Text rules matching graphic colors precisely */
.footer-copyright {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #444444; /* Dark muted dim charcoal grey text */
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Accented brand typography highlighting */
.footer-copyright .white-text {
  color: #666666; /* Gives a slight highlight to your corporate agency identity credits */
  transition: color 0.3s ease;
}

.footer-copyright .white-text:hover {
  color: #9caf88; /* Glows sage green if hovered! */
}

/* Smart Responsive Queries for Smartphones */
@media (max-width: 500px) {
  .footer-heading {
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
  }
  .social-links-grid {
    gap: 15px;
  }
  .social-circle-icon {
    width: 40px;
    height: 40px;
  }
  .social-circle-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* A platform turned off in System Settings — dimmed, click shows a message instead of navigating */
.social-link-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.social-link-disabled:hover {
    background-color: transparent;
    color: #9caf88;
    box-shadow: none;
    transform: none;
}

