/* 
   MAJU HAIR & BEAUTY - Main Stylesheet
   Updated: April 2025
*/

/* ===== GLOBAL STYLES ===== */
:root {
    /* Color Variables */
    --primary-color: #B8860B; /* Gold/Bronze */
    --secondary-color: #D4AF37; /* Lighter Gold */
    --accent-color: #8B4513; /* Darker Brown */
    --neutral-color: #F5F1E4; /* Cream/Beige */
    --text-color: #4A3C2A; /* Dark Brown */
    --white-color: #ffffff;
    --light-gray: #e0e0e0;
    --dark-gray: #666666;
    
    /* Typography Scale */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    
    /* Line Heights */
    --leading-tight: 1.2;
    --leading-normal: 1.6;
    --leading-loose: 1.8;
    
    /* Typography Variables */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Montserrat', sans-serif;
    --accent-font: 'Montserrat', sans-serif;
    
    /* Spacing Variables */
    --section-spacing: 80px;
    --element-spacing: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--text-color);
    background-color: var(--neutral-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: var(--leading-tight);
    margin-bottom: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.subtitle {
    font-size: var(--text-xl);
    line-height: var(--leading-normal);
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

.accent-text {
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: var(--text-lg);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 28px;
}

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

.btn-appointment {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.btn-appointment:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--neutral-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.logo:hover h1 {
    color: var(--secondary-color);
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/assets/casamento.jpg');
    background-size: cover;
    background-position: center 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    margin-top: 70px;
}

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

.hero h2 {
    font-size: var(--text-4xl);
    margin-bottom: 10px;
    color: var(--white-color);
    letter-spacing: 5px;
}

.hero h3 {
    font-family: var(--heading-font);
    font-size: var(--text-2xl);
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/salao.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    margin-top: 70px;
}

.banner-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-banner h2 {
    font-size: var(--text-3xl);
    margin-bottom: 10px;
    color: var(--white-color);
    letter-spacing: 5px;
}

.page-banner p {
    font-size: 1.2rem;
    margin-bottom: 0;
    letter-spacing: 2px;
}

/* ===== WELCOME SECTION ===== */
.welcome {
    padding: var(--section-spacing) 0;
    background-color: var(--white-color);
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.welcome-text,
.welcome-image {
    flex: 1;
}

.welcome-text p {
    margin-bottom: 20px;
}

.welcome-image {
    flex: 0 0 40%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-image img {
    max-width: 400px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.welcome-image img:hover {
    transform: scale(1.05);
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: var(--section-spacing) 0;
    background-color: var(--neutral-color);
}

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

.service-card {
    background-color: var(--white-color);
    border-radius: 0;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--neutral-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--primary-color);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-link {
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.service-link::after {
    content: '→';
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover::after {
    margin-left: 10px;
}

.services-cta {
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-spacing) 0;
    background-color: var(--white-color);
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-gray);
    scroll-snap-type: x mandatory;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.testimonial {
    flex: 0 0 calc(50% - 15px);
    min-width: 300px;
    scroll-snap-align: start;
}

.testimonial-content {
    background-color: var(--neutral-color);
    border-radius: 0;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content::before {
    content: '"';
    font-family: var(--heading-font);
    font-size: 5rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-info h4 {
    margin-bottom: 0;
}

.stars {
    color: var(--primary-color);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1516975080664-ed2fc6a32937?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    text-align: center;
}

.cta h2 {
    color: var(--white-color);
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: #222;
    color: var(--white-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo h3 {
    color: var(--white-color);
    margin-bottom: 10px;
    text-align: center;
}

.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact h4,
.footer-social h4 {
    color: var(--white-color);
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    padding-left: 0;
    width: 100%;
}

.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-contact span {
    text-align: left;
    flex: 1;
    display: inline-block;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
    max-width: 280px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 15px;
    text-align: center;
    flex-shrink: 0;
    padding-left: 0;
    margin-right: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-story,
.about-mission {
    padding: var(--section-spacing) 0;
}

.about-mission {
    background-color: var(--neutral-color);
}

.story-content,
.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-image,
.story-text,
.mission-image,
.mission-text {
    flex: 1;
}

.story-image {
    flex: 0 0 40%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image img {
    max-width: 400px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: scale(1.05);
}

.mission-image {
    flex: 0 0 40%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-image img {
    max-width: 400px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.mission-image img:hover {
    transform: scale(1.05);
}

.mission-list {
    list-style: none;
    margin-left: 0;
}

.mission-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.mission-list i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.team {
    padding: var(--section-spacing) 0;
    background-color: var(--white-color);
}

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

.team-member {
    background-color: var(--neutral-color);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    margin-bottom: 15px;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.member-specialties span {
    background-color: var(--neutral-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}

.why-choose {
    padding: var(--section-spacing) 0;
    background-color: var(--neutral-color);
}

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

.feature {
    background-color: var(--white-color);
    border-radius: 0;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--neutral-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--primary-color);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* ===== SERVICES PAGE STYLES ===== */
.services-intro {
    padding: var(--section-spacing) 0 calc(var(--section-spacing) / 2);
    background-color: var(--white-color);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.service-category {
    padding: calc(var(--section-spacing) / 2) 0;
    background-color: var(--white-color);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background-color: var(--neutral-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 1px solid var(--primary-color);
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.category-header h2 {
    margin-bottom: 0;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: var(--neutral-color);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-details,
.service-image {
    flex: 1;
    padding: 30px;
}

.service-image {
    flex: 0 0 40%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 400px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

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

.service-options {
    list-style: none;
    margin-left: 0;
}

.service-options li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--light-gray);
}

.service-options li:last-child {
    border-bottom: none;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
}

.booking-cta {
    padding: 60px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.booking-cta h2,
.booking-cta p {
    color: var(--white-color);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info {
    padding: var(--section-spacing) 0;
    background-color: #f9f9f9;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background-color: var(--white-color);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-radius: 5px;
}

.info-card:hover {
    transform: translateY(-10px);
}

/* Make contact cards responsive */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .info-card {
        padding: 25px;
        margin-bottom: 20px;
        text-align: center;
        max-width: 100%;
    }

    .info-card h3 {
        font-size: var(--text-lg);
        margin-bottom: 15px;
        text-align: center;
    }

    .contact-text {
        font-size: var(--text-base);
        text-align: center;
    }

    .info-card .contact-text,
    .info-card .location-link,
    .info-card .phone-link,
    .info-card .social-link {
        text-align: center;
        display: inline-block;
    }

    .service-category {
        padding: calc(var(--section-spacing) / 3) 0;
    }
}

.info-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid var(--primary-color);
}

.info-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-form-section {
    padding: var(--section-spacing) 0;
    background-color: var(--neutral-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.form-container,
.map-container {
    background-color: var(--white-color);
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-container h2,
.map-container h2 {
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 0;
    font-family: var(--body-font);
    font-size: 1rem;
}

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

.map img {
    width: 100%;
    border-radius: 0;
}

.booking-info {
    padding: var(--section-spacing) 0;
    background-color: var(--white-color);
}

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

.booking-option {
    background-color: var(--neutral-color);
    border-radius: 0;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.booking-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 70px;
    height: 70px;
    background-color: var(--neutral-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--primary-color);
}

.option-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.booking-option p {
    margin-bottom: 20px;
}

.faq {
    padding: var(--section-spacing) 0;
    background-color: var(--neutral-color);
}

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

.faq-item {
    background-color: var(--white-color);
    border-radius: 0;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    color: var(--primary-color);
}

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

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

.faq-item.active .toggle-icon i {
    transform: rotate(45deg);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 60px;
    }
    
    h1 {
        font-size: var(--text-4xl);
    }
    
    h2 {
        font-size: var(--text-3xl);
    }
    
    .hero h2 {
        font-size: var(--text-4xl);
    }
    
    .hero h3 {
        font-size: var(--text-2xl);
    }
    
    .page-banner h2 {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 50px;
    }
    
    h1 {
        font-size: var(--text-3xl);
    }
    
    h2 {
        font-size: var(--text-2xl);
    }
    
    h3 {
        font-size: var(--text-xl);
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero h2 {
        font-size: var(--text-3xl);
    }
    
    .hero h3 {
        font-size: var(--text-xl);
    }
    
    .page-banner {
        height: 30vh;
    }
    
    .page-banner h2 {
        font-size: var(--text-2xl);
    }
    
    .welcome-content,
    .story-content,
    .mission-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .welcome-image,
    .story-image,
    .mission-image {
        order: -1;
    }
    
    .service-item {
        flex-direction: column;
        position: relative;
        padding-bottom: 0;
    }
    
    .service-details {
        width: 100%;
        padding-right: 50px;
        padding-bottom: 20px;
    }
    
    .service-image {
        width: 100%;
        display: none; /* Hide by default on mobile */
    }
    
    .service-options.collapsible {
        display: none; /* Hide by default on mobile */
    }
    
    .service-image.active,
    .service-options.collapsible.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .mobile-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 20px;
    }
    
    .mobile-toggle.active i {
        transform: rotate(45deg);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--neutral-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .story-image img,
    .mission-image img {
        max-width: 100%;
        height: 250px;
    }

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

    .footer-contact,
    .footer-social {
        width: 100%;
        padding: 0;
    }

    .footer-contact i {
        padding-left: 0;
    }

    .footer-contact p {
        justify-content: center;
        width: 100%;
        max-width: none;
        margin: 0 auto 15px;
        gap: 15px;
    }

    .testimonial {
        flex: 0 0 calc(100% - 30px);
        scroll-snap-align: center;
    }
    
    .testimonials .section-header {
        position: relative;
        padding-bottom: 30px;
    }
    
    .testimonial-dots {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    
    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--light-gray);
        margin: 0 5px;
        transition: all 0.3s ease;
    }
    
    .dot.active {
        background-color: var(--primary-color);
        transform: scale(1.3);
    }
}

@media (max-width: 576px) {
    :root {
        --section-spacing: 40px;
    }
    
    h1 {
        font-size: var(--text-2xl);
    }
    
    h2 {
        font-size: var(--text-xl);
    }
    
    .hero h2 {
        font-size: var(--text-2xl);
    }
    
    .hero h3 {
        font-size: var(--text-lg);
    }
    
    .page-banner h2 {
        font-size: var(--text-2xl);
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial {
        flex: 0 0 100%;
    }
    
    .service-image img {
        height: 200px;
    }
    
    .story-image img,
    .mission-image img {
        height: 200px;
    }

    .footer-contact {
        padding-left: 10%;
    }

    .footer-contact i {
        padding-left: 10px;
    }
}

.salon-name {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 0 3px;
}

.contact-text {
    font-size: var(--text-base);
    line-height: 1.8;
}

.location-link {
    color: var(--text-color);
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.location-link:hover {
    color: var(--primary-color);
}

.phone-link {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.phone-link:hover {
    color: var(--primary-color);
}

.social-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.follow-text {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-style: italic;
}

@media (max-width: 768px) {
    .contact-text {
        font-size: var(--text-base);
    }
}

@media (max-width: 576px) {
    .footer-content {
        gap: 25px;
    }
    
    .footer-contact,
    .footer-social {
        margin-top: 0;
    }
    
    .footer-contact p {
        gap: 10px;
    }
    
    .footer-contact i {
        margin-right: 10px;
    }
}

/* ===== WEDDING SERVICES SECTION ===== */
.wedding-services {
    padding: var(--section-spacing) 0;
    background-color: var(--neutral-color);
}

.wedding-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.wedding-text p {
    margin-bottom: 20px;
    line-height: var(--leading-normal);
}

.wedding-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 100%;
}

.gallery-item {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:first-child {
    grid-column: 1;
    grid-row: 1 / span 2;
}

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

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

@media (max-width: 992px) {
    .wedding-content {
        grid-template-columns: 1fr;
    }
    
    .wedding-gallery {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }
    
    .gallery-item:first-child {
        grid-column: 1;
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    .wedding-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }
    
    .gallery-item:first-child {
        grid-column: 1;
        grid-row: 1;
    }
    
    .gallery-item:nth-child(3) {
        grid-column: 1 / span 2;
    }
}

@media (max-width: 576px) {
    .wedding-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(3) {
        grid-column: 1;
    }
}

.instagram-text {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.instagram-text:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 576px) {
    .instagram-text {
        display: inline-block;
        margin-top: 5px;
    }
}

/* Mobile collapsible service options */
.mobile-toggle {
    display: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background-color: var(--white-color);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.mobile-toggle i {
    transition: transform 0.3s ease;
}

.service-details {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-details .category-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--neutral-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-details .category-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-details .category-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-details .category-icon:hover i {
    color: var(--white-color);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .service-options.collapsible {
        display: none;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .service-options.collapsible.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .mobile-toggle.active i {
        transform: rotate(45deg);
    }
    
    .service-item {
        flex-direction: column;
        position: relative;
        margin-bottom: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }
    
    .service-details {
        width: 100%;
        padding: 20px 50px 20px 20px;
        background-color: var(--neutral-color);
    }
    
    .service-details .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .service-details .category-icon i {
        font-size: 1.2rem;
    }
    
    .service-details h3 {
        margin-bottom: 10px;
    }
    
    .service-details p {
        margin-bottom: 5px;
    }
    
    .service-image {
        width: 100%;
        display: none;
        padding: 0;
        max-height: 250px;
        overflow: hidden;
    }
    
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .service-options.collapsible {
        display: none;
        padding-top: 15px;
        border-top: 1px dashed var(--light-gray);
        margin-top: 15px;
    }
    
    .service-image.active,
    .service-options.collapsible.active {
        display: block;
        animation: fadeIn 0.4s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 576px) {
    .service-details .category-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .service-details .category-icon i {
        font-size: 1rem;
    }
}

/* Map Section */
.map-section {
    padding: var(--section-spacing) 0;
    background-color: var(--neutral-color);
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .map-container {
        margin-top: 20px;
    }
    
    .map-section .section-title {
        font-size: var(--text-xl);
    }
    
    .map-section .section-subtitle {
        font-size: var(--text-base);
    }
}
