:root {
    /* Brand Colors */
    --kmon-green: #82b7a6;
    --kmon-green-hover: #6a958a;
    --color-bg: #FFFFFF;
    --color-text: #222222;
    --color-text-light: #666666;
    --color-header-bg: #000000;
    --color-topbar-bg: #f8f9fa;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--kmon-green);
    color: #000000;
}

.btn-primary:hover {
    background-color: var(--kmon-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(130, 183, 166, 0.3);
}

.btn-outline {
    border: 2px solid var(--kmon-green);
    color: var(--kmon-green);
    background: transparent;
}

.btn-outline:hover {
    background: var(--kmon-green);
    color: #FFFFFF;
}

/* --- Header System --- */
/* Top Bar (Faldón) */
.top-bar {
    background-color: var(--color-topbar-bg);
    color: var(--color-text);
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

/* Main Header */
.site-header {
    background-color: var(--color-header-bg);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-container img {
    height: 65px;
    width: auto;
    /* Larger logo for better visibility */
    display: block;
}

/* Desktop Nav */
.main-nav>ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: white;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: var(--kmon-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-contact-link {
    color: white;
    font-weight: 500;
}

.header-contact-link:hover {
    color: var(--kmon-green);
}

/* Mobile Nav (Default Hidden on Desktop) */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

/* --- Hero Section (Panoramic) --- */
.hero-panoramic {
    position: relative;
    width: 100%;
    height: 50vh;
    /* Panoramic Strip */
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-panoramic video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    /* Slight darken for text contrast if needed */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* Allow touch to reach video play button if blocked */
}

.hero-content {
    text-align: center;
    color: white;
    padding: 20px;
    pointer-events: auto;
    /* Reinstate events for buttons */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Service Hero (Subpages) --- */
.hero-service {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-service {
        background-attachment: scroll !important;
        height: 35vh;
        min-height: 250px;
    }
}

/* Desktop zoom effect if possible or just fixed */
.hero-service::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-service .hero-content {
    z-index: 1;
}

/* --- Service Grid --- */
.service-grid-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    color: var(--color-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.grid-2x2 {
    grid-template-columns: 1fr 1fr;
}

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

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

.service-card {
    position: relative;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    text-align: center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* --- Footer --- */
.site-footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 20px;
}

/* Language Flags */
.lang-selector {
    display: flex;
    gap: 15px;
    align-items: center;
}

.flag-icon {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.flag-icon:hover {
    transform: scale(1.1);
}

.lang-link {
    opacity: 0.6;
    transition: opacity 0.3s;
}

.lang-link:hover,
.lang-link.active {
    opacity: 1;
}

.footer-brands {
    background: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.brand-logos {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.brand-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.brand-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* --- Floating Reservation Button --- */
.floating-reserve {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--kmon-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-reserve:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--kmon-green-hover);
}

.floating-reserve span {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--color-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.floating-reserve:hover span {
    opacity: 1;
}

/* --- Floating WhatsApp Button --- */
.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    /* Positioned above the reservation button */
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    /* WhatsApp Brand Color */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20BA56;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp span {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--color-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.floating-whatsapp:hover span {
    opacity: 1;
}

/* --- SEO Section Styles --- */
.seo-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.seo-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* --- Reviews Carousel & Instagram Grid --- */
.reviews-section,
.instagram-section {
    padding: 80px 0;
    text-align: center;
}

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

.review-card {
    padding: 30px;
    background: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.review-author {
    font-weight: bold;
    color: #333;
}

.instagram-account {
    margin-bottom: 40px;
}

.instagram-account h3 {
    margin-bottom: 20px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.instagram-grid img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.instagram-grid img:hover {
    opacity: 0.8;
}

/* --- Service Breakdown (Service Pages) --- */
.service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.service-item-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 3px solid var(--kmon-green);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item-card .brand-img {
    height: 45px;
    max-width: 150px;
    object-fit: contain;
    align-self: flex-start;
    margin-bottom: 5px;
}

.service-item-card h3 {
    font-size: 1.4rem;
    color: var(--kmon-green);
    margin-bottom: 10px;
}

.service-item-header {
    margin-bottom: 15px;
}

.service-subtitle {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.card-feature-img {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-item-card:hover .card-feature-img {
    transform: scale(1.02);
}

.sub-services {
    background: #fdfdfd;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    margin-top: 15px;
}

.sub-service-item {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    margin-top: 10px;
}

.sub-desc {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 5px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 5px;
}

.sub-desc:last-child {
    border-bottom: none;
}

.service-item-card .benefits {
    list-style: none;
    padding: 0;
}

.service-item-card .benefits li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #666;
}

.service-item-card .benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--kmon-green);
    font-weight: bold;
}

.service-item-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kmon-green);
    margin-top: auto;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

/* --- Footer Refinements --- */
.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col img[alt="KMon Logo"] {
    width: auto;
    /* Ensure aspect ratio is maintained despite HTML attributes */
}

.footer-addr {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-addr strong {
    display: block;
    margin-bottom: 2px;
}

.footer-addr a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}

.footer-addr a:hover {
    text-decoration: underline;
}

/* --- Dropdown System --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 220px;
    padding: 10px 0;
    list-style: none;
    display: none !important;
    /* Ensure it's hidden by default */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--kmon-green);
    z-index: 1000;
}

.dropdown-menu ul {
    display: none;
    /* Hide any further nested menus */
}

/* Show logic */
@media (hover: hover) {
    .dropdown:hover>.dropdown-menu {
        display: block !important;
    }

    .dropdown:hover>a svg {
        transform: rotate(180deg);
    }
}

.dropdown.is-open>.dropdown-menu {
    display: block !important;
}

.dropdown.is-open>a svg {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #1a1a1a;
    color: #fff;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: #111;
    color: var(--kmon-green);
}

.dropdown svg {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

/* Handled in media query/JS */

/* --- Mobile Bottom Nav --- */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    display: none;
    /* Hidden on desktop */
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 10001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    border-top: 1px solid #333;
}

.mobile-bottom-nav .nav-item {
    color: white;
    text-align: center;
    text-decoration: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.mobile-bottom-nav .nav-item svg {
    font-size: 1.2rem;
    margin-bottom: 3px;
    color: var(--kmon-green);
}

.mobile-bottom-nav .nav-item span {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Mobile Dropdown Popup */
.mobile-bottom-nav .dropdown-menu {
    bottom: 100%;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    border-top: none;
    border-bottom: 2px solid var(--kmon-green);
}

/* --- Responsive Adjustments --- */
/* (Existing content) */

/* --- Transformation Comparison Slider --- */
.transformations-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #f0f0f0;
    border-radius: 50px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-btn:hover {
    background: #E1306C;
    /* Instagram Color */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.social-btn svg {
    font-size: 1.2rem;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.comp-slider {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 9/16;
    /* Portrait for mobile focus */
    background: #000;
}

.comp-slider img,
.comp-slider video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    /* Prevent dragging image itself */
    user-select: none;
}

/* Bottom/Background Media (After) */
.comp-after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Ensure base stacking context */
}

.comp-label {
    position: absolute;
    top: 20px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.75rem;
    border-radius: 20px;
    z-index: 2;
    /* Low enough to be covered by higher wrappers */
    pointer-events: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.comp-label.after {
    right: 20px;
}

.comp-label.before {
    left: 20px;
}


/* Top/Foreground Media (Before) - Masked */
.comp-before-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    /* Initial split */
    height: 100%;
    overflow: hidden;
    z-index: 10;
    /* Strictly higher than after-wrapper + label (1 + 2 = 3ish) */
    border-right: 3px solid white;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
    background: #fff;
    /* Fallback */
}

/* The inner content needs to be fixed width to not squish */
.comp-before-content {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Handle */
.comp-handle {
    position: absolute;
    top: 50%;
    right: -20px;
    /* Center perfectly on border */
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kmon-green);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: ew-resize;
    z-index: 20;
    transform: translateY(-50%);
    pointer-events: auto;
    /* Handle is clickable/draggable */
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        /* Hide top menu */
    }

    .mobile-bottom-nav {
        display: flex;
    }

    .floating-whatsapp {
        bottom: 150px;
        right: 20px;
    }

    .floating-reserve {
        bottom: 80px;
        /* Adjust to be above bottom bar */
        right: 20px;
    }

    body {
        padding-bottom: 70px;
        /* Spacer for bottom bar */
    }

    .header-contact-link {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 10010;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 80px !important;
        /* Position above mobile nav */
        left: 10px;
        right: 10px;
        padding: 15px;
    }
}

.cookie-banner.show {
    display: block;
}

.cookie-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.cookie-banner a {
    color: var(--kmon-green);
    text-decoration: underline;
}

.cookie-banner button {
    background: var(--kmon-green);
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cookie-banner button:hover {
    background: var(--kmon-green-hover);
}

@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner button {
        width: 100%;
    }
}

/* Font Awesome SVG Replacement */
.svg-inline--fa {
    display: inline-block;
    height: 1em;
    overflow: visible;
    vertical-align: -0.125em;
}

@media (max-width: 480px) {
    .hero-service h1 {
        font-size: 1.5rem !important;
        padding: 0 10px;
    }
}

/* --- Salon Detail Refinements --- */
.salon-details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.salon-info-col {
    flex: 1;
    min-width: 300px;
}

.salon-map-col {
    flex: 1;
    min-width: 300px;
    height: 450px;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.btn-instagram:hover {
    transform: scale(1.05);
    color: white;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1877F2;
    color: white !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.btn-facebook:hover {
    transform: scale(1.05);
    color: white;
}

.btn-tiktok {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    /* TikTok black */
    color: white !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.btn-tiktok:hover {
    transform: scale(1.05);
    color: white;
}

/* 3+2 Gallery Grid */
.gallery-3-2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-3-2 .service-card {
    height: 300px;
    grid-column: span 2;
}

/* The last two images shifted to center on Desktop */
.gallery-3-2 .service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.gallery-3-2 .service-card:nth-child(5) {
    grid-column: 4 / span 2;
}

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

    .gallery-3-2 .service-card,
    .gallery-3-2 .service-card:nth-child(4),
    .gallery-3-2 .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .salon-details-container {
        flex-direction: column;
    }

    .salon-map-col {
        height: 350px;
    }
}

/* --- Reviews Section --- */
.reviews-section {
    padding: 80px 0;
    background: #fcfcfc;
    text-align: center;
    overflow: hidden;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.reviews-carousel-wrapper {
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.review-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    position: relative;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-author {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.review-salon {
    font-size: 0.85rem;
    color: var(--kmon-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.control-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--kmon-green);
    border-color: var(--kmon-green);
    color: white;
}

.google-reviews-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-google-review {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #fff;
    border: 1px solid #4285F4;
    color: #4285F4;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-google-review:hover {
    background: #4285F4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.2);
}

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

    .review-content {
        padding: 30px 20px;
    }

    .google-reviews-links {
        flex-direction: column;
        align-items: center;
    }
}