.contact-hero {
    position: relative;
    width: 100%;
    min-height: 55vh;
    display: flex;
    align-items: center;
    padding: 130px var(--pad) 60px;
    overflow: hidden;
    background: url(ig/027A6185.png);
}

.contact-hero-bg {
    position: absolute;
    top: 30%;
    left: 60%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgb(196, 61, 187) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.contact-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    line-height: 1.02;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-hero-sub {
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    line-height: 1.7;
}

/* -------------------- QUICK CONTACT STRIP -------------------- */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.qc-card {
    background: var(--dark);
    padding: 32px var(--pad);
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.qc-card:hover {
    background: #131100;
}

.qc-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.qc-card h4 {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.qc-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* -------------------- MAIN: FORM + INFO -------------------- */
.contact-main {
    padding: 100px var(--pad);
    background: #94489a;
}

.contact-main-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

/* FORM */
.contact-form-wrap h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.1;
}

.form-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
    line-height: 1.6;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.req {
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: #161200;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: #111;   
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.submit-btn svg {
    transition: transform 0.3s;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

.form-note {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.5;
}

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-success.show {
    display: block;
    animation: fadeUp 0.5s ease;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.form-success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.6;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* INFO PANEL */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px;
}

.info-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    list-style: none;
}

.il-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transform: translateX(4px);
}

.sl-icon {
    font-size: 1.1rem;
}

.hours-card .hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13.5px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.65);
}

.hours-card .hours-row:last-child {
    border-bottom: none;
}

.hours-card .hours-row span:first-child {
    color: var(--white);
    font-weight: 500;
}

/* -------------------- MAP -------------------- */
.map-section {
    padding: 0 var(--pad) 100px;
    background: var(--dark);
}

.map-section .section-header {
    padding-top: 80px;
    margin-bottom: 40px;
}

.map-wrap {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    filter: grayscale(15%) brightness(0.9);
}

.map-wrap iframe {
    display: block;
    width: 100%;
}

/* -------------------- FAQ -------------------- */
.faq-section {
    padding: 100px var(--pad);
    background: var(--dark2);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.open {
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    cursor: pointer;
}

.faq-q h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    padding-right: 20px;
}

.faq-toggle {
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 26px;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 26px 22px;
}

.faq-a p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .quick-contact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 110px 20px 40px;
        min-height: 45vh;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .qc-card {
        padding: 22px 18px;
    }

    .faq-q {
        padding: 18px 20px;
    }

    .faq-q h4 {
        font-size: 14px;
    }

    .map-section .section-header {
        padding-top: 60px;
    }
}