
    /* ===============================
   SERVICE SECTION
================================ */

.service-main{
    width:100%;
    padding:80px 20px;
    background:#ffffff;
}


.service-grid{

    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}


/* ===============================
   SERVICE CARD
================================ */


.service-card{

    background:#fff;

    border:1px solid #e5e5e5;

    border-radius:20px;

    overflow:hidden;

    transition:all .4s ease;

    position:relative;

}



.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.12);

    border-color:#0A4DA3;

}



/* IMAGE */


.service-card img{

    width:100%;

    height:230px;

    object-fit:cover;

    display:block;

    transition:.5s ease;

}



.service-card:hover img{

    transform:scale(1.08);

}





/* CONTENT */


.service-info{

    padding:25px;

}



.service-info span{

    display:inline-block;

    color:#0A4DA3;

    background:#edf5ff;

    padding:7px 15px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:15px;

}





.service-info h3{

    font-size:24px;

    line-height:1.3;

    color:#111;

    margin-bottom:12px;

    font-weight:700;

}




.service-info p{

    font-size:15px;

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}




.service-info a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#0A4DA3;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}



.service-info a:hover{

    gap:15px;

    color:#062e68;

}





/* ===============================
   CARD TOP LINE EFFECT
================================ */


.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0%;

    height:4px;

    background:#0A4DA3;

    transition:.4s;

}



.service-card:hover::before{

    width:100%;

}





/* ===============================
   TABLET
================================ */


@media(max-width:992px){


.service-grid{

grid-template-columns:
repeat(2,1fr);

}


}





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


@media(max-width:600px){


.service-main{

padding:50px 15px;

}



.service-grid{

grid-template-columns:1fr;

gap:25px;

}



.service-card img{

height:210px;

}


.service-info h3{

font-size:21px;

}



}
/* SERVICE MAIN */

.service-main{
    width:100%;
    padding:90px 20px;
    background:#fff;
}


/* TITLE */

.section-title{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}


.section-title span{

    display:inline-block;

    background:#eaf3ff;

    color:#0A4DA3;

    padding:8px 20px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:20px;

}



.section-title h2{

    font-size:42px;

    line-height:1.25;

    font-weight:800;

    color:#111;

    margin:0 auto 20px;

}



.section-title p{

    font-size:16px;

    line-height:1.8;

    color:#666;

    max-width:780px;

    margin:auto;

}





/* SERVICE GRID */

.service-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}





.service-card{

    border-radius:22px;

    overflow:hidden;

    background:white;

    transition:.4s;

}





.service-card img{

    height:240px;

    object-fit:cover;

}




.service-info{

    padding:30px;

}



.service-info h3{

    font-size:23px;

    margin-bottom:15px;

}



.service-info p{

    font-size:15px;

    line-height:1.8;

}





/* TABLET */

@media(max-width:992px){

.service-grid{

grid-template-columns:repeat(2,1fr);

}

}




/* MOBILE */

@media(max-width:600px){

.service-main{

padding:60px 15px;

}


.section-title h2{

font-size:30px;

}


.service-grid{

grid-template-columns:1fr;

}


}

    /*==================================
        SERVICES SECTION
==================================*/

.service-main{
    padding:80px 20px;
    background:#f8fbff;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

/*==========================
      SERVICE CARD
==========================*/

.service-card{
    background:#fff;
    border:1px solid #e5e5e5 !important;
    border-radius:18px;
    overflow:hidden;
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    height:100%;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

/*==========================
        IMAGE
==========================*/

.service-image{
    width:100%;
    height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    background:#fff;
    overflow:hidden;
}

.service-image img{
    width:90%;
    height:90%;
    object-fit:contain;
    transition:.4s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

/*==========================
       CONTENT
==========================*/

.service-info{
    padding:25px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.service-info span{
    display:inline-block;
    background:#eef5ff;
    color:#0a4da3;
    padding:7px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
    width:max-content;
}

.service-info h3{
    font-size:24px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
    line-height:1.3;
}

.service-info p{
    font-size:15px;
    line-height:1.8;
    color:#666;
    margin-bottom:20px;
    flex:1;
}

.service-info a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#0A4DA3;
    font-weight:700;
    transition:.3s;
}

.service-info a:hover{
    color:#ff6600;
    gap:14px;
}

/*==========================
      LARGE SCREEN
==========================*/

@media (max-width:1400px){

.service-grid{
    grid-template-columns:repeat(4,1fr);
}

}

/*==========================
      LAPTOP
==========================*/

@media (max-width:1200px){

.service-grid{
    grid-template-columns:repeat(3,1fr);
}

.service-image{
    height:220px;
}

.service-info h3{
    font-size:22px;
}

}

/*==========================
      TABLET
==========================*/

@media (max-width:992px){

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

.service-image{
    height:210px;
}

.service-info{
    padding:20px;
}

}

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

@media (max-width:576px){

.service-main{
    padding:60px 15px;
}

.service-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.service-card{
    border-radius:15px;
}

.service-image{
    height:230px;
    padding:10px;
}

.service-image img{
    width:95%;
    height:95%;
}

.service-info{
    padding:18px;
}

.service-info span{
    font-size:12px;
}

.service-info h3{
    font-size:21px;
}

.service-info p{
    font-size:14px;
    line-height:1.7;
}

.service-info a{
    font-size:15px;
}

}


    /* ===============================
   SERVICE SECTION
================================ */

.service-main{
    width:100%;
    padding:80px 20px;
    background:#ffffff;
    
}


.service-grid{

    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}


/* ===============================
   SERVICE CARD
================================ */


.service-card{

    background:#fff;

    border:1px solid #e5e5e5;

    border-radius:20px;

    overflow:hidden;

    transition:all .4s ease;

    position:relative;

}



.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.12);

    border-color:#0A4DA3;

}



/* IMAGE */


.service-card img{

    width:100%;

    height:230px;

    object-fit:cover;

    display:block;

    transition:.5s ease;

}



.service-card:hover img{

    transform:scale(1.08);

}





/* CONTENT */


.service-info{

    padding:25px;

}



.service-info span{

    display:inline-block;

    color:#0A4DA3;

    background:#edf5ff;

    padding:7px 15px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    margin-bottom:15px;

}





.service-info h3{

    font-size:24px;

    line-height:1.3;

    color:#111;

    margin-bottom:12px;

    font-weight:700;

}




.service-info p{

    font-size:15px;

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}




.service-info a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#0A4DA3;

    font-size:15px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}



