:root {
    --primary: #0a2351;
    /* Trustworthy Navy */
    --accent: #ff6b00;
    /* High Conversion Orange */
    --accent-hover: #e65f00;
    --text-dark: #1a1a1a;
    --text-light: #444;
    --white: #ffffff;
    --bg-light: #f8faff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

strong {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
        /* Space for sticky button */
    }
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 600px) {
    .top-bar-flex {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* Minimal Header */
.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 70px;
    /* Slightly larger for better visibility */
}

.header-cta-group {
    display: flex;
    align-items: center;
}

.btn-call-header {
    background-color: var(--accent);
    color: var(--white);
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2);
}

.btn-call-header svg {
    margin-right: 0px;
    /* Reset gap for mobile */
}

@media (max-width: 600px) {
    .btn-call-header span {
        display: none;
        /* Icon only on very small screens to save space */
    }

    .btn-call-header {
        padding: 12px;
        border-radius: 50%;
        /* Circle on mobile */
    }

    .main-header {
        padding: 10px 0;
    }
}

/* 1. Hero Section */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.brand-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-headline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image-wrapper {
        order: 2;
    }

    .sub-headline {
        margin: 0 auto 2rem;
    }

    .hero-ctas {
        justify-content: center;
    }

    .cta-wrapper {
        align-items: center;
    }
}

/* 2. Trust Bar */
.trust-bar {
    background-color: var(--primary);
    padding: 24px 0;
    color: var(--white);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-icon {
    background: var(--accent);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .trust-grid {
        justify-content: center;
    }

    .d-none-mobile {
        display: none;
    }
}

/* 3. Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-micro-copy {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

@media (max-width: 450px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* 4. Locations */
.locations {
    padding: 80px 0;
}

.location-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.location-box {
    padding: 30px;
    background: #fff;
    border-left: 5px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.location-box h3 {
    font-size: 1.25rem;
}

/* 5. Process */
.process {
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--white);
}

.process .section-title {
    color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* 6. Lead Section */
.lead-section {
    padding: 100px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-light);
    padding: 60px;
    border-radius: var(--radius);
}

.form-info h2 {
    font-size: 2.2rem;
}

.form-trust-icons {
    display: flex;
    gap: 15px;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.form-trust-icons span {
    background: #e1ecff;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.form-contact-cta {
    margin-top: 2rem;
}

.cta-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

.lead-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-footer-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
}

@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 40px;
    }
}

/* 7. Why Us */
.why-us {
    padding: 100px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.why-item p {
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1rem;
}

.review-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}


/* 8. Footer */
.main-footer {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 12px;
}

.footer-call-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-call-link:hover {
    color: var(--primary);
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 100px;
        /* Above the sticky mobile button */
        width: 50px;
        height: 50px;
    }
}

/* Utility */
.text-center {
    text-align: center;
}