/* Universal Box-Sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #ff46a2;
    /* Updated: Changed to new hex color #ff46a2 */
    --secondary-color: #6A5ACD;
    /* SlateBlue - A cool, deep purple-blue */
    --accent-color: #FFD700;
    /* Gold - For highlights and stars */
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --background-light: #ffffff;
    --background-dark: #000;
    /* Dark slate for contrast sections */
    --border-color: #e0e0e0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-sassy: 'Sassy Frass', cursive;
    /* For decorative elements or special text */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    scroll-behavior: smooth;
}

/* Container Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

/* Text Alignment & Spacing Utilities */
.text-center {
    text-align: center;
}

.mb-16 {
    margin-bottom: 4rem;
    /* Adjusted from 16 to a more standard rem value */
}

.mt-6 {
    margin-top: 1.5rem;
    /* Adjusted from 6 to a more standard rem value */
}

/* Headings */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--text-light);
    /* Hero title is on a dark background */
}

h2 {
    font-size: 2.5rem;
    margin-top: var(--spacing-xl);
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: var(--spacing-md);
}

/* Underline Styles */
.underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 2px;
}

.underline-secondary {
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 2px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    /* Updated: Buttons black */
    background-color: #000000;
    color: var(--text-light);
    border: 2px solid #fff;
    /* Border color for secondary button */
}

.btn-primary:hover {
    /* Updated: Darker shade for hover */
    background-color: #333333;
    transform: translateY(-2px);
}

.btn-secondary {
    /* Updated: Buttons black */
    background-color: var(--primary-color);
    /* Keep background transparent */
    color: #000000;
    /* Text color for secondary button */
    border: 2px solid #fff;
    /* Border color for secondary button */
}

