@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* =========================
   GLOBAL
========================= */

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

body{
    font-family: 'Inter', sans-serif;
    background: #f7f7f7;
    color: #2f3138;
}

section{
    padding: 90px 8%;
}

h1,h2,h3,h4{
    font-family: 'Poppins', sans-serif;
}

a{
    text-decoration: none;
}

/* =========================
   BUTTON
========================= */

.primary-btn{
    padding: 16px 34px;
    border: none;
    background: #ff6b00;
    color: white;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

.primary-btn:hover{
    background: #ff8533;
    transform: translateY(-4px);
}

/* =========================
   HERO
========================= */

.contact-hero{
    padding: 140px 8% 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero span{
    color: #ff6b00;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.contact-hero h1{
    font-size: 72px;
    max-width: 850px;
    line-height: 1.1;
    margin: 24px 0;
}

.contact-hero p{
    max-width: 700px;
    color: #6d6d6d;
    font-size: 18px;
    line-height: 1.9;
}

/* =========================
   CONTACT MAIN
========================= */

.contact-main{
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: start;
    margin-top: -60px;
}

/* =========================
   LEFT
========================= */

.contact-info{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card{
    background: white;
    border-radius: 26px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #ececec;
}

.info-icon{
    min-width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255,107,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i{
    font-size: 30px;
    color: #ff6b00;
}

.info-card h3{
    margin-bottom: 8px;
    font-size: 22px;
}

.info-card p{
    color: #6d6d6d;
    line-height: 1.7;
}

.contact-side-box{
    background: linear-gradient(
        to right,
        #26282e,
        #343741
    );
    color: white;
    border-radius: 30px;
    padding: 40px;
    margin-top: 10px;
}

.contact-side-box h3{
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-side-box p{
    line-height: 1.9;
    opacity: 0.9;
}

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

.contact-form-wrapper{
    background: white;
    border-radius: 32px;
    padding: 50px;
    border: 1px solid #ececec;
}

.contact-form-wrapper h2{
    font-size: 42px;
    margin-bottom: 35px;
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width: 100%;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid #dddddd;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color: #ff6b00;
}

/* =========================
   MAP
========================= */

.map-section{
    padding-top: 20px;
}

.map-box{
    background: white;
    border-radius: 36px;
    padding: 100px;
    text-align: center;
    border: 1px solid #ececec;
}

.map-box i{
    font-size: 70px;
    color: #ff6b00;
    margin-bottom: 24px;
}

.map-box h2{
    font-size: 48px;
    margin-bottom: 18px;
}

.map-box p{
    color: #6d6d6d;
    font-size: 18px;
}

/* =========================
   FAQ
========================= */

.section-title{
    text-align: center;
    max-width: 760px;
    margin: auto;
}

.section-title span{
    color: #ff6b00;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.section-title h2{
    font-size: 52px;
    margin-top: 18px;
}

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

.faq-card{
    background: white;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #ececec;
}

.faq-card h3{
    font-size: 28px;
    margin-bottom: 18px;
}

.faq-card p{
    color: #6d6d6d;
    line-height: 1.8;
}

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

@media(max-width:1200px){

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

    .faq-grid{
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    section{
        padding: 80px 8%;
    }

    .contact-hero h1{
        font-size: 48px;
    }

    .contact-form-wrapper h2,
    .section-title h2,
    .map-box h2{
        font-size: 36px;
    }

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

    .contact-form-wrapper,
    .map-box{
        padding: 35px;
    }

}

/* =========================================
   EXTRA RESPONSIVE FIXES
========================================= */

@media (max-width: 992px) {

    .contact-hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .contact-main {
        gap: 35px;
    }

    .contact-info {
        gap: 18px;
    }

    .contact-form-wrapper {
        padding: 35px;
    }

    .map-box {
        padding: 60px 35px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    section {
        padding: 65px 5%;
    }

    .contact-hero h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .contact-hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .contact-form-wrapper h2,
    .section-title h2,
    .map-box h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .contact-form-wrapper {
        padding: 25px;
        border-radius: 22px;
    }

    .contact-form {
        gap: 18px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 15px 16px;
        font-size: 14px;
    }

    .primary-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 22px;
        gap: 14px;
    }

    .info-icon {
        min-width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .info-icon i {
        font-size: 24px;
    }

    .info-card h3 {
        font-size: 20px;
    }

    .contact-side-box {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .contact-side-box h3 {
        font-size: 24px;
    }

    .map-box {
        padding: 40px 20px;
        border-radius: 22px;
    }

    .map-box i {
        font-size: 48px;
    }

    .map-box p {
        font-size: 15px;
    }

    .faq-grid {
        margin-top: 40px;
        gap: 20px;
    }

    .faq-card {
        padding: 24px;
        border-radius: 22px;
    }

    .faq-card h3 {
        font-size: 22px;
    }

    .faq-card p {
        font-size: 15px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .contact-hero h1 {
        font-size: 30px;
    }

    .contact-form-wrapper h2,
    .section-title h2,
    .map-box h2 {
        font-size: 26px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}