/* ==========================
   CONTACT PAGE
========================== */

.contact-hero-section{
    padding:80px 0 60px;
    background:linear-gradient(135deg,#f8fbff,#eef6ff);
}

.contact-hero-section .section-header{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.contact-hero-section h1{
    font-size:48px;
    line-height:1.2;
    color:#0f172a;
    margin:15px 0 20px;
}

.contact-hero-section p{
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

/* ==========================
   CONTACT GRID
========================== */

.contact-info-section{
    padding:90px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

.contact-details,
.contact-form-wrapper{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 50px rgba(15,23,42,.08);
}

.contact-details h2,
.contact-form-wrapper h2{
    font-size:32px;
    margin-bottom:20px;
    color:#0f172a;
}

.contact-details > p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:30px;
}

.contact-card{
    padding:24px;
    background:#f8fafc;
    border-left:4px solid #0284c7;
    border-radius:15px;
    margin-bottom:20px;
}

.contact-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#0f172a;
}

.contact-card p{
    color:#475569;
    line-height:1.8;
    margin:0;
}

.contact-card a{
    color:#0284c7;
    text-decoration:none;
    font-weight:600;
}

.contact-card a:hover{
    text-decoration:underline;
}

/* ==========================
   FORM
========================== */

.contact-form .form-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #dbeafe;
    background:#fff;
    border-radius:12px;
    padding:15px 18px;
    font-size:16px;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#0284c7;
    box-shadow:0 0 0 4px rgba(2,132,199,.1);
}

.contact-form textarea{
    resize:vertical;
}

.btn-primary{
    display:inline-block;
    border:none;
    background:#0284c7;
    color:#fff;
    padding:15px 30px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-primary:hover{
    background:#0369a1;
    transform:translateY(-2px);
}

/* ==========================
   CONTENT SECTION
========================== */

.contact-about-section{
    padding:90px 0;
    background:#f8fafc;
}

.contact-about-section .content-box{
    max-width:1000px;
    margin:auto;
}

.contact-about-section p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
    margin-bottom:20px;
}

/* ==========================
   FAQ
========================== */

.faq-section{
    padding:90px 0;
}

.faq-list{
    max-width:950px;
    margin:auto;
}

.faq-item{
    background:#fff;
    padding:30px;
    border-radius:18px;
    margin-bottom:20px;
    box-shadow:0 12px 40px rgba(15,23,42,.06);
}

.faq-item h3{
    font-size:22px;
    color:#0f172a;
    margin-bottom:12px;
}

.faq-item p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}

/* ==========================
   GOOGLE MAP
========================== */

.map-section{
    padding:0 0 90px;
}

.map-wrapper{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 50px rgba(15,23,42,.08);
}

.map-wrapper iframe{
    width:100%;
    height:450px;
    border:none;
    display:block;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-hero-section h1{
        font-size:36px;
    }

    .contact-details h2,
    .contact-form-wrapper h2{
        font-size:28px;
    }
}

@media(max-width:576px){

    .contact-hero-section{
        padding:60px 0;
    }

    .contact-info-section,
    .contact-about-section,
    .faq-section{
        padding:60px 0;
    }

    .contact-details,
    .contact-form-wrapper{
        padding:25px;
    }

    .contact-hero-section h1{
        font-size:30px;
    }

    .contact-card{
        padding:18px;
    }

    .faq-item{
        padding:22px;
    }
}




/* =====================================
   SECTION HEADERS
===================================== */

.section-header{

    text-align:center;

    max-width:900px;

    margin:0 auto 50px;
}

.section-tag{

    display:inline-block;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

    color:#0284c7;

    margin-bottom:12px;
}

.section-header h2{

    font-size:42px;

    line-height:1.2;

    color:#0f172a;

    margin:0 0 18px;

    font-weight:800;
}

.section-header p{

    font-size:18px;

    line-height:1.8;

    color:#64748b;
}