/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
    color: #000000;
    padding-top: 120px;
}

/* ================= COMMON ================= */
.site-logo {
    height: 90px;
}

.site-icon {
    height: 36px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* ================= NAVBAR ================= */
nav {
    width: 100%;
    padding: 25px 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
}

body {
    padding-top: 120px;
}

nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: white;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* ================= HERO ================= */
.hero {
    width: 100%;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
}

.hero-content p {
    margin-top: 18px;
    font-size: 18px;
    opacity: 0.85;
}

/* ================= SECTIONS ================= */
.section {
    width: 100%;
    padding: 100px 5%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.section img {
    width: 420px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.section-content {
    max-width: 550px;
}

.section-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section-content p {
    line-height: 1.7;
    color: #333;
}

/* ================= SERVICES ================= */
.services-section {
    background: #f8f8f8;
    padding: 100px 5%;
}

.services-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 45px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.service-box {
    width: 260px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* ================= JOURNEY ================= */
.journey-section {
    padding: 100px 5% 120px;
    text-align: center;
}

.journey-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.journey-box {
    min-width: 180px;
}

.icon-circle {
    width: 90px;
    height: 90px;
    border: 2px solid black;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
}

/* ================= CTA ================= */
.consult-banner {
    display: flex;
    justify-content: center;
    margin: 80px 0;
}

.consult-box {
    width: 70%;
    background: black;
    color: white;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
}

/* ================= FOOTER ================= */
.footer {
    padding: 140px 5% 70px;
    background: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links {
    text-align: center;
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 0;
}

/* ================= COPYRIGHT ================= */
.copyright {
    background: #0d0d0d;
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #aaa;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    nav {
        grid-template-columns: 1fr auto;
        padding: 20px 25px;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        display: none;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li a {
        padding: 18px;
        text-align: center;
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .section {
        flex-direction: column;
        text-align: center;
    }

    .consult-box {
        width: 100%;
        padding: 40px 20px;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }
}
