/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #f8f9fa;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.contact-info span {
    color: #2563eb;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2563eb;
    color: white;
}

.social-links a:hover {
    transform: scale(1.1);
    background: #1d4ed8;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: #2563eb;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.cta-button {
    background: #2563eb;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1d4ed8;
}

.cta-button::after {
    display: none;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.nav-toggle-label span {
    width: 25px;
    height: 3px;
    background: #374151;
    border-radius: 3px;
    transition: 0.3s;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: #374151;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #2563eb;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Services Section */
.services-overview {
    padding: 6rem 0;
    background: #f8f9fa;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.learn-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #1d4ed8;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background: #2563eb;
    color: white;
    transform: scale(1.05);
    border-color: #1d4ed8;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.pricing-card.featured h3 {
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .price {
    color: white;
}

.duration {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.pricing-card.featured .duration {
    color: rgba(255,255,255,0.8);
}

.pricing-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.pricing-card.featured p {
    color: rgba(255,255,255,0.9);
}

.book-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card.featured .book-btn {
    background: white;
    color: #2563eb;
}

.book-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.pricing-card.featured .book-btn:hover {
    background: #f1f5f9;
}

/* Policy Section */
.policy {
    padding: 3rem 0;
    background: #fef3c7;
}

.policy-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.policy-card h3 {
    color: #d97706;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-card p {
    color: #374151;
    line-height: 1.7;
}

/* Hours and Location */
.hours-location {
    padding: 6rem 0;
    background: #f8f9fa;
}

.hours-location h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.hours-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hours, .location {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.hours h3, .location h3 {
    color: #2563eb;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.hours-list {
    margin-bottom: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #374151;
}

.time {
    color: #6b7280;
}

.hours-note {
    color: #6b7280;
    font-style: italic;
    font-size: 0.9rem;
}

.map-container {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.address {
    color: #374151;
    line-height: 1.8;
}

.address strong {
    color: #2563eb;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.7;
}

.testimonial cite {
    color: #6b7280;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-item details {
    cursor: pointer;
}

.faq-item summary {
    padding: 1.5rem;
    background: #f8f9fa;
    font-weight: 600;
    color: #2563eb;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-item summary:hover {
    background: #e5e7eb;
}

.faq-item details[open] summary {
    background: #2563eb;
    color: white;
}

.faq-item details p {
    padding: 1.5rem;
    color: #374151;
    line-height: 1.7;
    background: white;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.footer-contact h4,
.footer-links h4 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-contact p,
.footer-info p {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .nav-toggle-label {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 8rem 2rem 2rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: none;
    }
    
    .nav-menu .cta-button {
        margin: 1rem 0;
        text-align: center;
        border-radius: 8px;
        padding: 1rem;
        background: #2563eb;
        color: white;
    }
    
    .nav-menu .cta-button:hover {
        background: #1d4ed8;
    }
    
    .nav-toggle:checked ~ .nav-menu {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f8f9fa;
        opacity: 1;
        visibility: visible;
        max-height: none;
        overflow: visible;
        transform: none;
        margin-top: 0.5rem;
        border-radius: 8px;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid #e5e7eb;
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        color: #374151;
    }
    
    .dropdown-menu a:hover {
        background: #e5e7eb;
        color: #2563eb;
    }
    
    .nav-menu .dropdown > a::after {
        display: none;
    }
    
    /* Mobile dropdown toggle */
    .nav-menu .dropdown {
        width: 100%;
    }
    
    .nav-menu .dropdown > a {
        position: relative;
        cursor: pointer;
    }
    
    .nav-menu .dropdown > a::after {
        content: ' ▼';
        position: absolute;
        right: 0;
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .nav-menu .dropdown:hover > a::after {
        transform: rotate(180deg);
    }
    
    .nav-menu .dropdown:hover .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 300px;
        }
    }
    
    .nav-menu .dropdown > a {
        position: relative;
    }
    
    .nav-menu .dropdown > a::after {
        content: ' ▼';
        font-size: 0.8rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown:hover > a::after {
        transform: rotate(180deg);
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .hours-location-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .services-overview,
    .pricing,
    .hours-location,
    .testimonials,
    .faq {
        padding: 4rem 0;
    }
    
    .service-card,
    .pricing-card,
    .hours,
    .location {
        padding: 1.5rem;
    }
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .pricing-card,
    .testimonial {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Performance optimizations */
.hero,
.services-overview,
.pricing,
.testimonials {
    will-change: transform;
}

img, iframe {
    max-width: 100%;
    height: auto;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
summary:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .nav-toggle-label,
    .social-links {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .cta-button-large {
        background: #2563eb;
        color: white;
    }
}