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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #5D4037;
    background-color: #FDF6E3;
}

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

/* Header - Non-critical styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

/* Show burger menu on mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex !important;
    }
}

/* Page Header Styles */
.page-header {
    padding: 4rem 0;
    background: linear-gradient(120deg, #FF8A65 0%, #FFB74D 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

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

/* Service Features List */
.service-features {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5D4037;
    text-align: left;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF8A65;
    font-weight: bold;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(255,138,101,0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF8A65 0%, #FFB74D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FF8A65;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #5D4037;
    margin-bottom: 0.25rem;
}

.contact-details p:last-child {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(255,138,101,0.08);
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

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

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

/* Coverage Info Styles */
.coverage-info {
    max-width: 800px;
    margin: 0 auto;
}

.coverage-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF8A65;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.coverage-text h3:first-child {
    margin-top: 0;
}

.coverage-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5D4037;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive for new elements */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .coverage-text h3 {
        font-size: 1.25rem;
    }
    
    .coverage-text p {
        font-size: 1rem;
    }
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #FF8A65;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #FDF6E3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5D4037;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #8D6E63;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 2px 16px rgba(255,138,101,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 32px rgba(255,138,101,0.13);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF8A65 0%, #FFB74D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF8A65;
    margin-bottom: 1rem;
}

.service-description {
    color: #5D4037;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #FFB74D;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 2px 8px rgba(255,138,101,0.08);
}

.feature-icon i {
    font-size: 1.5rem;
    color: #FF8A65;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #5D4037;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #5D4037;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(120deg, #FF8A65 0%, #FFB74D 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background-color: #ffffff;
    color: #FF8A65;
}

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

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

.btn-secondary:hover {
    background-color: white;
    color: #FF8A65;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: #FF8A65;
    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-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-brand i {
    color: #ffffff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: #ffffff;
    width: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8A65;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #FFB74D;
    color: #ffffff;
    transform: translateY(-2px);
}

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

/* Mobile Responsive - Non-critical styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        text-align: center;
        z-index: 999;
        border-top: 1px solid #f0f0f0;
        min-height: 300px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        z-index: 999;
        background: #ffffff;
    }

    .nav-link {
        text-align: center;
        width: 100%;
        display: block;
        padding: 1.25rem 1rem;
        margin: 0.5rem 0;
        border-radius: 8px;
        transition: all 0.2s ease;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .nav-link:hover,
.nav-link.active {
    background-color: #FF8A65;
    color: white;
    transform: translateY(-1px);
}

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
} 