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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* Skip to Content */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

.header-btn {
    background: #d4a574;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 4px;
}

.header-btn:hover {
    background: #c49464;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-call-cta {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 4px;
}

/* Header Main */
.header-main {
    background: #1a1a1a;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.header-main .logo {
    padding: 5px 10px;
}

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

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

.logo img {
    height: 60px;
    max-width: 150px;
    object-fit: contain;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    padding: 10px 0;
    display: block;
    transition: color 0.3s;
}

.nav-menu > li > a:hover {
    color: #d4a574;
}

.nav-menu li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
    transition: background 0.3s, color 0.3s;
}

.sub-menu li a:hover {
    background: #f5f5f5;
    color: #d4a574;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

/* Hero Section - New Format */
.hero-new {
    display: flex;
    flex-direction: column;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    background: #000;
}

.hero-main-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    z-index: 10;
    max-width: 50%;
}

.hero-stars {
    font-size: 24px;
    color: #FFD700;
    letter-spacing: 8px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-brand-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 8px;
    margin: 0 0 10px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.hero-tagline {
    font-size: 16px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero-description {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.hero-description p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.hero-cta {
    background: #fff;
    padding: 0 20px 40px;
    text-align: center;
}

.hero-cta .btn-primary {
    display: inline-block;
    background: #d4a574;
    color: #fff;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
    text-decoration: none;
}

.hero-cta .btn-primary:hover {
    background: #c49464;
}

/* Legacy Hero Styles (for other pages if needed) */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

.hero-tag {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d4a574;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: #d4a574;
    color: #fff;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background: #c49464;
    transform: translateY(-2px);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.hero-dot.active {
    background: #d4a574;
}

/* Dynamic Beauty Section */
.section-dynamic {
    padding: 80px 0;
    background: #fafafa;
}

.section-dynamic .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4a574;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.section-text strong {
    color: #333;
}

.section-services {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.section-services a {
    color: #d4a574;
    font-weight: 500;
    border-bottom: 1px solid #d4a574;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.section-services a:hover {
    opacity: 0.7;
}

.section-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #333;
}

.section-image {
    position: relative;
}

.section-image img {
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Stats Section */
.section-stats {
    background: #1a1a1a;
    padding: 40px 0;
}

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

.stat-item {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    width: 100%;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4a574;
}

.stat-label {
    font-size: 16px;
    margin-top: 12px;
    line-height: 1.4;
    max-width: 220px;
    min-height: 2.8em;
}

.stat-award img {
    max-width: 150px;
    max-height: 140px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 5px;
}

/* Services Section */
.section-services-grid {
    padding: 80px 0;
}

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

.section-header p {
    max-width: 600px;
    margin: 15px auto 0;
    color: #666;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
}

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

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

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

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

.service-card a {
    font-size: 13px;
    color: #d4a574;
}

/* Consultation Section */
.section-consultation {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f0eb 0%, #fff 100%);
}

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

.consultation-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.consultation-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.consultation-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.btn-consultation {
    display: inline-block;
    background: #d4a574;
    color: #fff;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-consultation:hover {
    background: #c49464;
}

/* About Owner Section */
.section-owner {
    padding: 80px 0;
    background: #fff;
}

.owner-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.owner-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.owner-quote {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.owner-quote strong {
    color: #333;
    font-weight: 600;
}

.owner-signature {
    font-size: 24px;
    font-style: italic;
    color: #d4a574;
}

/* Testimonials Section */
.section-testimonials {
    padding: 80px 0;
    background: #fafafa;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 40px;
    display: none;
}

.testimonial-item.active {
    display: block;
}

.testimonial-stars {
    color: #f5c842;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 20px;
    color: #666;
}

.testimonial-nav:hover {
    border-color: #d4a574;
    color: #d4a574;
}

.testimonial-prev {
    left: -80px;
}

.testimonial-next {
    right: -80px;
}

.testimonial-link {
    text-align: center;
    margin-top: 30px;
}

.testimonial-link a {
    color: #d4a574;
    font-weight: 500;
    border-bottom: 1px solid #d4a574;
}

/* Contact Form Section */
.section-contact {
    padding: 80px 0;
    background: #1a1a1a;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.contact-info--phones {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-phone {
    font-size: 28px;
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.contact-phone-sep {
    opacity: 0.7;
}

.contact-phone a {
    color: inherit;
    text-decoration: none;
}

.contact-form {
    background: #252525;
    padding: 40px;
    border-radius: 10px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
}

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

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

.form-group select option {
    background: #252525;
    color: #fff;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input {
    width: auto;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #d4a574;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c49464;
}

/* Footer */
.footer {
    background: #111;
    padding: 60px 0 30px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-top: 20px;
    font-size: 15px;
}

.footer h4 {
    font-size: 16px;
    margin-bottom: 25px;
    color: #fff;
}

.footer-contact ul li {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.footer-contact ul li a {
    color: #d4a574;
}

.footer-hours ul li {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-bottom a {
    color: #d4a574;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/page-header.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-images {
    display: grid;
    gap: 20px;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
}

/* Gallery Grid */
.section-gallery {
    padding: 60px 0;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    min-width: 0;
}

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

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.gallery-item h3 {
    font-size: 16px;
}

.gallery-item a {
    font-size: 13px;
    color: #d4a574;
}

/* Pricing Tables */
.pricing-section {
    padding: 60px 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.pricing-table th,
.pricing-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #1a1a1a;
}

.pricing-table td {
    color: #666;
}

.pricing-table tr:hover {
    background: #fafafa;
}

.price {
    font-weight: 600;
    color: #d4a574;
}

/* Service Detail Page */
.service-detail {
    padding: 60px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
}

.feature-list li::before {
    content: "✓";
    color: #d4a574;
    font-weight: bold;
}

/* Service Combinations */
.combinations-section {
    padding: 60px 0;
    background: #fafafa;
}

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

.combination-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.combination-card img {
    width: 200px;
    object-fit: cover;
}

.combination-card-content {
    padding: 25px;
}

.combination-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.combination-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.combination-card a {
    color: #d4a574;
    font-weight: 500;
    font-size: 14px;
}

@media (min-width: 769px) {
    .header-inner {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .header-inner nav {
        flex: 1;
        display: flex;
        justify-content: center;
        min-width: 0;
    }

    .header-main .logo {
        flex-shrink: 0;
    }

    .nav-menu > li:first-child > a::after {
        content: " ▾";
        font-size: 0.75em;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .header-inner {
        justify-content: space-between;
        gap: 12px;
        padding: 10px 0;
    }

    .logo img {
        height: 48px;
        max-width: 120px;
    }

    .header-actions .header-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .mobile-toggle {
        display: flex;
        margin-left: 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li > a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .sub-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-dynamic .container,
    .section-owner .container,
    .contact-grid,
    .about-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .section-image {
        order: -1;
    }

    .testimonial-prev {
        left: 0;
    }

    .testimonial-next {
        right: 0;
    }

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

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

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

    .combination-card {
        flex-direction: column;
    }

    .combination-card img {
        width: 100%;
        height: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .checkbox-group {
        grid-template-columns: 1fr;
    }

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

    .owner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .owner-image {
        order: -1;
        text-align: center;
    }

    .owner-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .stat-visual {
        min-height: 120px;
    }

    .stat-label {
        min-height: auto;
    }
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Close Menu Button */
.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: #333;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Navigation Menu Styles */
.nav-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    z-index: 999;
    overflow-y: auto;
}

.nav-mobile-menu.active {
    right: 0;
}

.nav-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-mobile-menu li {
    border-bottom: 1px solid #eee;
}

.nav-mobile-menu li a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.nav-mobile-menu li a:hover {
    color: #d4a574;
}

.nav-mobile-menu .sub-menu {
    padding-left: 20px;
    background: #f9f9f9;
}

.nav-mobile-menu .sub-menu li {
    border-bottom: none;
}

.nav-mobile-menu .sub-menu li a {
    padding: 12px 0;
    font-size: 14px;
    color: #666;
}

/* Tablet Breakpoint (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

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

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

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    /* Improve Touch Targets */
    .mobile-toggle {
        width: 48px;
        height: 48px;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-toggle span {
        width: 24px;
        height: 2px;
    }

    /* Mobile Font Size Optimization */
    .section-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .consultation-card h3 {
        font-size: 18px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .service-detail h2 {
        font-size: 24px;
    }

    .combination-card h3 {
        font-size: 18px;
    }

    .section-text {
        font-size: 15px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    /* Form Improvements */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 15px;
        min-height: 48px;
        font-size: 16px;
    }

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

    .checkbox-item {
        min-height: 44px;
        padding: 8px 0;
    }

    .btn-primary,
    .btn-secondary,
    .btn-consultation {
        padding: 14px 24px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-submit {
        padding: 16px 15px;
        min-height: 48px;
    }

    /* Contact Form Styling */
    .contact-form {
        padding: 30px 20px;
    }

    .form-group label {
        font-size: 14px;
        font-weight: 500;
    }

    /* Hero Section Mobile */
    .hero {
        height: 500px;
    }

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

    .hero-tag {
        font-size: 12px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 15px;
    }

    /* Testimonial Navigation Mobile */
    .testimonial-prev,
    .testimonial-next {
        position: relative;
        left: auto !important;
        right: auto !important;
        width: 44px;
        height: 44px;
        margin: 0 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .testimonials-slider {
        margin-bottom: 50px;
    }

    /* Footer Link Touch Targets */
    .footer-contact ul li a,
    .footer-hours ul li span,
    .footer-bottom a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }
}

/* Extra Small Phones (max-width: 480px) */
@media (max-width: 480px) {
    .hero {
        height: 450px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .contact-phone {
        font-size: 24px;
    }
}

/* Button Focus States for Accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.btn-consultation:focus,
.btn-submit:focus,
.form-group input:focus,
.form-group textarea:focus,
.mobile-toggle:focus {
    outline: 2px solid #d4a574;
    outline-offset: 2px;
}

/* Form Input Placeholder Styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Pricing Page Styles */
.section-pricing {
    padding: 60px 0 80px;
}

.pricing-category {
    margin-bottom: 60px;
}

.pricing-category-title {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4a574;
}

.pricing-note {
    font-size: 14px;
    color: #666;
    margin-top: -20px;
    margin-bottom: 20px;
    font-style: italic;
}

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

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s;
}

.pricing-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.pricing-service {
    font-size: 15px;
    color: #333;
}

.pricing-price {
    font-size: 16px;
    font-weight: 600;
    color: #d4a574;
}

.pricing-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 15px;
    margin-top: 40px;
}

.pricing-cta h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.pricing-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.pricing-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-cta .btn-primary {
    background: #d4a574;
}

.pricing-cta .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.pricing-cta .btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-category-title {
        font-size: 22px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cta h3 {
        font-size: 24px;
    }
    
    .pricing-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */

.section-testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 16px;
}

.reviews-badge strong {
    color: #1a73e8;
    font-size: 24px;
}

/* Google Reviews Container */
.google-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Individual Review Card */
.gr-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.gr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.gr-stars {
    color: #fbbc04;
    font-size: 18px;
    letter-spacing: 2px;
}

.gr-source {
    font-size: 11px;
    color: #666;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.gr-text {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.gr-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.gr-author strong {
    color: #333;
    font-size: 14px;
}

.gr-date {
    color: #999;
    font-size: 12px;
}

/* Google Reviews Footer */
.gr-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    flex-wrap: wrap;
    gap: 20px;
}

.gr-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gr-rating-info {
    display: flex;
    flex-direction: column;
}

.gr-big-rating {
    font-size: 36px;
    font-weight: 700;
    color: #1a73e8;
    line-height: 1;
}

.gr-stars-large {
    color: #fbbc04;
    font-size: 20px;
    letter-spacing: 2px;
}

.gr-count {
    color: #666;
    font-size: 14px;
    margin-top: 4px;
}

.gr-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.gr-actions .btn-primary {
    background: #1a73e8;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.gr-actions .btn-primary:hover {
    background: #1557b0;
}

.gr-actions .btn-secondary {
    background: transparent;
    color: #1a73e8;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid #1a73e8;
    font-weight: 600;
    transition: all 0.3s;
}

.gr-actions .btn-secondary:hover {
    background: #1a73e8;
    color: #fff;
}

/* Hero Section - Mobile Responsive */
@media (max-width: 768px) {
    .hero-text-overlay {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        text-align: left;
        width: auto;
        max-width: 60%;
    }

    .hero-stars {
        font-size: 16px;
        letter-spacing: 4px;
        margin-bottom: 8px;
    }

    .hero-brand-title {
        font-size: 32px;
        letter-spacing: 3px;
        margin: 0 0 5px 0;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-main-image {
        max-height: 50vh;
    }

    .hero-description {
        padding: 30px 20px;
    }

    .hero-description p {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-cta {
        padding: 0 20px 30px;
    }

    .hero-cta .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-text-overlay {
        left: 15px;
        max-width: 70%;
    }

    .hero-brand-title {
        font-size: 28px;
    }

    .hero-stars {
        font-size: 14px;
    }
}

/* Responsive Google Reviews */
@media (max-width: 992px) {
    .gr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .gr-footer {
        flex-direction: column;
        text-align: center;
    }

    .gr-badge {
        flex-direction: column;
    }

    .gr-actions {
        flex-direction: column;
        width: 100%;
    }

    .gr-actions .btn-primary,
    .gr-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Reviews Carousel - Mobile Responsive with CSS Scroll Snap */
.section-testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.reviews-carousel {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 5px 20px 5px;
    scrollbar-width: thin;
    scrollbar-color: #d4a574 #f0f0f0;
}

.reviews-track::-webkit-scrollbar {
    height: 8px;
}

.reviews-track::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.reviews-track::-webkit-scrollbar-thumb {
    background: #d4a574;
    border-radius: 10px;
}

.review-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.review-stars {
    color: #fbbc04;
    font-size: 18px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.review-author strong {
    color: #333;
}

.review-author span {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    color: #555;
}

/* Carousel Navigation - Hidden on mobile, shown on desktop */
.carousel-nav {
    display: none;
}

/* Touch indicator for mobile */
.reviews-carousel::after {
    content: '← Swipe to see more →';
    display: block;
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 10px;
}

.reviews-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.reviews-badge-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews-rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviews-big-rating {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.reviews-stars-large {
    color: #fbbc04;
    font-size: 18px;
}

.reviews-count {
    color: #666;
    font-size: 14px;
}

.reviews-actions {
    display: flex;
    gap: 16px;
}

.reviews-actions .btn-secondary {
    background: transparent;
    color: #1a73e8;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid #1a73e8;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.reviews-actions .btn-secondary:hover {
    background: #1a73e8;
    color: #fff;
}

/* Desktop: Show navigation buttons */
@media (min-width: 993px) {
    .carousel-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }

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

    .carousel-btn:hover {
        background: #1a73e8;
        color: #fff;
    }

    .carousel-dots {
        display: flex;
        gap: 8px;
    }

    .carousel-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dots .dot.active {
        background: #1a73e8;
        transform: scale(1.2);
    }

    .reviews-carousel::after {
        display: none;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .review-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
    }

    .reviews-footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .reviews-badge-box {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 85%;
        min-width: 280px;
    }

    .reviews-actions {
        flex-direction: column;
        width: 100%;
    }

    .reviews-actions a {
        width: 100%;
        text-align: center;
    }

    .section-testimonials {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .review-card {
        flex: 0 0 85%;
        min-width: 260px;
    }

    .reviews-big-rating {
        font-size: 28px;
    }

    .reviews-footer {
        padding: 20px;
    }

    .reviews-carousel::after {
        display: block;
        font-size: 11px;
    }
}
