/* Danielle Beauty Lounge - Styles */

/* ============================================ */
/* GLOBAL OVERFLOW PREVENTION                  */
/* ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Prevent ALL images from causing overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent sections from overflowing */
section, .container, .hero, .about, .services, .gallery, .contact, .footer, main {
    max-width: 100%;
    overflow-x: hidden;
}

/* Fix text containers - prevent long words from breaking layout */
p, h1, h2, h3, h4, h5, h6, span {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

:root {
    --primary: #D4B5A0;
    --primary-dark: #B8957F;
    --secondary: #2C2825;
    --accent: #E8D5C4;
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --gray: #6B6B6B;
    --light-gray: #F5F5F5;
    --border: #E0D5CE;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--cream);
}

/* Top Navbar */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-right: 40px;
}

.logo-icon {
    width: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--secondary);
}

.logo-text span {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: 2px;
    color: var(--primary);
    font-weight: 300;
    line-height: 1.4;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    display: inline-block;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.nav-link strong {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.nav-link strong:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 181, 160, 0.3);
}

/* Cherry Financing Nav Link */
.nav-link-cherry {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    padding: 8px 16px !important;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 107, 0.3) !important;
    color: #ff6b6b !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link-cherry:hover {
    background: #ff6b6b !important;
    color: var(--white) !important;
    border-color: #ff6b6b !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.nav-link-cherry i {
    margin-right: 5px;
}

/* Dropdown Menu */
.nav-item.has-dropdown {
    position: relative;
}

.nav-item.has-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item.has-dropdown .nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 15px;
    padding: 10px 0;
}

.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 25px;
    color: var(--gray);
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    color: var(--primary);
    background: var(--cream);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--secondary);
    padding: 5px;
}

/* Main Content */
.main-content {
    margin-top: 90px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--accent) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFFFFF" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,144C672,139,768,149,864,170.7C960,192,1056,224,1152,213.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--secondary);
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease;
}

.hero-content .tagline {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 30px;
    letter-spacing: 5px;
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.6s ease;
}

.btn {
    padding: 15px 40px;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 181, 160, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Sections */
section {
    padding: 80px 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    color: var(--secondary);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 60px;
    font-weight: 300;
}

/* Cherry Financing Banner */
.cherry-banner {
    background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.cherry-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.cherry-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 400;
}

.cherry-banner p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 20px;
}

.cherry-banner .btn-cherry {
    display: inline-block;
    padding: 12px 35px;
    background: #ff6b6b;
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cherry-banner .btn-cherry:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

/* Gift Card Banner */
.gift-card-banner {
    background: linear-gradient(135deg, #F5E6D3 0%, #FFF8F0 50%, #F5E6D3 100%);
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.gift-card-content {
    max-width: 800px;
    margin: 0 auto;
}

.gift-card-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B7355;
    margin-bottom: 12px;
    font-weight: 500;
}

.gift-card-banner p {
    color: #6B5A4A;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.gift-card-banner .btn-gift {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gift-card-banner .btn-gift:hover {
    background: linear-gradient(135deg, #C5A028 0%, #B8930F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.gift-card-banner .btn-gift i {
    margin-right: 8px;
}

/* Floating Cherry Button */
.cherry-floating-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
    background: #ff6b6b;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cherry-floating-btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.5);
}

.cherry-floating-btn i {
    font-size: 1rem;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.experience-badge .years {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 600;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 1px;
}

/* Feature Highlights */
.feature-highlights {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 181, 160, 0.15);
    border-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.services {
    background: var(--cream);
}

.service-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--gray);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 450px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 181, 160, 0.2);
}

.service-image {
    height: 320px;
    overflow: hidden;
    position: relative;
}

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

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

/* Brow Lamination card - taller image for before/after comparison */
.service-card[data-service="brow-lamination"] .service-image {
    height: 350px;
}

.service-card[data-service="brow-lamination"] .service-image img {
    object-fit: contain;
    object-position: center;
    background-color: #faf8f5;
}

