/* GLOBAL */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Poppins", sans-serif;
    background: #f6f8fc;
    color: #222;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-tag {
    color: #0A6BDB;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding-top: 20px;
}

.section-title {
    font-size: 2.6rem;
    margin: 10px 0 30px;
    font-family: "Playfair Display", serif;
}

/* =====================
   NAV
   ===================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-family: "Playfair Display", serif;
    color: #0f172a;
}

.nav-logo span {
    color: #0A6BDB;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #0A6BDB;
    transition: 0.3s ease;
}

.nav-links a:hover { color: #0A6BDB; }
.nav-links a:hover::after { width: 100%; }

.nav-btn {
    background: linear-gradient(135deg, #0A6BDB, #084a9f);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(10,107,219,0.25);
    border: 2px solid transparent;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(10,107,219,0.35);
    background: linear-gradient(135deg, #084a9f, #0A6BDB);
}

/* MOBILE MENU ICON */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2;
    color: #0f172a;
    user-select: none;
}

/* =====================
   HERO
   ===================== */
.hero {
    padding: 5rem 0;
    background-image: url("hero-bg.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, white 45%, rgba(255,255,255,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    font-family: "Playfair Display", serif;
    margin-bottom: 10px;
}

.hero-text p {
    margin: 18px 0;
    color: #444;
    max-width: 500px;
}

.hero-text h1 span { color: #0A6BDB; }

.span-txt {
    color: #0A6BDB;
    font-size: small;
}

.hero-btn {
    background: linear-gradient(135deg, #0A6BDB, #084a9f);
    padding: 14px 32px;
    display: inline-block;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 20px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(10,107,219,0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(10,107,219,0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10,107,219,0.35);
}

.hero-btn::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.hero-btn:hover::after { left: 120%; }

/* =====================
   SERVICES
   ===================== */
.services { padding: 5rem 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
    object-fit: cover;
    height: 200px;
}

.service-card h3 {
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-link {
    margin-top: auto;
    font-weight: 600;
    color: #0A6BDB;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    transition: 0.3s ease;
    padding-top: 10px;
}

.service-link:hover {
    color: #084a9f;
    transform: translateX(5px);
}

/* =====================
   ABOUT
   ===================== */
.about-simple {
    padding: 5rem 0;
    background: #ffffff;
}

.about-simple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-simple-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

.about-simple-text p {
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-simple-text .section-title { margin-bottom: 20px; }
.about-simple-text .hero-btn { margin-top: 15px; display: inline-block; }

/* =====================
   REVIEWS
   ===================== */
.reviews {
    background: #fff;
    padding: 5rem 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #eaf3ff;
    border-left: 4px solid #0A6BDB;
    padding: 2rem;
    border-radius: 12px;
}

/* =====================
   SERVICE AREAS
   ===================== */
.areas {
    padding: 5rem 0;
    background: #ffffff;
    text-align: center;
}

.areas-marquee {
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.areas-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.area-pill {
    background: #f1f5f9;
    color: #0A6BDB;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid transparent;
}

.area-pill:hover {
    background: #0A6BDB;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10,107,219,0.2);
}

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.areas-marquee:hover .areas-track {
    animation-play-state: paused;
}

/* =====================
   CONTACT CTA
   ===================== */
.contact {
    background: #0A6BDB;
    color: white;
    padding: 5rem 0;
}

.contact-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-text h2 {
    font-size: 2.2rem;
    font-family: "Playfair Display", serif;
}

.contact-text p {
    margin-top: 10px;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn.primary {
    background: white;
    color: #0A6BDB;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.contact-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.contact-btn.primary::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.contact-btn.primary:hover::after { left: 120%; }

.contact-btn.secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-btn.secondary:hover {
    background: white;
    color: #0A6BDB;
    transform: translateY(-3px);
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: #0b1b3a;
    color: #cbd5e1;
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-wrap img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo {
    font-size: 1.6rem;
    font-family: "Playfair Display", serif;
    color: white;
}

.footer-logo span { color: #0A6BDB; }

.footer-col p { color: #94a3b8; line-height: 1.7; }

.footer-col h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #64748b;
}

/* =====================
   RESPONSIVE — TABLET (≤900px)
   ===================== */
@media (max-width: 900px) {

    /* NAV */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        padding: 1.5rem 5%;
        gap: 0;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-top: 1px solid #e2e8f0;
    }

    .nav-links.open { display: flex; }

    .nav-links li { width: 100%; }

    .nav-links a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1rem;
    }

    .nav-links a::after { display: none; }

    .nav-links li:last-child a {
        border-bottom: none;
        margin-top: 10px;
        text-align: center;
    }

    .menu-toggle { display: block; }

    /* HERO */
    .hero {
        min-height: 400px;
        background-position: center;
    }

    .hero::before {
        background: linear-gradient(to bottom, rgba(255,255,255,0.92) 60%, rgba(255,255,255,0.7));
    }

    .hero-text h1 { font-size: 2.4rem; }

    /* SERVICES */
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    /* ABOUT */
    .about-simple-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-simple-image img {
        max-width: 80%;
        margin: auto;
        display: block;
    }

    /* SECTION TITLES */
    .section-title { font-size: 2rem; }

    /* CONTACT */
    .contact-flex {
        flex-direction: column;
        text-align: center;
    }

    .contact-buttons { justify-content: center; }

    /* FOOTER */
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================
   RESPONSIVE — MOBILE (≤600px)
   ===================== */
@media (max-width: 600px) {

    /* HERO */
    .hero { padding: 4rem 0; min-height: 360px; }
    .hero-text h1 { font-size: 1.9rem; }
    .hero-text p { font-size: 0.95rem; }

    /* SECTION TITLES */
    .section-title { font-size: 1.7rem; }

    /* SERVICES */
    .services-grid { grid-template-columns: 1fr; }

    /* SERVICE CARD image height */
    .service-card img { height: 180px; }

    /* CONTACT */
    .contact-text h2 { font-size: 1.6rem; }

    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }

    .contact-btn.primary,
    .contact-btn.secondary {
        text-align: center;
        width: 100%;
    }

    /* FOOTER */
    .footer-grid { grid-template-columns: 1fr; }

    /* HERO BTN full width on smallest screens */
    .hero-btn {
        display: block;
        text-align: center;
        width: fit-content;
    }
}