:root {
    --primary-color: #0b1f3b; /* Deep Navy Blue */
    --accent-color: #ff9800; /* Vibrant Orange/Gold */
    --accent-hover: #e68a00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f4f7f6;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
}

header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.call-btn-header {
    background-color: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-btn-header:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(11, 31, 59, 0.7), rgba(11, 31, 59, 0.7)), url('https://images.unsplash.com/photo-1541427468627-a89a96e5ca1d?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 800px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 152, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
    }
}

.features {
    padding: 4rem 5%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: #fff;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--background-light);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* --- New Trust Sections --- */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    width: 100%;
}

.how-it-works {
    padding: 4rem 5%;
    background-color: var(--background-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.4);
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.trust-stats {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.testimonials {
    padding: 4rem 5%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
}

.review-card {
    flex: 1;
    min-width: 300px;
    background: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.reviewer {
    font-weight: bold;
    color: var(--primary-color);
}

.content-section {
    padding: 4rem 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h1, .content-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-section p {
    margin-bottom: 1rem;
}

footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 5%;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 10px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.floating-call-btn {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .floating-call-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--accent-color);
        color: var(--text-light);
        padding: 1rem;
        font-size: 1.3rem;
        font-weight: 800;
        text-decoration: none;
        z-index: 9999;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    }

    .floating-call-btn:active {
        background-color: var(--accent-hover);
    }
}