/* Custom positioning for specific service card images */
.service-card[data-service="balayage"] .service-image img {
    object-position: center 20%;
}

.service-card[data-service="root-touchup"] .service-image img {
    object-position: center 15%;
}

.service-card[data-service="glaze"] .service-image img {
    object-position: center center;
}

.service-card[data-service="socap-extensions"] .service-image img {
    object-fit: contain;
    object-position: center center;
    background-color: #faf8f5;
}

.service-card[data-service="color-correction"] .service-image img {
    object-position: center center;
}

.service-card[data-service="agave-straightening"] .service-image img {
    object-position: 30% 20%;
}

.service-card[data-service="kids-haircut"] .service-image img {
    object-position: center top;
}

.service-card[data-category="hair"]:nth-child(2) .service-image img {
    object-position: center 30%;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.service-price {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 500;
}

.service-price span {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
}

/* Cherry Financing Styles */
.cherry-financing-link {
    display: block;
    font-size: 14px;
    color: #7a6a64;
    opacity: 0.85;
    text-decoration: none;
    font-weight: 300;
    margin-top: 5px;
    transition: opacity 0.3s ease;
}

.cherry-financing-link:hover {
    opacity: 1;
}

.cherry-modal-notice {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #7a6a64;
}

.cherry-modal-notice a {
    color: #7a6a64;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.cherry-modal-notice a:hover {
    opacity: 0.7;
}

.cherry-contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 20px;
}

.cherry-contact-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.cherry-footer-badge {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px 0;
}

.cherry-footer-badge a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
    padding: 15px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.cherry-footer-badge a:hover {
    background: rgba(255, 107, 107, 0.3);
    border-color: rgba(255, 107, 107, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2);
}

.cherry-footer-badge a i {
    font-size: 1.2rem;
    color: #ff6b6b;
}

.cherry-footer-badge img {
    height: 24px;
    vertical-align: middle;
}

.service-book {
    padding: 10px 25px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-book:hover {
    background: var(--primary-dark);
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 181, 160, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: var(--white);
}

.gallery-overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-overlay-content p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Testimonials Carousel */
.testimonials {
    background: var(--cream);
    overflow: hidden;
}

.testimonials-carousel {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 80px;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    align-items: stretch;
}

.testimonial-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: var(--white);
    padding: 40px 35px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 25px;
    font-style: italic;
    flex: 1 1 auto;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    flex-shrink: 0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    font-weight: 500;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 500;
}

.author-info .rating {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

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

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Review Submission Form */
.review-form-section {
    max-width: 800px;
    margin: 80px auto 0;
    padding-top: 80px;
    border-top: 1px solid var(--border);
}

.review-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.review-form-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 40px;
}

.review-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
}

.review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.review-form-group {
    margin-bottom: 20px;
}

.review-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.review-form-group input,
.review-form-group select,
.review-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    background: var(--cream);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

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

.review-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--primary);
}

.review-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-weight: 500;
}

.review-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 181, 160, 0.3);
}

/* Policies Section */
.policies {
    background: var(--cream);
}

.policies-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-item {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.policy-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 400;
}

.policy-item p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.policy-item p:last-child {
    margin-bottom: 0;
}