.service-info a:hover{

    gap:15px;

    color:#062e68;

}





/* ===============================
   CARD TOP LINE EFFECT
================================ */


.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0%;

    height:4px;

    background:#0A4DA3;

    transition:.4s;

}



.service-card:hover::before{

    width:100%;

}





/* ===============================
   TABLET
================================ */


@media(max-width:992px){


.service-grid{

grid-template-columns:
repeat(2,1fr);

}


}





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


@media(max-width:600px){


.service-main{

padding:50px 15px;

}



.service-grid{

grid-template-columns:1fr;

gap:25px;

}



.service-card img{

height:210px;

}


.service-info h3{

font-size:21px;

}



}
/* SERVICE MAIN */

.service-main{
    width:100%;
    padding:90px 20px;
    background:#fff;
}


/* TITLE */

.section-title{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}


.section-title span{

    display:inline-block;

    background:#eaf3ff;

    color:#0A4DA3;

    padding:8px 20px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:20px;

}



.section-title h2{

    font-size:42px;

    line-height:1.25;

    font-weight:800;

    color:#111;

    margin:0 auto 20px;

}



.section-title p{

    font-size:16px;

    line-height:1.8;

    color:#666;

    max-width:780px;

    margin:auto;

}





/* SERVICE GRID */

.service-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}





.service-card{

    border-radius:22px;

    overflow:hidden;

    background:white;

    transition:.4s;

}





.service-card img{

    height:240px;

    object-fit:cover;

}




.service-info{

    padding:30px;

}



.service-info h3{

    font-size:23px;

    margin-bottom:15px;

}



.service-info p{

    font-size:15px;

    line-height:1.8;

}





/* TABLET */

@media(max-width:992px){

.service-grid{

grid-template-columns:repeat(2,1fr);

}

}




/* MOBILE */

@media(max-width:600px){

.service-main{

padding:60px 15px;

}


.section-title h2{

font-size:30px;

}


.service-grid{

grid-template-columns:1fr;

}


}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-tag {
    display: inline-block;
    background: color-mix(in srgb, var(--primary) 15%, white);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

/* -------------------- CONTACT HERO -------------------- */

.contact-hero {
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, white), #ffffff);
    padding: 90px 0 60px;
    text-align: center;
}

.contact-hero-wrap h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 14px;
}

.contact-hero-wrap p {
    max-width: 560px;
    margin: 0 auto 20px;
    color: #555;
    font-size: 16px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #777;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb i {
    font-size: 10px;
}

/* -------------------- QUICK CONTACT CARDS -------------------- */

