/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B4513;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B4513;
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: #8B4513;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://i.postimg.cc/gjfc9xZM/Ultrarealistic-portrait-of-202512061807-(1).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    letter-spacing: 1px;
}

.btn-primary {
    background: #8B4513;
    color: white;
}

.btn-primary:hover {
    background: #654321;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: #8B4513;
    transform: translateY(-3px);
}

.btn-call {
    background: #8B4513;
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.btn-call:hover {
    background: #654321;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.3);
}

/* Services Section */
.services {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    background-image: url('https://i.postimg.cc/prgVNmj2/Ultrarealistic-portrait-of-202512061807.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #8B4513;
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-icon {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Hair Color Selection Section */
.hair-colors {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    background: white;
}

.hair-colors .section-overlay {
    display: none;
}

.hair-colors .container {
    position: relative;
    z-index: 2;
}

.hair-colors .section-title {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    display: block;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: fit-content;
    max-width: 90%;
}

.hair-colors .section-description {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.color-selector-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.color-preview {
    position: relative;
}

.color-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.color-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.color-image-container.fade-out img {
    opacity: 0;
}

.color-description {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
    opacity: 1;
}

.color-description.fade-out {
    opacity: 0;
}

.color-swatches {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
    padding: 1rem;
}

.swatch {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.swatch:hover {
    transform: scale(1.1);
    border-color: #8B4513;
}

.swatch.active {
    border-color: #8B4513;
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.5);
}

/* Color swatches - specific colors */
.swatch[data-color="blonde-light"] { background: #F5E6D3; }
.swatch[data-color="blonde-medium"] { background: #E6C79A; }
.swatch[data-color="blonde-dark"] { background: #D4A574; }
.swatch[data-color="brown-light"] { background: #8B6F47; }
.swatch[data-color="brown-medium"] { background: #6B4E3D; }
.swatch[data-color="brown-dark"] { background: #4A3428; }
.swatch[data-color="black"] { background: #1A1A1A; }
.swatch[data-color="red-light"] { background: #D2691E; }
.swatch[data-color="red-medium"] { background: #CD5C5C; }
.swatch[data-color="red-dark"] { background: #8B4513; }
.swatch[data-color="auburn"] { background: #A0522D; }
.swatch[data-color="platinum"] { background: #E5E4E2; }
.swatch[data-color="ash-brown"] { background: #6B5B73; }
.swatch[data-color="chocolate"] { background: #7B3F00; }
.swatch[data-color="bronze"] { background: #CD7F32; }
.swatch[data-color="mahogany"] { background: #C04000; }
.swatch[data-color="caramel"] { background: #D2691E; }
.swatch[data-color="honey"] { background: #F0E68C; }
.swatch[data-color="espresso"] { background: #3C2413; }
.swatch[data-color="cinnamon"] { background: #D2691E; }
.swatch[data-color="rose-gold"] { background: #E8B4B8; }
.swatch[data-color="balayage"] { background: #C9A961; }

/* Contact Form Section */
.contact-form-section {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    background-image: url('https://i.postimg.cc/Y980G2mT/Ultrarealistic-portrait-of-202512061812-(1).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-form-section .section-overlay {
    display: none;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-section .section-title {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    display: block;
    margin: 0 auto 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: fit-content;
    max-width: 90%;
}

.contact-form-section .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-section .contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-section .map-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.contact-form-section .map-container iframe {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-form-section .contact-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section .contact-info p {
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 1.1rem;
}

.contact-form-section .contact-info a {
    color: #8B4513;
    text-decoration: none;
}

.contact-form-section .contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.required {
    color: #d32f2f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.form-group textarea {
    resize: vertical;
}

.form-remark {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-label span {
    line-height: 1.5;
}

/* Social Media Section */
.social-media {
    min-height: 70vh;
    padding: 100px 0;
    position: relative;
    background: #f9f9f9;
}

.social-media .section-overlay {
    display: none;
}

.social-media .section-title {
    color: #8B4513;
}

.social-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icon {
    font-size: 2.5rem;
}

.social-icon i {
    display: block;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-btn.google:hover {
    background: #4285F4;
    color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #8B4513;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: #8B4513;
    width: 20px;
}

.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #8B4513;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 69, 19, 0.2);
    color: #8B4513;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: #8B4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #654321;
}

/* Page Hero (for other pages) */
.page-hero {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 70px;
}

.about-hero {
    background-image: url('https://i.postimg.cc/MpxHzrH0/A-white-saloon-202512061930.jpg');
}

.services-hero {
    background-image: url('https://i.postimg.cc/9M10RX75/Ultrarealistic-portrait-of-202512061812.jpg');
}

.gallery-hero {
    background-image: url('https://i.postimg.cc/9M10RX75/Ultrarealistic-portrait-of-202512061812.jpg');
}

.products-hero {
    background-image: url('https://i.postimg.cc/9M10RX75/Ultrarealistic-portrait-of-202512061812.jpg');
}

.reviews-hero {
    background-image: url('https://i.postimg.cc/9M10RX75/Ultrarealistic-portrait-of-202512061812.jpg');
}

.contact-hero {
    background-image: url('https://i.postimg.cc/9M10RX75/Ultrarealistic-portrait-of-202512061812.jpg');
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* About Page */
.about-content {
    padding: 80px 0;
    background: #f9f9f9;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #666;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: white;
}

.founder-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.founder-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.2rem;
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.founder-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.founder-credentials {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.founder-credentials p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #666;
}

.founder-credentials i {
    color: #8B4513;
    font-size: 1.2rem;
}

/* Services Page */
.services-page {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-detail-icon {
    width: 100%;
    height: 300px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.service-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-detail-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.service-detail-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-card ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.service-detail-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Gallery Page */
.gallery-page {
    padding: 80px 0;
    background: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

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

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

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

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

/* Products Page */
.products-page {
    padding: 80px 0;
    background: #f9f9f9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    padding: 1rem 1.5rem 0.5rem;
    margin: 0;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    padding: 0 1.5rem;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B4513;
    padding: 0 1.5rem 1rem;
    margin: 0;
}

.product-card .btn-call {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    box-sizing: border-box;
}

/* Reviews Page */
.reviews-page {
    padding: 80px 0;
    background: #f9f9f9;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.reviews-header .section-title {
    margin-bottom: 0;
}

.rate-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.rate-google-btn i {
    font-size: 1.2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: #8B4513;
    text-align: right;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container h2,
.map-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 2rem;
}

.map-container iframe {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 1.1rem;
}

.contact-info a {
    color: #8B4513;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

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

.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Parallax ready classes */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .color-selector-wrapper {
        grid-template-columns: 1fr;
    }
    
    .color-swatches {
        max-height: 400px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .color-selector-wrapper {
        grid-template-columns: 1fr;
    }
    
    .color-image-container {
        height: 400px;
    }
    
    .color-swatches {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
        max-height: 300px;
    }
    
    .swatch {
        width: 60px;
        height: 60px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .services-detailed {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .reviews-header {
        flex-direction: column;
    }
    
    .rate-google-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .color-swatches {
        grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    }
    
    .swatch {
        width: 50px;
        height: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .reviews-header .section-title {
        font-size: 1.8rem;
    }
    
    .rate-google-btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
}

