/* ==========================================
START : Contact Hero Banner
========================================== */

.contact-hero{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 650px;
    overflow: hidden;
    background: url("../images/contact/contact-banner.jpg") center center/cover no-repeat;
}

.contact-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.75),
        rgba(0,0,0,.55),
        rgba(0,0,0,.45)
    );
}

.contact-hero .container{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-content{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Breadcrumb */

.contact-breadcrumb{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: #fff;
    font-size: 15px;
}

.contact-breadcrumb a{
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.contact-breadcrumb a:hover{
    color: #0F52BA;
}

/* Tag */

.hero-tag{
    display: inline-block;
    padding: 8px 22px;
    background: #0F52BA;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Heading */

.contact-hero h1{
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 15px;
}

.contact-hero h2{
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
}

.contact-hero p{
    max-width: 720px;
    margin: 0 auto 35px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.92);
}

/* Buttons */

.hero-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.btn-primary{
    background: #0F52BA;
    color: #fff;
}

.btn-primary:hover{
    background: #0b3f8d;
    transform: translateY(-3px);
}

.btn-secondary{
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover{
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* ==========================
Tablet
========================== */

@media (max-width:991px){

.contact-hero{
    min-height: 560px;
    padding: 90px 0;
}

.contact-hero h1{
    font-size: 44px;
}

.contact-hero h2{
    font-size: 24px;
}

.contact-hero p{
    font-size: 16px;
}

}

/* ==========================
Mobile
========================== */

@media (max-width:767px){

.contact-hero{
    min-height: auto;
    padding: 120px 0 80px;
}

.contact-breadcrumb{
    font-size: 14px;
}

.hero-tag{
    font-size: 13px;
}

.contact-hero h1{
    font-size: 34px;
}

.contact-hero h2{
    font-size: 21px;
}

.contact-hero p{
    font-size: 15px;
    line-height: 1.7;
}

.hero-buttons{
    flex-direction: column;
}

.btn-primary,
.btn-secondary{
    width: 100%;
}

}

/* ==========================================
END : Contact Hero Banner
========================================== */

/* ===============================
   Contact Information Section START
================================== */

/* ===== Contact Info Section ===== */

.contact-info-section {
    padding: 70px 0;
    background: #f5f7fb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title .subtitle {
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 36px;
    color: #0f172a;
    margin: 10px 0 15px;
    font-weight: 700;
}

.section-title p {
    color: #64748b;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #2563eb;
}

/* Icon */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Content */
.contact-content h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-content a,
.contact-content p {
    font-size: 16px;
    color: #334155;
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-content a:hover {
    color: #2563eb;
}

.contact-content span {
    font-size: 14px;
    color: #64748b;
}

/* Tablet */
@media (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 25px 18px;
    }

    .section-title h2 {
        font-size: 26px;
    }
}

.contact-card.active {
    border-color: #2563eb;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}

/* ===============================
   Contact Information Section END
================================== */

/* ===== Contact Form Section ===== */

.contact-form-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Left Form Box */
.contact-form-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 40px;
}

.section-heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #111827;
    font-weight: 700;
}

.section-heading p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    font-size: 15px;
    color: #111827;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Buttons */
.form-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn i {
    font-size: 15px;
}

.btn-primary {
    background: #111827;
    color: #fff;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #fff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

/* Right Details Box */
.contact-details-box {
    background: #111827;
    color: #fff;
    border-radius: 24px;
    padding: 35px 28px;
    position: sticky;
    top: 30px;
}

.contact-details-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.details-text {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.detail-item:first-of-type {
    border-top: none;
}

.detail-item i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.detail-item h4 {
    margin: 0 0 6px;
    font-size: 16px;
}

.detail-item p {
    margin: 0;
    color: #e5e7eb;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-details-box {
        position: relative;
        top: 0;
    }
}

@media (max-width: 576px) {
    .contact-form-box {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Why Contact Us Section Start
======================================== */

.why-contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Content */
.section-subtitle {
    display: inline-block;
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.why-contact-content h2 {
    font-size: 38px;
    color: #111827;
    margin-bottom: 18px;
    font-weight: 700;
}

.why-contact-content p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}

.trust-item i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.trust-item h4 {
    font-size: 18px;
    color: #111827;
    margin: 0 0 6px;
    font-weight: 700;
}

.trust-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

/* Right Highlight Card */
.why-contact{
  padding:70px 0;
  background:#fff;
}

.why-head{
  text-align:center;
  margin-bottom:40px;
}

.why-head span{
  color:#2563eb;
  font-weight:600;
  text-transform:uppercase;
  font-size:14px;
}

.why-head h2{
  font-size:34px;
  margin:10px 0;
  color:#111827;
}

.why-head p{
  color:#6b7280;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.why-item{
  display:flex;
  gap:15px;
  padding:22px;
  border:1px solid #e5e7eb;
  border-radius:18px;
  background:#f9fafb;
  transition:.3s;
}

.why-item:hover{
  transform:translateY(-5px);
  border-color:#2563eb;
  box-shadow:0 10px 25px rgba(37,99,235,.08);
}

.why-item i{
  width:52px;
  height:52px;
  background:#2563eb;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex-shrink:0;
}

.why-item h4{
  margin:0 0 6px;
  color:#111827;
}

.why-item p{
  margin:0;
  color:#6b7280;
  font-size:14px;
}

.why-item.full{
  grid-column:1/-1;
}

@media(max-width:768px){
  .why-grid{
    grid-template-columns:1fr;
  }

  .why-item.full{
    grid-column:auto;
  }

  .why-head h2{
    font-size:28px;
  }
}
/* ========================================
   Why Contact Us Section END
======================================== */

/* ==================================
   Google Map Section START
=================================== */
.map-section{
  padding:80px 0;
  background:#f8fafc;
}

.map-header{
  text-align:center;
  margin-bottom:35px;
}

.map-header span{
  color:#2563eb;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
}

.map-header h2{
  font-size:36px;
  color:#111827;
  margin:10px 0;
  font-weight:700;
}

.map-header p{
  color:#6b7280;
  max-width:650px;
  margin:0 auto;
  line-height:1.7;
}

.map-card{
  border-radius:24px;
  overflow:hidden;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  background:#fff;
}

.map-card iframe{
  display:block;
}

.map-action{
  text-align:center;
  margin-top:24px;
}

.map-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#2563eb;
  color:#fff;
  padding:14px 26px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.map-btn:hover{
  background:#1d4ed8;
  transform:translateY(-2px);
}

@media(max-width:576px){
  .map-section{
    padding:60px 0;
  }

  .map-header h2{
    font-size:28px;
  }

  .map-card{
    border-radius:18px;
  }

  .map-card iframe{
    height:320px;
  }
}
/* ==================================
   Google Map Section END
=================================== */

/* ===== FAQ Section ===== */

.faq-section{
  padding:80px 0;
  background:#f8fafc;
}

.faq-header{
  text-align:center;
  margin-bottom:40px;
}

.faq-header span{
  color:#2563eb;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
}

.faq-header h2{
  font-size:36px;
  margin:10px 0;
  color:#111827;
}

.faq-header p{
  color:#6b7280;
}

.faq-wrapper{
  max-width:900px;
  margin:0 auto;
}

.faq-item{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  margin-bottom:16px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  padding:20px 24px;
  background:none;
  border:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:18px;
  font-weight:600;
  color:#111827;
  cursor:pointer;
  text-align:left;
}

.faq-question span{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#2563eb;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  transition:.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer p{
  padding:0 24px 22px;
  color:#6b7280;
  line-height:1.8;
}

/* Active */
.faq-item.active{
  border-color:#2563eb;
  box-shadow:0 10px 25px rgba(37,99,235,.08);
}

.faq-item.active .faq-answer{
  max-height:220px;
}

/* FAQ icon */
.faq-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#2563eb;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:700;
  line-height:1;
  transition:.3s ease;
}

/* Active state = minus sign */
.faq-item.active .faq-icon{
  font-size:28px;
}
@media(max-width:576px){
  .faq-header h2{
    font-size:28px;
  }

  .faq-question{
    font-size:16px;
    padding:18px;
  }

  .faq-answer p{
    padding:0 18px 18px;
  }
}

/* =========================
FINAL CTA STRIP CSS START
========================= */

.final-cta-strip{
  padding:70px 0;
  background:#f8fafc;
}

.cta-strip-wrapper{
  background:linear-gradient(135deg,#111827,#1f2937);
  border-radius:28px;
  padding:45px 50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  position:relative;
  overflow:hidden;
}

.cta-strip-wrapper::before{
  content:"";
  position:absolute;
  top:-60px;
  right:-60px;
  width:180px;
  height:180px;
  background:rgba(37,99,235,.18);
  border-radius:50%;
}

.cta-strip-content{
  max-width:650px;
  position:relative;
  z-index:2;
}

.cta-strip-tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(37,99,235,.18);
  color:#60a5fa;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:16px;
}

.cta-strip-content h2{
  color:#fff;
  font-size:38px;
  line-height:1.2;
  margin-bottom:14px;
  font-weight:700;
}

.cta-strip-content p{
  color:#d1d5db;
  font-size:16px;
  line-height:1.8;
}

.cta-strip-actions{
  display:flex;
  flex-direction:column;
  gap:15px;
  min-width:240px;
  position:relative;
  z-index:2;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 24px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  text-decoration:none;
  transition:all .3s ease;
}

.cta-btn i{
  font-size:16px;
}

.cta-btn-primary{
  background:#2563eb;
  color:#fff;
  box-shadow:0 10px 25px rgba(37,99,235,.35);
}

.cta-btn-primary:hover{
  background:#1d4ed8;
  transform:translateY(-3px);
}

.cta-btn-secondary{
  background:#fff;
  color:#111827;
}

.cta-btn-secondary:hover{
  background:#25D366;
  color:#fff;
  transform:translateY(-3px);
}

@media(max-width:991px){
  .cta-strip-wrapper{
    flex-direction:column;
    align-items:flex-start;
    padding:38px 30px;
  }

  .cta-strip-actions{
    width:100%;
    flex-direction:row;
    min-width:auto;
  }

  .cta-btn{
    flex:1;
  }
}

@media(max-width:576px){
  .final-cta-strip{
    padding:55px 0;
  }

  .cta-strip-wrapper{
    padding:28px 22px;
    border-radius:22px;
  }

  .cta-strip-content h2{
    font-size:28px;
  }

  .cta-strip-actions{
    flex-direction:column;
  }

  .cta-btn{
    width:100%;
  }
}

/* =========================
FINAL CTA STRIP CSS END
========================= */