/* =====================================================
   GLOBAL RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =====================================================
   BODY
===================================================== */

body {
    background: #02111f;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* =====================================================
   NAVIGATION
===================================================== */

.navbar {
    background: #010b16;
    border-bottom: 1px solid #ff7a00;
    padding: 24px 40px;
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    list-style: none;
    flex-wrap: wrap;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.navbar a:hover {
    color: #ff7a00;
}

.contact-button,
.admin-button {
    background: #ff7a00;
    padding: 14px 24px;
    border-radius: 10px;
    color: #ffffff !important;
}

/* =====================================================
   CONTACT HERO
===================================================== */

.contact-hero {
    background: #02111f;
    padding: 40px 40px;
}

.contact-hero-image {
    width: 100%;
    max-width: 1100px;
    height: 300px;
    margin: auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #ff7a00;
    background: #010b16;
    box-shadow: 0 0 35px rgba(0,0,0,0.45);
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* =====================================================
   CONTACT INTRO
===================================================== */

.contact-intro {
    background: #0a2b47;
    border-top: 1px solid #ff7a00;
    padding: 90px 40px;
}

.intro-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.contact-photo img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid #ff7a00;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.intro-text h2 {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 30px;
    font-weight: 800;
}

.intro-text h2 span {
    color: #ff7a00;
}

.intro-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #f1f1f1;
    margin-bottom: 24px;
}

/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-section {
    background: linear-gradient(to bottom, #08213a, #071b2d);
    padding: 100px 40px;
}

.contact-form-container {
    max-width: 1100px;
    margin: auto;
}

.contact-form-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-form-title h2 {
    font-size: 3.2rem;
    color: #ff7a00;
    margin-bottom: 20px;
}

.contact-form-title p {
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,122,0,0.3);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 12px;
    color: #ff7a00;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    background: #0c3153;
    border: 1px solid rgba(255,122,0,0.4);
    color: #ffffff;
    padding: 18px;
    border-radius: 10px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 220px;
    resize: vertical;
}

.full-width {
    grid-column: span 2;
}

.submit-btn {
    margin-top: 35px;
    background: #ff7a00;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #ff922d;
}

/* =====================================================
   LOCATION SECTION
===================================================== */

.location-section {
    background: #0a2b47;
    padding: 90px 40px;
    border-top: 1px solid #ff7a00;
}

.location-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.location-text {
    background: rgba(255,255,255,0.04);
    padding: 50px;
    border-radius: 28px;
}

.location-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.location-text h2 span {
    color: #ff7a00;
}

.location-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.map-photo {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #ff7a00;
    box-shadow: 0 0 35px rgba(0,0,0,0.45);
}

.map-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #010b16;
    border-top: 1px solid #ff7a00;
    text-align: center;
    padding: 50px 20px;
}

.footer p {
    color: #ffffff;
    line-height: 1.8;
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 1200px) {

    .intro-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .intro-text h2,
    .location-text h2,
    .contact-form-title h2 {
        font-size: 3rem;
    }

    .intro-text p,
    .location-text p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .contact-form {
        padding: 35px;
    }

    .navbar ul {
        gap: 24px;
    }
}

@media (max-width: 768px) {

    .contact-hero,
    .contact-intro,
    .contact-form-section,
    .location-section {
        padding: 60px 20px;
    }

    .contact-hero-image {
        max-width: 100%;
        height: 220px;
    }

    .intro-text h2,
    .location-text h2,
    .contact-form-title h2 {
        font-size: 2.3rem;
    }

    .contact-form {
        padding: 25px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 18px;
    }
}