/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f7fb;
    color: #111;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* MAIN GROW */
main {
    flex: 1;
}

/* LINKS */
a,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-link {
    display: inline-block;
    max-width: 80%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #facc15;
    font-size: 20px;
    font-weight: bold;
}

.logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: 0.3s;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* NAV MENU DESKTOP */
.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: white;
    padding: 10px 12px;
    display: block;
    font-size: 14px;
    border-radius: 8px;
    transition: 0.3s;
}

.nav-list li a:hover {
    color: #facc15;
    background: rgba(255, 255, 255, 0.06);
}

.nav-list li a.active {
    background: #facc15;
    color: #0f172a;
}

/* HERO */
.hero-box {
    background: linear-gradient(135deg, #0e2b6e, #164fac);
    color: white;
    text-align: center;
    margin: 20px;
    padding: 60px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.hero-content h1 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #facc15;
}

.hero-content p {
    max-width: 760px;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
    color: #e5e7eb;
}

/* COMMON SECTION */
.contact-section,
.map-section,
.contact-extra,
.contact-cta {
    max-width: 1100px;
    margin: auto;
    padding: 20px 15px;
}

.contact-section h2,
.map-section h2,
.contact-extra h2,
.contact-cta h2 {
    font-size: 24px;
    margin-bottom: 22px;
    border-left: 5px solid orange;
    padding-left: 10px;
    color: #0f172a;
}

/* CONTACT CONTAINER */
.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* COMMON BOX */
.contact-form,
.contact-info,
.contact-extra,
.map-box {
    background: #fff;
    border-radius: 18px;
    padding: 24px 20px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.contact-form:hover,
.contact-info:hover,
.contact-extra:hover,
.map-box:hover {
    transform: translateY(-4px);
    border-color: #22c55e;
}

/* SUBHEADINGS */
.contact-form h3,
.contact-info h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #0f172a;
}

/* FORM */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    background: #f8fafc;
    transition: 0.3s ease;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #facc15;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.15);
}

.contact-form button {
    background: #0f172a;
    color: white;
    border: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #facc15;
    color: #0f172a;
    transform: translateY(-2px);
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#form-status {
    min-height: 22px;
    font-size: 14px;
    color: #0f172a;
    text-align: center;
    margin-top: 2px;
    font-weight: 600;
}

/* INFO */
.contact-info p,
.contact-extra p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.contact-info strong {
    color: #0f172a;
    font-size: 16px;
}

.contact-info a,
.internal-links a {
    color: #2563eb;
    font-weight: 600;
}

.contact-info a:hover,
.internal-links a:hover {
    text-decoration: underline;
}

/* MAP */
.map-box iframe {
    width: 100%;
    height: 340px;
    border: 0;
    border-radius: 12px;
}

/* CTA */
.contact-cta {
    text-align: center;
    background: #0f172a;
    color: white;
    border-radius: 18px;
    margin-top: 20px;
    margin-bottom: 24px;
    padding: 30px 20px;
}

.contact-cta h2 {
    border-left: none;
    padding-left: 0;
    color: #facc15;
}

.contact-cta p {
    color: #e5e7eb;
    margin-bottom: 16px;
    font-size: 16px;
}

.cta-btn {
    display: inline-block;
    background: #facc15;
    color: #0f172a;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #fde047;
    transform: translateY(-2px);
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    padding: 20px;
    width: 100%;
    margin-top: auto;
}

.footer p {
    margin: 4px 0;
    font-size: 14px;
}

/* TABLET */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        padding: 12px 15px;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        width: 100%;
    }

    .nav-list {
        display: none !important;
        flex-direction: column;
        width: 100%;
        margin-top: 12px;
        background: #0f172a;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-list.active {
        display: flex !important;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        text-align: left;
        padding: 12px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .logo {
        font-size: 17px;
    }

    .logo-img {
        height: 30px;
    }

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

    .hero-content p {
        font-size: 15px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-section h2,
    .map-section h2,
    .contact-extra h2,
    .contact-cta h2 {
        font-size: 21px;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 12px;
    }

    .brand-link {
        max-width: 82%;
    }

    .logo {
        font-size: 15px;
        gap: 8px;
        max-width: 100%;
    }

    .logo-img {
        height: 28px;
    }

    .hero-box {
        padding: 45px 15px;
        margin: 15px 10px;
    }

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

    .contact-section h2,
    .map-section h2,
    .contact-extra h2,
    .contact-cta h2 {
        font-size: 20px;
    }

    .contact-form,
    .contact-info,
    .contact-extra,
    .map-box,
    .contact-cta {
        padding: 18px 16px;
    }

    .contact-form h3,
    .contact-info h3 {
        font-size: 19px;
    }

    .hero-content p,
    .contact-info p,
    .contact-extra p,
    .contact-cta p {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 14px;
    }

    .map-box iframe {
        height: 260px;
    }

    .footer {
        font-size: 13px;
        padding: 14px 10px;
    }
}