/* Hero Section Styles Full Width Image */
.hero {
    position: relative;
    width: 100%;
    height: 50vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0B2653 0%, #0077B6 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0077B6;
}

.hero-overlay p {
    font-size: 1.2rem;
}

.hero-overlay a {
    color: #0077B6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-overlay a:hover {
    color: #fff;
}

@media (max-width: 1000px) {
    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 0.9rem;
    }
}


body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    color: #1d3557;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero {
    position: relative;
}

.hero img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    padding: 2rem;
    animation: fadeIn 2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    margin-bottom: 2rem;
}

.intro p,
.coverage p,
.cta-section p,
.faq-item p {
    max-width: 800px;
    margin: 1rem auto;
}

.why-us ul,
.coverage ul,
.internal-links ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    list-style: none;
    padding-left: 0;
}

.why-us li::before {
    content: "✔";
    color: green;
    font-weight: bold;
    margin-right: 0.5rem;
}

.coverage li::before {
    content: "📍";
    margin-right: 0.5rem;
}

.process ol {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    counter-reset: step;
}

.process li {
    padding-left: 2rem;
    position: relative;
}

.process li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.25rem;
    background-color: #1d3557;
    color: white;
    border-radius: 50%;
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cta-section {
    background: #1d3557;
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
    margin: 0.5rem;
}

.btn-contact {
    background: #fca311;
    color: #1d3557;
}

.btn-contact:hover {
    background: #ffb933;
}

.btn-call {
    background: #e63946;
    color: white;
}

.btn-call:hover {
    background: #d62839;
}

.faq-item {
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-4px);
}

.internal-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.internal-links a {
    color: #1d3557;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.internal-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #1d3557;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.internal-links a:hover::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {    
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .btn {
        display: block;
        width: 90%;
        margin: 0.75rem auto;
    }
}

