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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

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

a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004499;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    text-decoration: none;
}

.btn-primary {
    background-color: #ff6b00;
    color: white;
}

.btn-primary:hover {
    background-color: #e55d00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background-color: #0066cc;
    color: white;
}

.btn-secondary:hover {
    background-color: #0052a3;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* ========================================
   Header
   ======================================== */
.site-header {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: #ff6b00;
    font-size: 1.5rem;
    font-weight: 600;
}

.logo h2 {
    color: #ff6b00;
    font-size: 1.5rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    color: white;
    font-weight: 500;
    padding: 5px 0;
}

.main-nav a:hover {
    color: #ff6b00;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.phone-icon {
    font-size: 1.2em;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 60px 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.feature-badge strong {
    color: #ff6b00;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card > p {
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #444;
}

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

.service-card .btn {
    width: 100%;
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose-us {
    padding: 80px 20px;
    background-color: white;
}

.why-choose-image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.feature-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

.benefit-card {
    padding: 30px;
    border-left: 4px solid #ff6b00;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.benefit-card h3 {
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* ========================================
   Service Area Section
   ======================================== */
.service-area {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    text-align: center;
}

.service-area h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-area-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.areas-list {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.areas-list ul {
    list-style: none;
    text-align: left;
}

.areas-list li {
    padding: 8px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
}

.areas-list li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

.service-area-note {
    font-style: italic;
    opacity: 0.8;
    margin-top: 20px;
}

/* ========================================
   Importance Section
   ======================================== */
.importance {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.importance h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.importance-content > p {
    font-size: 1.2rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.importance-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.point {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.point h3 {
    color: #0066cc;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.point p {
    color: #666;
    line-height: 1.7;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: 80px 20px;
    background-color: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.faq-item h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.faq-item a {
    color: #ff6b00;
    font-weight: 600;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-details {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-item a {
    color: #0066cc;
    font-size: 1.1rem;
}

.emergency-notice {
    background: #ff6b00;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
}

.emergency-phone {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    color: #ff6b00;
    margin-bottom: 20px;
}

.footer-column p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-tagline {
    font-style: italic;
    color: #ff6b00;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ff6b00;
}

.footer-contact li {
    margin-bottom: 15px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    color: #ff6b00;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.service-areas-footer {
    font-size: 0.9rem;
    font-style: italic;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo-text {
        display: none;
    }

    .logo-img {
        height: 40px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .services,
    .why-choose-us,
    .importance,
    .faq,
    .contact {
        padding: 60px 20px;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .areas-list {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-card,
    .benefit-card {
        padding: 20px;
    }

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

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .site-header,
    .hero-cta,
    .contact-form,
    .btn {
        display: none;
    }
}