/* ===============================
   GLOBAL
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#ffffff;
    color:#111;
    line-height:1.6;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

section{
    padding:100px 8%;
}

/* ===============================
   NAVBAR (Premium Clean)
================================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#ffffff;
    border-bottom:1px solid #f0f0f0;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:24px;
    font-weight:700;
    letter-spacing:1px;
    color:#b00020;
}

.logo span{
    color:#000;
    font-weight:500;
}

.navbar nav a{
    margin-left:30px;
    font-weight:500;
    color:#333;
    position:relative;
    transition:0.3s;
}

.navbar nav a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    background:#b00020;
    left:0;
    bottom:-6px;
    transition:0.3s;
}

.navbar nav a:hover::after,
.navbar nav a.active::after{
    width:100%;
}


/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 80px 8%;
    background: #ffffff;
}

.container {
    max-width: 1300px;
    margin: auto;
}

.contact-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title h2 {
    font-size: 36px;
    color: #b00020;
    margin-bottom: 10px;
}

.contact-title p {
    color: #555;
}

/* ================= WRAPPER ================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ================= FORM ================= */

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(217,4,41,0.08);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #ffffff;
    color: #222;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #d90429;
    box-shadow: 0 0 8px rgba(217,4,41,0.15);
}

/* BUTTON */

button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #b00020;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #a6031f;
}

/* ================= CONTACT INFO ================= */

.contact-info {
    background: #fff5f6;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #ffd6dc;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #b00020;
}

.contact-info p {
    margin-bottom: 10px;
    color: #444;
}

.info-box {
    margin-top: 30px;
}

.info-box h4 {
    margin-bottom: 10px;
    color: #111;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    margin-bottom: 6px;
    color: #555;
}

/* ================= FOOTER ================= */

footer {
    text-align: center;
    padding: 25px;
    background: #111;
    color: #ffffff;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 900px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .navbar {
        flex-direction: column;
    }

    nav {
        margin-top: 10px;
    }
}