/* =====================
   RESET & GLOBAL
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* =====================
   HEADER
===================== */
header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo img {
    height: 42px;
    width: auto;
}

nav a {
    margin-left: 22px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #1f3c88;
    transition: width 0.25s ease;
}

nav a:hover::after {
    width: 100%;
}

/* =====================
   HERO
===================== */
.hero {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(135deg, #eaf2ff, #ffffff);
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 12px;
    color: #1f3c88;
}

.hero p {
    font-size: 18px;
    color: #4b5563;
}

.location {
    margin: 18px 0;
    font-weight: 500;
    color: #374151;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 13px 34px;
    background: #1f3c88;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: #162c63;
    transform: translateY(-2px);
}

/* =====================
   SECTIONS
===================== */
section {
    padding: 75px 0;
}

section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
    color: #1f3c88;
}

section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #1f3c88;
    display: block;
    margin: 14px auto 0;
    border-radius: 3px;
}

/* =====================
   ABOUT
===================== */
.about {
    background: #f5f7fa;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto 15px;
    color: #374151;
}

/* =====================
   SERVICES
===================== */
.services {
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 32px 25px;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.card h3 {
    color: #1f3c88;
    margin-bottom: 8px;
}

.card span {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    background: #eaf2ff;
    color: #1f3c88;
    font-size: 13px;
    border-radius: 20px;
}

.services-note {
    color: #6b7280;
    font-size: 15px;
}

/* =====================
   COVERAGE
===================== */
.coverage {
    background: #f5f7fa;
    text-align: center;
}

.coverage ul {
    list-style: none;
}

.coverage li {
    margin: 10px 0;
    font-weight: 500;
    color: #374151;
}

/* =====================
   CONTACT
===================== */
.contact {
    text-align: center;
    background: #f0f6ff;
}

.contact-info p {
    margin-bottom: 8px;
    font-weight: 500;
}

form {
    margin-top: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

form input,
form textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #1f3c88;
}

form button {
    width: 100%;
    padding: 13px;
    background: #1f3c88;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

form button:hover {
    background: #162c63;
}

/* =====================
   FOOTER
===================== */
footer {
    background: #eaf2ff;
    text-align: center;
    padding: 26px;
    font-size: 14px;
    color: #374151;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    nav a {
        margin-left: 14px;
    }

    .header-content {
        flex-direction: column;
        height: auto;
        padding: 12px 0;
    }

    nav {
        margin-top: 10px;
    }
}
