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

:root {
    --primary-color: #967bb6;  /* Main lavender color */
    --primary-light: #b8a7d1;  /* Lighter lavender */
    --primary-dark: #6a4b8a;   /* Darker lavender */
    --accent-color: #e6d4f7;   /* Light lavender accent */
    --text-color: #333;
    --light-bg: #fff0f5;       /* Very light lavender background */
    --white: #ffffff;
}

body {
    font-family: 'Playfair Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: var(--primary-color);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 0.5rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-container {
    display: flex;
    align-items: center;
    position: relative;
    width: auto;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links li {
    flex-shrink: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-links a:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.2);
}

/* CTA Button Styles */
.nav-links > li.desktop-book-now a {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-links > li.desktop-book-now a:hover {
    background: linear-gradient(135deg, #ff8e8e, #ffb3b3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Book Now Button */
.mobile-book-now {
    display: none;
}

@media (max-width: 768px) {
    .mobile-book-now {
        display: block;
        background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
        color: white;
        font-weight: 700;
        padding: 0.6rem 1.2rem;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 0.9rem;
        z-index: 1001;
        position: relative;
        flex-shrink: 0;
        border: 2px solid transparent;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .mobile-book-now:hover {
        background: linear-gradient(135deg, #ff8e8e, #ffb3b3);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .desktop-book-now {
        display: none !important;
    }
}

.contact-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact-links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Social Media Icons */
.contact-links a[data-platform] {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.contact-links a[data-platform] i {
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-links a[data-platform="facebook"] i {
    color: #1877F2;  /* Facebook blue */
}

.contact-links a[data-platform="instagram"] i {
    color: #E4405F;  /* Instagram pink */
}

.contact-links a[data-platform="whatsapp"] i {
    color: #25D366;  /* WhatsApp green */
}

.contact-links a[data-platform="google"] i {
    color: #DB4437;  /* Google red */
}

/* Hover effects */
.contact-links a[data-platform]:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-links a[data-platform="facebook"]:hover {
    background: #1877F2;
}

.contact-links a[data-platform="instagram"]:hover {
    background: #E4405F;
}

.contact-links a[data-platform="whatsapp"]:hover {
    background: #25D366;
}

.contact-links a[data-platform="google"]:hover {
    background: #DB4437;
}

.contact-links a[data-platform]:hover i {
    color: white;
    transform: scale(1.1);
}

/* Phone number styling */
.contact-links a:not([data-platform]) {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-links a:not([data-platform]):hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .contact-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .contact-links a[data-platform] {
        width: 36px;
        height: 36px;
    }
    
    .contact-links a[data-platform] i {
        font-size: 1.2rem;
    }
    
    .contact-links a:not([data-platform]) {
        padding: 0.5rem 1rem;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    display: flex;
    align-items: right;
    justify-content: right;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .top-bar {
        padding: 0.75rem;
    }
    
    .nav-links {
        gap: 0.75rem;
    }
    
    .contact-links {
        gap: 0.75rem;
    }
}

@media screen and (max-width: 768px) {
    .top-bar {
        padding: 0.5rem;
    }
    
    .nav-container {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .contact-links {
        order: 2;
        justify-content: center;
        width: 100%;
    }
    
    .logo-container {
        order: 1;
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .logo {
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    height: 100px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    position: relative;
    margin-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.hero-logo {
    flex: 0 0 150px;
    text-align: left;
}

.hero-logo-img {
    max-width: 120px;
    height: auto;
    margin-top: 55px;
}

.hero-text {
    flex: 0 0 auto;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-family: "Playfair Display", serif;
}

.hero-text .tagline {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    font-style: italic;
}

.hero-book {
    flex: 1;
    text-align: right;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0.75rem;
    }
    
    .hero-logo, .hero-text, .hero-book {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .hero-logo-img {
        max-width: 150px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text .tagline {
        font-size: 1.5rem;
    }
}

/* Hero Menu Styles */
.hero-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
    width: 100%;
}

.hero-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-menu a:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Service Cards - Consolidated Styles */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

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

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    word-break: break-word;
    text-align: center;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    flex-grow: 1;
    overflow-wrap: break-word;
    text-align: center;
}

.service-card .service-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    gap: 1rem;
}

.service-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6b6b;
}

/* Service Section Styles */
.service-section {
    margin-bottom: 3rem;
}

.service-section h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

/* Responsive Service Cards */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .service-card {
        padding: 0.75rem;
    }
    
    .service-section h2 {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card .price {
        font-size: 1.1rem;
    }
}

/* Service Detail Section */
.service-detail {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-detail h1 {
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 2;
    padding-bottom: 1rem;
}

.service-detail h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

/* Service Grid for Service Pages */
.service-sections-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.service-sections-vertical .service-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-sections-vertical .service-section h2 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.service-sections-vertical .service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

/* Service Info Section */
.service-info {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.service-info .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-description {
    margin-bottom: 3rem;
    text-align: center;
}

.service-description h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 1000px;
    margin: 0 auto;
}

.service-benefits {
    margin-bottom: 3rem;
}

.service-benefits h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-benefits li {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
}

.service-faq {
    margin-bottom: 3rem;
}

.service-faq h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    padding: 4rem 0;
    background-color: var(--white);
    text-align: center;
}

.booking-section h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.booking-section p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.booking-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.booking-options .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.booking-options .btn:hover {
    background-color: var(--primary-dark);
}

/* Footer Styles */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
    height: auto;
    margin-top: 55px;
}

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

.footer-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-card p {
    margin: 0.5rem 0;
    color: var(--white);
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-card a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-card a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    margin: 0;
    color: var(--white);
    opacity: 0.8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-card {
        width: 100%;
        max-width: 300px;
        padding: 0.75rem;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    nav .social-links {
        display: none;
    }
    
    .burger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .service-cards,
    .service-grid,
    .service-sections-vertical .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-detail {
        padding: 3rem 1rem;
    }
    
    .service-detail h1 {
        font-size: 2rem;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hours, .location {
        width: 100%;
        padding: 1.5rem;
    }
}

/* Services Section on Home Page */
.services {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.service-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: height 0.3s ease;
}

.service-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-category:hover::before {
    height: 6px;
}

.service-category h3 {
    color: var(--text-color);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.service-category h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-category:hover h3::after {
    width: 80px;
}

.service-category p {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    flex-grow: 1;
}

.service-category .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: auto;
}

.service-category .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.3s ease;
    z-index: -1;
}

.service-category .btn:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(150, 123, 182, 0.3);
}

.service-category .btn:hover::before {
    width: 100%;
}

@media (max-width: 768px) {
    .services {
        padding: 3rem 1rem;
    }
    
    .services h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-category {
        padding: 2rem;
    }
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
    margin-top: 120px; /* Add margin to account for fixed header */
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.about p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .about {
        margin-top: 160px; /* Increase margin for mobile to account for taller header */
        padding: 3rem 1rem;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.contact p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about, .contact {
        padding: 3rem 1rem;
    }
    
    .about h2, .contact h2 {
        font-size: 2rem;
    }
    
    .about-features, .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature, .contact-item {
        padding: 1.5rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Will-change hints for animations */
.service-card,
.service-category,
.feature,
.contact-item {
    will-change: transform, box-shadow;
}

/* Optimize font loading */
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTXtHA_w.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Optimize transitions */
.service-card,
.service-category,
.feature,
.contact-item,
.nav-links a,
.social-links a,
.logo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Optimize hover effects */
@media (hover: hover) {
    .service-card:hover,
    .service-category:hover,
    .feature:hover,
    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .nav-links a:hover,
    .social-links a:hover,
    .logo:hover {
        opacity: 0.8;
    }
}

/* Optimize mobile performance */
@media (max-width: 768px) {
    .service-card,
    .service-category,
    .feature,
    .contact-item {
        transform: none !important;
        box-shadow: none !important;
    }
    
    .nav-links a::after,
    .service-card::before,
    .service-category::before {
        display: none;
    }
}

/* Services Dropdown Menu */
.services-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.services-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: transparent;
}

.dropdown-menu a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Mobile Responsive Styles for Dropdown */
@media (max-width: 768px) {
    .services-dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        background: transparent;
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
        color: var(--white);
        background: transparent;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Google Reviews Section */
.reviews-section {
    background: var(--light-bg);
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.reviews-container h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.2rem;
}

.reviews-slider {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    height: 300px;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    animation: scrollReviews 30s linear infinite;
    padding: 1rem 0;
    width: max-content;
    height: 100%;
}

.reviews-track:hover {
    animation-play-state: paused;
}

.review-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    min-width: 350px;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.reviewer-details h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.rating {
    color: #ffc107;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.review-date {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
        font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 4 - 2rem * 4));
    }
}

/* Responsive Styles for Reviews */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1rem;
        min-height: 350px;
    }

    .reviews-container {
        padding: 0 1rem;
    }

    .reviews-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .reviews-slider {
        height: 250px;
        padding: 1rem 0;
    }

    .review-card {
        min-width: 280px;
        max-width: 320px;
        padding: 1.5rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    .reviewer-details h3 {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .review-date {
        font-size: 0.8rem;
    }

    @keyframes scrollReviews {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 4 - 2rem * 4));
        }
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 2rem 0.5rem;
        min-height: 300px;
    }

    .reviews-container h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .reviews-slider {
        height: 220px;
    }

    .review-card {
        min-width: 250px;
        max-width: 280px;
        padding: 1.25rem;
    }

    .reviewer-avatar {
        width: 35px;
        height: 35px;
    }

    .reviewer-details h3 {
        font-size: 0.9rem;
    }

    .review-text {
        font-size: 0.85rem;
    }

    @keyframes scrollReviews {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 4 - 2rem * 4));
        }
    }
}

/* Service Page Styles */
.service-page {
    margin-top: 180px;
    padding: 0 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-header h1 {
    margin: 0;
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    width: 100%;
}

.service-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-content {
    padding: 0 1rem;
}

/* Responsive Service Page */
@media (max-width: 768px) {
    .service-page {
        margin-top: 180px;
        padding: 0 1rem;
    }
    
    .service-header {
        padding: 1rem 0;
        margin-top: 1rem;
    }
    
    .service-header h1 {
        font-size: 2rem;
    }
    
    .service-description {
        font-size: 1.1rem;
    }
}

/* Map Section Styles */
.map-section {
    padding: 3rem 2rem;
    background-color: var(--light-bg);
    position: relative;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.map-snapshot {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.map-snapshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.map-snapshot a {
    display: block;
    cursor: pointer;
    position: relative;
}

.map-snapshot a::after {
    content: 'Click to open in Google Maps';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-snapshot:hover a::after {
    opacity: 1;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
    max-height: 400px;
}

.map-snapshot:hover .map-image {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .map-section {
        padding: 2rem 1rem;
    }
    
    .map-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .map-snapshot {
        border-radius: 8px;
    }
    
    .map-image {
        max-height: 300px;
    }
}

/* Responsive adjustments for logo */
@media screen and (max-width: 768px) {
    .logo-icon {
        width: 70px;
        height: 70px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
}

/* Mobile Navigation */
.burger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media screen and (max-width: 768px) {
    .top-bar {
        padding: 0.5rem;
        position: relative;
        min-height: 60px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        order: 1;
        flex: 0 0 auto;
    }

    nav {
        order: 2;
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        width: auto;
        height: auto;
    }

    .burger {
        display: block;
        position: relative;
        z-index: 1001;
        cursor: pointer;
        padding: 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        min-width: 45px;
        min-height: 35px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        transition: right 0.5s ease;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        margin: 0;
    }

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

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 65%;
        max-width: 250px;
        padding: 2rem;
        margin: 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .nav-container.nav-active .nav-links {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        margin: 1.0rem 0;
        opacity: 1;
        width: 100%;
        text-align: center;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.7rem 1.2rem;
        color: white;
        display: block;
        width: 100%;
        text-align: center;
        text-decoration: none;
    }

    /* Burger Animation */
    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Services Dropdown in Mobile */
    .services-dropdown .dropdown-menu {
        position: static;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 0.3rem 0;
        margin: 0.3rem auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        width: 95%;
        max-width: 320px;
    }

    .services-dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        z-index: 1002 !important;
    }

    .services-dropdown .dropdown-menu li {
        margin: 0.2rem 0;
        width: 100%;
    }

    .services-dropdown .dropdown-menu a {
        color: var(--text-color);
        padding: 0.6rem 1.0rem;
        background: rgba(0, 0, 0, 0.02);
        margin: 0.15rem 0.1rem;
        border-radius: 4px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        display: block;
        text-decoration: none;
        font-size: 1.0rem;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .services-dropdown .dropdown-menu a:hover {
        background: var(--primary-color);
        color: var(--white);
    }



    .contact-links {
        order: 3;
        flex: 1 1 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