.policies-footer {
    background: var(--white);
    padding: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.policies-footer p {
    color: var(--secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.policies-contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 500;
}

.policies-contact-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(193, 154, 107, 0.3);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

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

.info-item i {
    width: 45px;
    height: 45px;
    background: var(--cream);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item div {
    flex: 1;
}

.info-item h4 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p,
.info-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 5px;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.form-submit:hover {
    background: var(--primary-dark);
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border-left: 4px solid #28a745;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 181, 160, 0.1);
    border: 1px solid rgba(212, 181, 160, 0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 181, 160, 0.2);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    position: relative;
    animation: slideDown 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

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

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
    color: var(--gray);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 15px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        padding: 15px 20px;
        display: block;
        border-bottom: none;
    }

    .nav-link:hover, .nav-link.active {
        background: var(--cream);
        border-bottom: none;
    }

    .nav-link strong {
        display: block;
        text-align: center;
        border-radius: 5px;
    }

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

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active {
        max-height: 500px;
    }

    .dropdown-item {
        padding: 12px 30px 12px 40px;
    }

    .nav-item.has-dropdown .nav-link i {
        margin-left: auto;
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

    .nav-item.has-dropdown.active .nav-link i {
        transform: rotate(90deg);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .testimonials-carousel {
        padding: 0 70px;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 30px) / 2);
        padding: 38px 32px;
    }

    .testimonials-track {
        gap: 30px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .review-form {
        padding: 30px;
    }

    .review-form-section {
        margin: 60px auto 0;
        padding-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .cherry-floating-btn {
        bottom: 90px;
        right: 20px;
        padding: 12px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .testimonials-carousel {
        max-width: 1000px;
        padding: 0 70px;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }

    .testimonials-track {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 12px 15px;
    }

    .logo-icon {
        height: 40px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-text span {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .main-content {
        margin-top: 70px;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding: 60px 0;
        overflow: hidden;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

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

    .hero-content .tagline {
        font-size: 1rem;
        letter-spacing: 3px;
    }

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

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-highlights {
        margin: 40px auto 0;
        padding-top: 40px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    /* About Section Mobile Fixes */
    .about-content {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .about-text {
        padding: 0 15px;
    }

    .about-image {
        min-width: unset;
        width: 100%;
        max-width: 100%;
    }

    .about-image img {
        height: auto;
        max-height: 450px;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto;
        display: inline-block;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel {
        padding: 0 55px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        padding: 35px 30px;
    }

    .testimonials-track {
        gap: 0;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-nav.prev {
        left: 5px;
    }

    .carousel-nav.next {
        right: 5px;
    }

    .review-form-section {
        margin: 50px auto 0;
        padding-top: 50px;
    }

    .review-form {
        padding: 25px 20px;
    }

    .review-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .review-form-title {
        font-size: 1.6rem;
    }

    .star-rating label {
        font-size: 1.6rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .policy-item {
        padding: 30px 25px;
    }

    .policy-item h3 {
        font-size: 1.5rem;
    }

    .policy-item p {
        font-size: 1rem;
    }

    .policies-footer {
        padding: 30px 25px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .policies-footer p {
        font-size: 1rem;
    }

    .policies-contact-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    section {
        padding: 60px 20px;
    }

    .cherry-banner {
        padding: 30px 15px;
    }

    .cherry-banner h3 {
        font-size: 1.5rem;
    }

    .cherry-banner p {
        font-size: 0.95rem;
    }

    .gift-card-banner {
        padding: 35px 15px;
    }

    .gift-card-banner h3 {
        font-size: 1.6rem;
    }

    .gift-card-banner p {
        font-size: 1rem;
    }

    .gift-card-banner .btn-gift {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .cherry-floating-btn {
        bottom: 85px;
        right: 15px;
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .cherry-floating-btn span {
        display: none;
    }

    .cherry-floating-btn i {
        font-size: 1.2rem;
    }

    .back-to-top {
        bottom: 30px;
        right: auto;
        left: 20px;
    }

}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ============================================ */
/* Cookie Notice - Full width bottom bar        */
/* ============================================ */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    max-width: 100%;
    z-index: 9999;
    animation: cookieSlideUp 0.5s ease;
    text-align: center;
}

.cookie-notice.hidden {
    display: none;
}

.cookie-notice h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
}

.cookie-notice p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cookie-btn {
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    width: 100%;
}

.cookie-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 181, 160, 0.4);
}

.cookie-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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

/* Cookie Notice - Mobile adjustments */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 16px;
    }

    .cookie-notice h4 {
        font-size: 0.9rem;
    }

    .cookie-notice p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

.hidden {
    display: none !important;
}

/* Required field asterisk */
.required-asterisk {
    color: var(--primary);
    font-weight: 600;
}

/* Form validation styles */
input:invalid:not(:placeholder-shown),
select:invalid:not([value=""]),
textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

input:valid,
select:valid,
textarea:valid {
    border-color: var(--border);
}