.btn-secondary:hover {
    /* Updated: Buttons black */
    background-color: #000000;
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-call-now {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: 2px solid #fff;
    /* Border color for secondary button */
}

.btn-call-now:hover {
    background-color: darken(var(--accent-color), 10%);
    /* Darker shade for hover */
    background-color: #e6c200;
}

.btn-call-now-icon {
    font-size: 1.1rem;
}

/* Header */
.header {
    /* Updated: Whole header section primary color */
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header-logo-container {
    display: flex;
    align-items: center;
}

.header-logo {
    /* Updated: Logo resize - 20% larger than its default size */
    width: 120%;
    height: auto;
    max-height: 115px;
    /* Adjust as needed, but 120% might make it larger than 50px */
}

/* Desktop Navigation */
.navbar-desktop {
    /* This rule is now largely redundant as .header sets the background.
       If you want a specific background for just the nav links container itself,
       keep this. Otherwise, it can be removed or its background set to transparent. */
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    padding: 10px 20px;
    /* Added padding for visual space */
    border-radius: 5px;
    /* Optional: subtle rounding */
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    /* Changed to light text for dark nav background */
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    /* Use accent color for underline for contrast */
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
    /* Changed to accent color on hover */
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    /* Changed to light text for dark header */
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-button:hover {
    transform: scale(1.1);
}

/* Mobile Navigation */
.mobile-menu-hidden {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    background-color: var(--primary-color);
    /* Updated: Mobile menu background matches header */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 100%;
    top: 100%;
    /* Position below the header */
    left: 0;
    z-index: 999;
}

.mobile-menu-visible {
    display: block;
    max-height: 500px;
    /* Adjust as needed for content height */
    opacity: 1;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md) 0;
    text-align: center;
}

.nav-link-mobile {
    text-decoration: none;
    color: var(--text-light);
    /* Changed to light text for dark mobile menu */
    padding: 0.8rem var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* Lighter border for dark background */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link-mobile:last-of-type {
    border-bottom: none;
}

.nav-link-mobile:hover {
    background-color: var(--accent-color);
    /* Accent color on hover */
    color: var(--text-dark);
    /* Dark text on accent hover */
}

.btn-call-now-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    margin: var(--spacing-md) auto;
    /* Center button */
    max-width: 200px;
    /* Limit button width */
}

.btn-call-now-mobile:hover {
    background-color: darken(var(--accent-color), 10%);
    background-color: #e6c200;
}

/* Hero Section */
.hero {
    background-image: url('https://images.unsplash.com/photo-1639057131107-bacd6a6cce38?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    /* Example image */
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* text-white */
    position: relative;
    z-index: 1;
    /* To ensure content is above overlay */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Dark overlay - UPDATED opacity from 0.5 to 0.3 */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Section Styles */
.section-services,
.section-gallery,
.section-about,
.section-testimonials {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-dark);
}

.section-special-services,
.section-contact {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.section-title {
    color: var(--text-light);
}

.section-title-white {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle-white {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.service-card {
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.service-card-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-card-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    /* Allows description to take available space */
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.service-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-list-icon {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.service-price {
    margin-top: auto;
    /* Pushes price to the bottom */
    padding-top: var(--spacing-md);
    border-top: 1px dashed var(--border-color);
}

.service-price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.service-price-starting {
    font-size: 0.85rem;
    color: #888;
}

/* Special Services Grid */
.special-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.special-service-card {
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
    /* Override inherited light text color */
}

.special-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-icon-white-bg {
    background-color: var(--secondary-color);
    /* Use secondary color for icons */
    color: var(--text-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto var(--spacing-md) auto;
}

.special-service-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.special-service-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: var(--spacing-md);
}

.special-service-price span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Call To Action */
.call-to-action {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Gallery Section */
.section-gallery .section-title {
    color: var(--primary-color);
    /* Ensure title color is consistent */
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stack on small screens */
    gap: var(--spacing-xl);
    /* Increased gap for better separation */
    margin-top: var(--spacing-xl);
}

.gallery-item {
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-md);
    text-align: center;
}

.gallery-subtitle {
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.before-after-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    cursor: ew-resize;
    /* Indicate horizontal resize */
}

.before-after-image,
.before-after-image-cover {
    display: block;
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
}

.after-image {
    position: absolute;
    top: 0;
    right: 0;
    /* Starts from the right */
    height: 100%;
    overflow: hidden;
}

.after-image img {
    position: absolute;
    top: 0;
    right: 0;
    /* Align the 'after' image to the right within its container */
    height: 100%;
    width: auto;
    /* Important: maintain aspect ratio of the full image */
    max-width: unset;
    /* Override any max-width */
}

.slider-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: ew-resize;
    z-index: 10;
    border: 3px solid var(--text-light);
}

.slider-icon-container {
    background-color: var(--background-dark);
    color: var(--text-light);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

/* About Section */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

.about-image-container {
    flex-shrink: 0;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    max-height: 450px;
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: var(--spacing-md);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.about-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.stat-card {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-md);
    text-align: center;
    min-width: 150px;
    flex: 1;
    max-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: auto;
    /* Pushes author info to the bottom */
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
    /* Prevent avatar from shrinking */
}

.testimonial-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #777;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Stack on small screens */
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.contact-info-title,
.contact-form-title {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    /* Align icon and text at the top */
    gap: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.4);
    /* Slightly transparent background */
    padding: var(--spacing-md);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-info-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-info-icon-container {
    background-color: var(--secondary-color);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.contact-info-heading {
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

address {
    font-style: normal;
    /* Override default italic for address */
}

/* Social Media */
.social-media {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.social-media-title {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 1.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background-color: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    /* Ensure form text is dark */
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    color: #555;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-light);
    background-color: #fcfcfc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.2);
}

.form-textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (min-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
    }

    .mobile-menu-button {
        display: none;
    }

    .navbar-desktop {
        display: flex;
    }

    .mobile-menu-hidden {
        display: none !important;
        /* Ensure hidden on desktop */
    }

    .hero {
        padding: 10rem 0;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .special-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        flex-direction: row;
        text-align: left;
    }

    .about-image {
        max-width: 100%;
        margin-right: var(--spacing-xl);
    }

    .about-content {
        text-align: left;
    }

    .about-stats {
        justify-content: flex-start;
    }

    .testimonial-card {
        text-align: left;
        align-items: flex-start;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1.5fr 2fr;
        /* Adjust column ratio */
        text-align: left;
    }

    .contact-info-title,
    .contact-form-title {
        text-align: left;
    }

    .social-media {
        text-align: left;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .navbar-desktop {
        display: none;
        /* Hide desktop nav on small screens */
    }

    .mobile-menu-button {
        display: block;
        /* Show mobile menu button */
    }

    .header-logo {
        height: 40px;
        /* Smaller logo on mobile */
        /* Adjusted width for mobile to ensure it doesn't get too big from 120% */
        width: auto;
        max-width: 150px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .container {
        padding: var(--spacing-md);
    }

    .mb-16 {
        margin-bottom: 3rem;
    }

    .section-services,
    .section-special-services,
    .section-gallery,
    .section-about,
    .section-testimonials,
    .section-contact {
        padding: var(--spacing-lg) 0;
    }

    .about-image {
        margin-bottom: var(--spacing-lg);
    }

    .stat-card {
        flex-basis: 45%;
        /* Two columns on mobile */
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .testimonial-avatar {
        margin-bottom: 0.5rem;
    }

    .contact-form {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .service-card-title,
    .special-service-title {
        font-size: 1.3rem;
    }

    .service-price-amount {
        font-size: 1.8rem;
    }
}
