/* ============================================
   Wouah Wouah Club - Styles CSS
   ============================================ */

/* ============================================
   1. Variables & Reset
   ============================================ */
:root {
    /* Colors */
    --primary-color: #FF6B6B;
    --primary-dark: #FF5252;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --dark-color: #333333;
    --light-color: #F7F7F7;
    --white-color: #FFFFFF;
    --gray-color: #666666;
    --light-gray: #E0E0E0;
    --success-color: #4CAF50;
    --error-color: #F44336;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Borders & Shadows */
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--white-color);
}

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

/* ============================================
   2. Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

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

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

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

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo-text .highlight {
    color: var(--primary-color);
}

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

.nav-list a {
    color: var(--dark-color);
    font-family: var(--font-primary);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   4. Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

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

.btn-secondary:hover {
    background-color: #3BB5AD;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

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

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

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

/* ============================================
   5. Hero Section
   ============================================ */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/placeholder-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    text-align: center;
    padding: 150px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 20px;
}

.hero .subtitle {
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   6. Sections Generales
   ============================================ */
.page-header {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 800px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--gray-color);
}

/* ============================================
   7. Services Section
   ============================================ */
.services {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.services h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

.service-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
}

/* Services Detail Page */
.services-detail {
    padding: var(--section-padding);
}

.service-detail-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
    padding: 30px;
    align-items: flex-start;
}

.service-detail-icon {
    font-size: 3rem;
    min-width: 80px;
    text-align: center;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.service-features {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.service-features li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-pricing {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.service-pricing p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--dark-color);
}

.pricing-examples {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.pricing-examples p {
    margin-bottom: 5px;
}

.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.additional-service {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
}

.additional-service h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.additional-service p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary-color);
}

/* Pricing Table */
.pricing-table {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.pricing-table h2 {
    text-align: center;
    margin-bottom: 20px;
}

.table-container {
    overflow-x: auto;
    margin-top: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

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

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

th {
    font-family: var(--font-primary);
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

.note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: var(--gray-color);
}

/* ============================================
   8. Gallery Section
   ============================================ */
.gallery,
.gallery-preview {
    padding: var(--section-padding);
}

.gallery h2,
.gallery-preview h2 {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background-color: var(--white-color);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-color);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.gallery-grid,
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item,
.gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-item img,
.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white-color);
    padding: 20px 10px 10px;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 600;
}

/* ============================================
   9. Lightbox
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: var(--transition);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--border-radius);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white-color);
    font-family: var(--font-primary);
    font-size: 1.2rem;
}

/* ============================================
   10. Contact Page
   ============================================ */
.contact-info {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.contact-info h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.contact-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 10px;
}

.contact-card a {
    color: var(--dark-color);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--primary-color);
}

/* Google Maps */
.google-maps {
    padding: var(--section-padding);
}

.google-maps h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */
.contact-form {
    padding: var(--section-padding);
    background-color: var(--white-color);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

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

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
}

.success-message {
    color: var(--success-color);
    font-weight: 600;
}

.error-message {
    color: var(--error-color);
    font-weight: 600;
}

/* FAQ */
.faq {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--gray-color);
}

/* ============================================
   11. About Page
   ============================================ */
.about-story,
.about-audrey,
.salon-tour,
.why-choose-us {
    padding: var(--section-padding);
}

.about-story h2,
.about-audrey h2,
.salon-tour h2,
.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
}

.story-content,
.audrey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-image img,
.audrey-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.story-text h2,
.audrey-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.story-text p,
.audrey-text p {
    margin-bottom: 20px;
}

.audrey-quote {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    border-left: 5px solid var(--primary-color);
}

.audrey-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.audrey-quote cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--gray-color);
}

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

.salon-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.salon-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.salon-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.salon-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.salon-card p {
    padding: 0 20px 20px;
    color: var(--gray-color);
}

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

.why-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-card p {
    color: var(--gray-color);
}

/* ============================================
   12. Testimonials
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-card .quote {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-card p {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--dark-color);
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.author-name {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark-color);
}

.author-pet {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* ============================================
   13. CTA Section
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
    text-align: center;
    padding: 60px 0;
}

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

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .btn-primary:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta .btn-secondary {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

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

/* ============================================
   14. Footer
   ============================================ */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-section p {
    margin-bottom: 10px;
    color: var(--light-color);
}

.footer-section a {
    color: var(--secondary-color);
    transition: var(--transition);
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-color);
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-color);
    transition: var(--transition);
}

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

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

.footer-bottom p {
    margin-bottom: 10px;
    color: var(--light-color);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ============================================
   15. Legal Pages
   ============================================ */
.legal-content {
    padding: var(--section-padding);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-section p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

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

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    color: var(--gray-color);
}

/* ============================================
   16. Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .story-content,
    .audrey-content {
        grid-template-columns: 1fr;
    }
    
    .story-image,
    .audrey-image {
        order: -1;
    }
    
    .service-detail-card {
        flex-direction: column;
    }
    
    .service-detail-icon {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .gallery-grid,
    .gallery-preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0;
        min-height: 50vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-detail-card {
        padding: 20px;
        flex-direction: column;
    }
    
    .service-detail-icon {
        font-size: 2.5rem;
    }
    
    .table-container {
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 10px 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
    
    .lightbox-img {
        max-width: 95%;
        max-height: 95%;
    }
}

/* ============================================
   17. Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.gallery-item,
.testimonial-card,
.why-card,
.salon-card,
.contact-card {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   18. Utility Classes
   ============================================ */
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-white { color: var(--white-color); }
.text-dark { color: var(--dark-color); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-light { background-color: var(--light-color); }
.bg-dark { background-color: var(--dark-color); }

/* Placeholder for images */
[onerror] {
    border: 2px dashed var(--light-gray);
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    font-family: var(--font-primary);
    font-size: 0.9rem;
}
