/* =========================
   BASIS
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    padding-top: 90px;
    font-family: 'Inter', sans-serif;
    color: #334155;
    background: #ffffff;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HEADER
========================= */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a5f;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
}

.nav-btn {
    background: #5d7d6f;
    color: white;
    padding: 12px 22px;
    border-radius: 12px;
    text-decoration: none;
    transition: .3s;
}

.nav-btn:hover {
    background: #486357;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1e3a5f;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: calc(100svh - 90px);
    display: flex;
    align-items: center;
    background:
    linear-gradient(
        rgba(15,23,42,.55),
        rgba(15,23,42,.55)
    ),
    url('assets/hero.jpg');

    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 750px;
    color: white;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 12px 20px;
    border-radius: 999px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin-bottom: 35px;
    opacity: .95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    background: #5d7d6f;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s;
}

.btn:hover {
    background: #486357;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,.15);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

/* =========================
   TRUST SECTION
========================= */

.trust-section {
    position: relative;
    margin-top: 0;
    z-index: 20;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

.trust-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.trust-card h3 {
    color: #1e3a5f;
}

/* =========================
   SECTIONS
========================= */

.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    color: #1e3a5f;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.about-text {
    max-width: 800px;
    margin: auto;
    text-align: center;
    font-size: 1.1rem;
}

.gray {
    background: #f8fafc;
}

/* =========================
   CARDS
========================= */

.info-grid,
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 25px;
    margin-top: 50px;
}

.card,
.service-card {
    background: white;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,.05);
    transition: all .3s ease;
}

.card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

.card h3,
.service-card h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
}

/* =========================
   CONTACT
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-box {
    background: #f8fafc;
    padding: 40px;
    border-radius: 24px;
}

.map-container {
    overflow: hidden;
    border-radius: 24px;
    min-height: 520px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

/* =========================
   FOOTER
========================= */

footer {
    background: #0f172a;
    color: white;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 50px 0;
    flex-wrap: wrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 20px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 350px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-btn {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,.1);
        z-index: 9999;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
    min-height: auto;
    padding: 60px 0;
}

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 24px;
    }

    .section {
        padding: 120px 0;
    }
.contact-grid {
    gap: 25px;
}

.map-container {
    min-height: 280px;
}
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
.appointment-section {
    background: linear-gradient(
        135deg,
        #1e3a5f,
        #27496d
    );
    color: white;
    padding: 100px 0 140px;
    margin-top: 40px;
}

.appointment-card {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.appointment-card h2 {
    color: white;
    margin-bottom: 20px;
}

.appointment-card p {
    margin-bottom: 30px;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
}
.logo-wrapper {
    gap: 8px;
}

.header-logo {
    width: 38px;
    height: 38px;
}

.logo {
    font-size: 1rem;
}

.footer-logo {
    width: 110px;
    margin: 0 auto;
}

.footer-brand {
    align-items: center;
}
