﻿
.contact-section {
    padding: 30px 20px;
}

.container {
    max-width: 1400px;
    margin: auto;
}

/* =====================
   TOP SECTION
===================== */

.contact-top {
    background: #fff;
    border-radius: 20px;
    padding: 30px 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.event-info {
    flex: 1;
}

.event-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(90deg,#c41212,#ff6500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.event-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-top: 15px;
    line-height: 1.4;
}

.contact-intro {
    max-width: 400px;
}

    .contact-intro h2 {
        font-size: 35px;
        font-weight: 800;
        color: #222;
    }

    .contact-intro span {
        color: #d21c1c;
    }

.line {
    width: 120px;
    height: 4px;
    background: #ff6500;
    margin: 5px 0 10px;
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* =====================
   CONTACT CARDS
===================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.contact-card {
    background: #fff;
    border: 2px solid #ef4444;
    border-radius: 20px;
    text-align: center;
    padding: 15px 15px;
    position: relative;
    transition: .4s;
}

    .contact-card:hover {
        transform: translateY(-8px);
    }

.contact-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg,#d61b1b,#ff5f00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: -65px auto 20px;
}

.contact-card h4 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #222;
}

.contact-card p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
}

/* =====================
   FORM SECTION
===================== */

.form-wrapper {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.form-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: #111;
}

.form-content span {
    color: #d21c1c;
}

.form-content p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.inquiry-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}

.inquiry-form textarea {
    height: 180px;
    resize: none;
}

.btn-submit {
    background: linear-gradient(90deg,#c41212,#ff5f00);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: .4s;
}

    .btn-submit:hover {
        transform: translateY(-3px);
    }

/* =====================
   RESPONSIVE
===================== */

@media(max-width:1200px) {

    .contact-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .event-title {
        font-size: 70px;
    }
}

@media(max-width:992px) {

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

    .line {
        margin: auto;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {

    .contact-top {
        padding: 30px 20px;
    }

    .event-title {
        font-size: 50px;
    }

    .contact-intro h2 {
        font-size: 42px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .form-content h2 {
        font-size: 45px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
