/* --- Use CSS Variables for Theming --- */
:root {
    --primary-color: #0f172a;
    /* Deep Royal Blue / Slate - Trust */
    --accent-color: #f97316;
    /* Burnt Orange - Action/High Contrast */
    --text-color: #334155;
    /* Slate Gray - Readable */
    --light-bg: #f8fafc;
    /* Very light cool gray */
    --white: #ffffff;
    --dark-overlay: rgba(15, 23, 42, 0.75);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --section-padding: 4rem 1rem;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: #ea580c;
    /* Darker orange */
    border-color: #ea580c;
    transform: translateY(-2px);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: #e2e8f0;
    border-color: #e2e8f0;
}

/* --- Header --- */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    /* Adjust height as needed */
    width: auto;
    display: block;
}

.header-logo {
    max-height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    /* Use a nice neutral construction/interior placeholder until we generate/have real images */
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    /* High impact */
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 80px;
    /* Offset fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 700px;
    color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--accent-color);
    /* Highlight key words */
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.trust-badges-hero {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-item i {
    color: var(--accent-color);
}

/* --- Trust Bar --- */
.trust-bar {
    background-color: var(--primary-color);
    padding: 2rem 0;
    color: var(--white);
    margin-top: -5px;
    /* Ensure no gap from hero if any */
}

.trust-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

.trust-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.trust-item strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1.2;
}

.trust-item span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- Services Section --- */
.services-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.section-header {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: #64748b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-top-color: var(--accent-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 0;
}

/* --- Why Choose Us --- */
.why-us-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.why-list {
    margin: 2rem 0;
}

.why-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-list i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.why-list strong {
    font-size: 1.1rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

/* --- Process Section --- */
.process-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 220px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* --- Reviews Section --- */
.reviews-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.reviewer strong {
    display: block;
    color: var(--primary-color);
}

.reviewer span {
    font-size: 0.875rem;
    color: #64748b;
}

/* --- Contact Section --- */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info .eyebrow {
    color: var(--accent-color);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info p {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.contact-methods .method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-methods i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-color);
}

.contact-methods a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-methods a:hover {
    text-decoration: underline;
}

.contact-form-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    color: var(--text-color);
}

.contact-form-box h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

/* --- Footer --- */
.site-footer {
    background-color: #020617;
    padding: 3rem 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 50px;
    /* Adjust height as needed */
    width: auto;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    gap: 2rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .header-cta {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e2e8f0;
        z-index: 999;
    }

    .main-nav.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }

    .main-nav a {
        display: block;
        font-size: 1.25rem;
        padding: 0.5rem;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .trust-badges-hero {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .trust-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* New Sections Mobile */
    .why-us-grid,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 3rem;
    }

    .why-us-image {
        order: -1;
    }

    .process-steps {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-links ul {
        flex-direction: column;
        gap: 1rem;
        flex-wrap: wrap;
    }
}