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

:root {
    --navy: #001F3F;
    --mid-blue: #0077BE;
    --light-blue: #E3F2FD;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Top Header Bar */
.top-header {
    background: var(--navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.top-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-header-text {
    font-weight: 500;
}

.top-header-phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.top-header-phone:hover {
    color: var(--light-blue);
}

.top-header-right {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-top {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 6px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-top:hover {
    background: var(--white);
    color: var(--navy);
}

/* Sticky Navigation */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--mid-blue);
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    list-style: none;
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    border-radius: 4px;
    margin-top: 10px;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-gray);
}

.dropdown-menu a:hover {
    background: var(--light-blue);
    color: var(--mid-blue);
}

.btn-call-now {
    background: var(--mid-blue);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-call-now:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,119,190,0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--mid-blue) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,31,63,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 0;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-blue);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-phone-display {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-phone-label {
    font-size: 18px;
    font-weight: 600;
}

.hero-phone-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.hero-phone-number:hover {
    color: var(--light-blue);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--white);
    color: var(--navy);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
}

/* Trust Builders */
.trust-builders {
    background: var(--light-blue);
    padding: 50px 0;
}

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

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.trust-item h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--dark-gray);
    font-size: 15px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-header p {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,119,190,0.15);
    border-color: var(--mid-blue);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--navy);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--mid-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--navy);
}

/* Request Service Section */
.request-service {
    padding: 80px 0;
    background: var(--light-blue);
}

.request-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.request-service-text h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 800;
}

.request-service-text p {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.request-service-cta {
    margin-top: 30px;
}

.btn-primary-large {
    background: var(--mid-blue);
    color: var(--white);
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,119,190,0.3);
}

.btn-primary-large:hover {
    background: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,119,190,0.4);
}

.phone-icon {
    font-size: 24px;
}

.cta-note {
    margin-top: 10px;
    color: var(--dark-gray);
    font-size: 14px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mid-blue);
    box-shadow: 0 0 0 3px rgba(0,119,190,0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--mid-blue);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,119,190,0.3);
}

.form-note {
    margin-top: 15px;
    font-size: 13px;
    color: var(--dark-gray);
    text-align: center;
}

/* Schedule Appointment Section */
.schedule-appointment {
    padding: 80px 0;
    background: var(--white);
}

.calendly-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 20px;
    overflow: hidden;
}

.calendly-inline-widget {
    border-radius: 8px;
    overflow: hidden;
}

.schedule-cta {
    text-align: center;
    margin-top: 30px;
}

.schedule-cta p {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--light-blue);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--navy);
    font-size: 16px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    background: var(--mid-blue);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--navy);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--mid-blue);
    transform: scale(1.2);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light-blue);
}

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

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-blue);
}

.faq-icon {
    font-size: 24px;
    color: var(--mid-blue);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 800;
}

.about-lead {
    font-size: 20px;
    color: var(--mid-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    padding: 15px;
    background: var(--light-blue);
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    color: var(--dark-gray);
}

.about-feature strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 5px;
}

.about-image {
    position: relative;
}

.about-team-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: block;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-blue);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-link {
    color: var(--mid-blue);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--navy);
}

.contact-item p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.contact-map {
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: none;
}

.map-note {
    margin-top: 15px;
    text-align: center;
    color: var(--dark-gray);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-phone {
    margin-top: 15px;
}

.footer-phone-link {
    color: var(--white);
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    transition: color 0.3s;
}

.footer-phone-link:hover {
    color: var(--light-blue);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--light-blue);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .top-header-right {
        display: none;
    }
    
    .request-service-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-tagline {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 999;
        align-items: flex-start;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        padding-left: 20px;
    }
    
    .btn-call-now {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-phone-number {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .calendly-wrapper {
        padding: 10px;
        margin: 0 auto 30px;
    }
    
    .calendly-inline-widget {
        min-width: 100% !important;
        height: 600px !important;
    }
}

@media (max-width: 480px) {
    .top-header {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .top-header-phone {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--mid-blue);
    outline-offset: 2px;
}