.quick-contact {
    padding: 40px 0;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.quick-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.quick-card h4 {
    font-size: 16px;
    color: #111;
    margin-bottom: 6px;
}

.quick-card a {
    display: block;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 4px;
}

.quick-card span {
    font-size: 13px;
    color: #888;
}

/* -------------------- FORM + MAP -------------------- */

.contact-main {
    padding: 40px 0 70px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-form-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px;
}

.contact-form-card h2 {
    font-size: 28px;
    color: #111;
    margin-bottom: 10px;
}

.contact-form-card > p {
    color: #666;
    margin-bottom: 26px;
    font-size: 15px;
}

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

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-submit {
    border: none;
    cursor: pointer;
    margin-top: 6px;
}

.contact-map-card {
    border-radius: 20px;
    overflow: hidden;
    min-height: 340px;
    border: 1px solid #eee;
}

/* -------------------- FAQ -------------------- */

.contact-faq {
    background: #fafafa;
    padding: 60px 0 80px;
}

.section-heading {
    text-align: center;
    margin-bottom: 34px;
}

.section-heading h2 {
    font-size: 30px;
    color: #111;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px 22px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: #111;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--primary);
    font-size: 20px;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin-top: 12px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* -------------------- RESPONSIVE -------------------- */

@media (max-width: 900px) {
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
    .contact-map-card {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-hero-wrap h1 {
        font-size: 30px;
    }
}


    .terms-section{
    padding:80px 0;
    background:#f8fbff;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#1b1b1b;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.terms-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.term-card{
    background:#fff;
    border-radius:15px;
    padding:25px;
    display:flex;
    gap:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.07);
    transition:.3s;
    border-left:5px solid #0d6efd;
}

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

.term-icon{
    width:55px;
    height:55px;
    min-width:55px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:bold;
}

.term-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#111;
}

.term-card p{
    margin:0;
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

.section-title h2{
    font-size:30px;
}

.term-card{
    padding:20px;
}

}
/* Responsive Fix */

*{
    box-sizing:border-box;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

.terms-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.term-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    width:100%;
    height:100%;
}

.term-card h3{
    font-size:20px;
    margin-bottom:10px;
}

.term-card p{
    font-size:15px;
    line-height:1.7;
}

/* Tablet */

@media (max-width:991px){

    .terms-section{
        padding:60px 0;
    }

    .section-title h2{
        font-size:32px;
    }

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

}

/* Mobile */

@media (max-width:767px){

    .terms-section{
        padding:50px 0;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:15px;
    }

    .terms-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .term-card{
        flex-direction:column;
        text-align:center;
        align-items:center;
        padding:20px;
    }

    .term-icon{
        margin-bottom:10px;
    }

    .term-card h3{
        font-size:18px;
    }

    .term-card p{
        font-size:14px;
    }

}

/* Small Mobile */

@media (max-width:480px){

    .section-title h2{
        font-size:24px;
    }

    .section-title span{
        font-size:13px;
        padding:6px 14px;
    }

    .term-card{
        padding:18px;
    }

    .term-icon{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:20px;
    }

}



    /* ==========================================================
CONTACT PAGE — IMPROVED RESPONSIVE VERSION
========================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 50px;
}

.cta-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--primary) 15%, white);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* -------------------- CONTACT HERO -------------------- */

.contact-hero {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, white), #ffffff);
  padding: clamp(40px, 8vw, 90px) 0 clamp(30px, 6vw, 60px);
  text-align: center;
}

.contact-hero-wrap h1 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
  color: #111;
  margin-bottom: 14px;
}

.contact-hero-wrap p {
  max-width: 560px;
  margin: 0 auto 20px;
  color: #555;
  font-size: clamp(14px, 3.5vw, 16px);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #777;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb i {
  font-size: 10px;
}

/* -------------------- QUICK CONTACT CARDS -------------------- */

.quick-contact {
  padding: clamp(30px, 6vw, 40px) 0;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 28px) clamp(16px, 3vw, 22px);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.quick-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.quick-card h4 {
  font-size: clamp(15px, 3.5vw, 16px);
  color: #111;
  margin-bottom: 6px;
}

.quick-card a {
  display: block;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(14px, 3.5vw, 15px);
  margin-bottom: 4px;
  word-break: break-word;
}

.quick-card span {
  font-size: 12px;
  color: #888;
}

/* -------------------- FORM + MAP -------------------- */

.contact-main {
  padding: clamp(30px, 6vw, 40px) 0 clamp(50px, 10vw, 70px);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-form-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: clamp(24px, 5vw, 40px);
}

.contact-form-card h2 {
  font-size: clamp(22px, 5vw, 28px);
  color: #111;
  margin-bottom: 10px;
}

.contact-form-card > p {
  color: #666;
  margin-bottom: 26px;
  font-size: 14px;
}

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

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-submit {
  border: none;
  cursor: pointer;
  margin-top: 6px;
  width: 100%;
}

.contact-map-card {
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid #eee;
  width: 100%;
}

/* -------------------- FAQ -------------------- */

.contact-faq {
  background: #fafafa;
  padding: clamp(40px, 8vw, 60px) 0 clamp(60px, 10vw, 80px);
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(24px, 5vw, 30px);
  color: #111;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #111;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-size: 20px;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* -------------------- RESPONSIVE -------------------- */

/* Tablet and below */
@media (max-width: 900px) {
  .quick-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-map-card {
    min-height: 280px;
  }

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

/* Mobile only */
@media (max-width: 480px) {
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .faq-item {
    padding: 14px 16px;
  }
}
