
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

.shadow-sm{
  transition:all .3s ease;
}

.shadow-sm:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,.08)!important;
}
.feature-card{
  border:1px solid #eef2f7;
  transition:all .35s ease;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,.08)!important;
}

.feature-card h4{
  color:#111827;
}

.feature-card p{
  line-height:1.8;
}

/* ==============================
   CLASSY LIGHT HERO SECTION
============================== */

:root{
  --accent-1: #4f46e5;
  --accent-2: #7c3aed;
  --accent-3: #BD195D;
  --text-dark: #111827;
  --text-light: #6b7280;
}

/* HERO */

.hero-section{
  min-height: 500px;
  padding: 90px 20px 70px;

  background:
    linear-gradient(
      135deg,
      #eef2ff 0%,
      #f5f3ff 40%,
      #fdf2f8 100%
    );

  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* SOFT GLOW EFFECT */

.hero-section::before{
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(124,58,237,0.12);
  filter: blur(120px);
  top: -150px;
  left: -120px;
  border-radius: 50%;
}

.hero-section::after{
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(189,25,93,0.10);
  filter: blur(120px);
  bottom: -180px;
  right: -120px;
  border-radius: 50%;
}

.hero-section .container{
  position: relative;
  z-index: 2;
  max-width: 1050px;
}

/* BADGE */

.hero-badge{
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;

  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.8);

  color: var(--accent-2);
  font-size: 14px;
  font-weight: 600;

  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

/* TITLE */

.hero-title{
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--text-dark);

  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-title span{
  background: linear-gradient(
    135deg,
    var(--accent-1),
    var(--accent-3)
  );

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */

.hero-subtitle{
  max-width: 850px;
  margin: auto;

  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
}

/* FEATURES */

.hero-features{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 35px;
}

.feature-box{
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.9);

  padding: 12px 18px;
  border-radius: 14px;

  color: #374151;
  font-size: 15px;
  font-weight: 600;

  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

.feature-box:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* BUTTONS */

.hero-buttons{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;

  margin-top: 42px;
}

.btn-call,
.btn-whatsapp{
  padding: 15px 28px;
  border-radius: 14px;

  text-decoration: none;
  font-size: 16px;
  font-weight: 700;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  transition: 0.3s ease;
}

.btn-call{
  background: linear-gradient(
    135deg,
    var(--accent-1),
    var(--accent-2)
  );

  color: #fff;

  box-shadow: 0 10px 25px rgba(79,70,229,0.22);
}

.btn-whatsapp{
  background: #22c55e;
  color: #fff;

  box-shadow: 0 10px 25px rgba(34,197,94,0.18);
}

.btn-call:hover,
.btn-whatsapp:hover{
  transform: translateY(-4px);
  color: #fff;
}

/* MOBILE */

@media(max-width:768px){

  .hero-section{
    padding: 70px 15px 60px;
    min-height: auto;
  }

  .hero-title{
    font-size: 2.4rem;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .hero-subtitle{
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-features{
    gap: 10px;
  }

  .feature-box{
    width: auto;
    font-size: 14px;
  }

  .hero-buttons{
    margin-top: 30px;
  }

  .btn-call,
  .btn-whatsapp{
    width: 100%;
    justify-content: center;
  }
}
/* ==============================
   STATS SECTION
============================== */

:root{
  --primary-blue: #187FB1;
  --primary-pink: #D91C5C;
}

.stats-section{
  padding: 70px 20px;
  background: #f8fafc;
}

.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */

.stat-card{
  background: rgba(255,255,255,0.85);

  border: 1px solid rgba(24,127,177,0.10);

  border-radius: 22px;

  padding: 42px 25px;
  text-align: center;

  position: relative;
  overflow: hidden;

  transition: 0.35s ease;

  box-shadow:
    0 10px 35px rgba(24,127,177,0.08);

  backdrop-filter: blur(10px);
}


/* HOVER */

.stat-card:hover{
  transform: translateY(-8px);

  box-shadow:
    0 18px 45px rgba(24,127,177,0.16);
}

/* NUMBER */

.stat-card h2{
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;

  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-pink)
  );
 background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */

.stat-card p{
  font-size: 1.05rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* MOBILE */

@media(max-width:992px){

  .stats-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px){

  .stats-section{
    padding: 50px 15px;
  }

  .stats-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stat-card{
    padding: 35px 20px;
  }

  .stat-card h2{
    font-size: 2.4rem;
  }
}


/* ==============================
   GPS ABOUT SECTION
============================== */

.gps-about-section{
  padding: 90px 20px;
  background: #ffffff;
}

.gps-about-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* TAG */

.section-tag{
  display: inline-block;

  padding: 10px 18px;
  border-radius: 50px;

  background: rgba(24,127,177,0.08);
  color: #187FB1;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 20px;
}

/* TITLE */

.gps-about-content h2{
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.15;
  font-weight: 800;

  color: #111827;

  margin-bottom: 28px;
}

.gps-about-content h2 span{
  background: linear-gradient(
    135deg,
    #187FB1,
    #D91C5C
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */

.gps-about-content p{
  font-size: 1.08rem;
  line-height: 1.9;
  color: #4b5563;

  margin-bottom: 24px;
}

/* FEATURES */

.gps-feature-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;

  margin: 35px 0;
}

.gps-feature-item{
  background: #f8fafc;

  border: 1px solid rgba(24,127,177,0.08);

  padding: 15px 18px;
  border-radius: 14px;

  font-weight: 600;
  color: #1f2937;

  transition: 0.3s ease;
}

.gps-feature-item:hover{
  transform: translateY(-4px);

  border-color: rgba(217,28,92,0.20);

  box-shadow:
    0 10px 25px rgba(24,127,177,0.08);
}

/* IMAGE */

.gps-about-image img{
  width: 100%;
  border-radius: 24px;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.10);

  object-fit: cover;
}

/* BUTTONS */

.gps-about-buttons{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;

  margin-top: 35px;
}

.gps-btn-call,
.gps-btn-whatsapp{
  text-decoration: none;

  padding: 15px 28px;
  border-radius: 14px;

  font-size: 16px;
  font-weight: 700;

  transition: 0.3s ease;
}

.gps-btn-call{
  background: linear-gradient(
    135deg,
    #187FB1,
    #0f6f9b
  );

  color: #fff;
}

.gps-btn-whatsapp{
  background: linear-gradient(
    135deg,
    #D91C5C,
    #b8134c
  );

  color: #fff;
}

.gps-btn-call:hover,
.gps-btn-whatsapp:hover{
  transform: translateY(-4px);
  color: #fff;
}

/* MOBILE */

@media(max-width:992px){

  .gps-about-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gps-about-image{
    order: -1;
  }
}

@media(max-width:768px){

  .gps-about-section{
    padding: 70px 15px;
  }

  .gps-about-content h2{
    font-size: 2.3rem;
  }

  .gps-about-content p{
    font-size: 1rem;
    line-height: 1.8;
  }

  .gps-feature-list{
    grid-template-columns: 1fr;
  }

  .gps-about-buttons{
    flex-direction: column;
  }

  .gps-btn-call,
  .gps-btn-whatsapp{
    width: 100%;
    text-align: center;
  }
}





/* ==============================
   GPS ABOUT SECTION
============================== */

.gps-about-section{
  padding: 90px 20px;
  background: #ffffff;
}

.gps-about-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* TAG */

.section-tag{
  display: inline-block;

  padding: 10px 18px;
  border-radius: 50px;

  background: rgba(24,127,177,0.08);
  color: #187FB1;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 20px;
}

/* TITLE */

.gps-about-content h2{
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.15;
  font-weight: 800;

  color: #111827;

  margin-bottom: 28px;
}

.gps-about-content h2 span{
  background: linear-gradient(
    135deg,
    #187FB1,
    #D91C5C
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */

.gps-about-content p{
  font-size: 1.08rem;
  line-height: 1.9;
  color: #4b5563;

  margin-bottom: 24px;
}

/* FEATURES */

.gps-feature-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;

  margin: 35px 0;
}

.gps-feature-item{
  background: #f8fafc;

  border: 1px solid rgba(24,127,177,0.08);

  padding: 15px 18px;
  border-radius: 14px;

  font-weight: 600;
  color: #1f2937;

  transition: 0.3s ease;
}

.gps-feature-item:hover{
  transform: translateY(-4px);

  border-color: rgba(217,28,92,0.20);

  box-shadow:
    0 10px 25px rgba(24,127,177,0.08);
}

/* IMAGE */

.gps-about-image img{
  width: 100%;
  border-radius: 24px;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.10);

  object-fit: cover;
}

/* BUTTONS */

.gps-about-buttons{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;

  margin-top: 35px;
}

.gps-btn-call,
.gps-btn-whatsapp{
  text-decoration: none;

  padding: 15px 28px;
  border-radius: 14px;

  font-size: 16px;
  font-weight: 700;

  transition: 0.3s ease;
}

.gps-btn-call{
  background: linear-gradient(
    135deg,
    #187FB1,
    #0f6f9b
  );

  color: #fff;
}

.gps-btn-whatsapp{
  background: linear-gradient(
    135deg,
    #D91C5C,
    #b8134c
  );

  color: #fff;
}

.gps-btn-call:hover,
.gps-btn-whatsapp:hover{
  transform: translateY(-4px);
  color: #fff;
}

/* MOBILE */

@media(max-width:992px){

  .gps-about-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gps-about-image{
    order: -1;
  }
}

@media(max-width:768px){

  .gps-about-section{
    padding: 70px 15px;
  }

  .gps-about-content h2{
    font-size: 2.3rem;
  }

  .gps-about-content p{
    font-size: 1rem;
    line-height: 1.8;
  }

  .gps-feature-list{
    grid-template-columns: 1fr;
  }

  .gps-about-buttons{
    flex-direction: column;
  }

  .gps-btn-call,
  .gps-btn-whatsapp{
    width: 100%;
    text-align: center;
  }
}

/* ==============================
   WHY KALKOM SECTION
============================== */

.why-kalkom-section{
  padding: 90px 20px;
  background: #ffffff;
}

/* HEADING */

.why-heading{
  text-align: center;
  margin-bottom: 70px;
}

.why-heading h2{
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.why-heading h2 span{
  background: linear-gradient(
    135deg,
    #187FB1,
    #D91C5C
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */

.why-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */

.why-image img{
  width: 100%;
  border-radius: 12px;
  object-fit: cover;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.10);
}

/* CONTENT */

/* CONTENT */

.why-content{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-content p{
  font-size: 1.08rem;
  line-height: 2;
  color: #374151;
  margin: 0;
}

.why-content strong{
  color: #111827;
  font-weight: 700;
}

/* BOX */

.why-box{
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.why-box:last-child{
  border-bottom: none;
  padding-bottom: 0;
}

.why-box h3{
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;

  margin-bottom: 14px;
}

.why-box p{
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4b5563;
}

/* MOBILE */

@media(max-width:992px){

  .why-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-image{
    order: -1;
  }
}

@media(max-width:768px){

  .why-kalkom-section{
    padding: 70px 15px;
  }

  .why-heading{
    margin-bottom: 45px;
  }

  .why-heading h2{
    font-size: 2.3rem;
  }

  .why-box h3{
    font-size: 1.25rem;
  }

  .why-box p{
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* ==============================
   GPS PRICING SECTION
============================== */

.gps-pricing-section{
  padding: 80px 20px;
  background: #ffffff;
}

/* HEADING */

.pricing-heading{
  text-align: center;
  max-width: 800px;
  margin: auto auto 55px;
}

.pricing-heading h2{
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #111827;

  margin-bottom: 18px;
}

.pricing-heading h2 span{
  background: linear-gradient(
    135deg,
    #187FB1,
    #D91C5C
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-heading p{
  font-size: 1.02rem;
  line-height: 1.8;
  color: #6b7280;
}

/* GRID */

.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */

.pricing-card{
  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 22px;

  padding: 28px 24px;

  position: relative;

  transition: 0.35s ease;

  box-shadow:
    0 10px 30px rgba(24,127,177,0.06);
}

.pricing-card:hover{
  transform: translateY(-8px);

  box-shadow:
    0 18px 40px rgba(24,127,177,0.12);
}

/* POPULAR */

.popular-card{
  border: 2px solid #187FB1;
}

.popular-badge{
  position: absolute;
  top: 18px;
  right: 18px;

  background: linear-gradient(
    135deg,
    #187FB1,
    #D91C5C
  );

  color: #fff;

  font-size: 11px;
  font-weight: 700;

  padding: 7px 12px;
  border-radius: 50px;
}

/* TITLE */

.pricing-card h3{
  font-size: 1.45rem;
  font-weight: 700;
  color: #111827;

  margin-bottom: 18px;
}

/* ==============================
   GPS SIMPLE CARDS
============================== */

.gps-card-section{
  padding: 80px 20px;
  background: #ffffff;
}

/* GRID */

.gps-card-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}

/* CARD */

.gps-card{
  border: 1px solid #d1d5db;
  border-radius: 18px;

  padding: 34px 28px;

  background: #fff;

  transition: 0.3s ease;
}

.gps-card:hover{
  transform: translateY(-5px);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

/* TITLE */

.gps-card h3{
  font-size: 2rem;
  font-weight: 500;
  color: #111827;

  margin-bottom: 8px;
}

/* SUBTITLE */

.card-subtitle{
  color: #6b7280;
  font-size: 1.08rem;

  margin-bottom: 28px;
}

/* PRICE */

.card-price{
  font-size: 4rem;
  font-weight: 700;

  color: #B91B62;

  margin-bottom: 8px;
  line-height: 1;
}

.price-text{
  color: #6b7280;
  font-size: 1.02rem;

  margin-bottom: 34px;
}

/* AREA */

.card-area{
  font-size: 1.08rem;
  line-height: 1.8;

  color: #6b7280;
}

.card-area strong{
  color: #111827;
}

/* MOBILE */

@media(max-width:992px){

  .gps-card-grid{
    grid-template-columns: 1fr;
  }
}

@media(max-width:768px){

  .gps-card-section{
    padding: 70px 15px;
  }

  .gps-card{
    padding: 28px 22px;
  }

  .gps-card h3{
    font-size: 1.7rem;
  }

  .card-price{
    font-size: 3rem;
  }
}

/* ==============================
   GPS FEATURES SECTION
============================== */

.gps-features-section{
  padding: 90px 20px;
  background: #ffffff;
}

/* HEADING */

.features-heading{
  text-align: center;
  max-width: 1100px;
  margin: auto auto 55px;
}

.features-heading h2{
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1.2;
  font-weight: 800;

  color: #111827;

  margin-bottom: 28px;
}

.features-heading h2 span{
  background: linear-gradient(
    135deg,
    #187FB1,
    #D91C5C
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-heading p{
  font-size: 1.08rem;
  line-height: 2;
  color: #4b5563;

  max-width: 1000px;
  margin: auto auto 30px;
}

.features-heading h4{
  font-size: 1.6rem;
  font-weight: 700;
  color: #374151;
}




/* FEATURES GRID */

.features-grid{
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* 8 cards in one row */
  gap: 18px;
}

/* CARD */

.feature-card{
  border: 1px solid #d1d5db;
  border-radius: 14px;

  height: 120px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 14px 10px;

  background: #fff;

  transition: 0.3s ease;
}

.feature-card:hover{
  transform: translateY(-5px);

  border-color: #187FB1;

  box-shadow:
    0 10px 25px rgba(24,127,177,0.08);
}

/* ICON */

.feature-card i{
  font-size: 1.6rem;
  color: #111827;

  margin-bottom: 10px;
}

/* TEXT */

.feature-card span{
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;

  color: #1f2937;
}

/* LAPTOP */

@media(max-width:1400px){

  .features-grid{
    grid-template-columns: repeat(4,1fr);
  }
}

/* TABLET */

@media(max-width:992px){

  .features-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

/* MOBILE */

@media(max-width:768px){

  .features-grid{
    grid-template-columns: 1fr;
  }

  .feature-card{
    height: 110px;
  }
}

/* ==============================
   COVERAGE SECTION
============================== */

.coverage-section{
  padding: 90px 20px;
  background: #ffffff;
}

/* HEADING */

.coverage-heading{
  text-align: center;
  margin-bottom: 55px;
}

.coverage-heading h2{
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.2;
  font-weight: 800;

  color: #111827;
}

.coverage-heading h2 span{
  background: linear-gradient(
    135deg,
    #187FB1,
    #D91C5C
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CONTENT */

.coverage-content{
  max-width: 1100px;
  margin: auto;
}

.coverage-content ul{
  padding-left: 30px;
  margin: 0;
}

.coverage-content ul li{
  font-size: 1.28rem;
  line-height: 2;

  color: #1f2937;

  margin-bottom: 20px;
}

.coverage-content ul li strong{
  color: #111827;
  font-weight: 700;
}

/* MOBILE */

@media(max-width:768px){

  .coverage-section{
    padding: 70px 15px;
  }

  .coverage-heading{
    margin-bottom: 40px;
  }

  .coverage-heading h2{
    font-size: 2.4rem;
  }

  .coverage-content ul{
    padding-left: 22px;
  }

  .coverage-content ul li{
    font-size: 1rem;
    line-height: 1.9;
  }
}

/* CARD */

.location-card{
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;

  transition: 0.3s ease;
}

.location-card:hover{
  transform: translateY(-6px);

  box-shadow:
    0 18px 35px rgba(0,0,0,0.08);
}

/* IMAGE */

.location-img{
  position: relative;
  height: 180px;
  overflow: hidden;
}

/* IMAGES */

.location-img img{
  position: absolute;
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.5s ease;
}

/* HOVER IMAGE */

.hover-img{
  opacity: 0;
  transform: scale(1.08);
}

.location-card:hover .hover-img{
  opacity: 1;
  transform: scale(1);
}

.location-card:hover .main-img{
  opacity: 0;
}

/* BADGE */

.coverage-badge{
  position: absolute;
  top: 12px;
  right: 12px;

  background: #fff;
  color: #b100ff;

  border: 2px solid #b100ff;

  padding: 5px 12px;

  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;

  z-index: 2;
}

/* OVERLAY */

.img-overlay{
  position: absolute;
  left: 16px;
  bottom: 14px;

  z-index: 2;

  color: #fff;
}

.img-overlay h4{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.img-overlay p{
  margin: 0;
  font-size: 15px;
}

/* DOT */

.dot{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-block;
}

.blue{
  background: #144d78;
}

.green{
  background: #41b61e;
}

.orange{
  background: orange;
}

/* EST */

.est-badge{
  border: 1px solid #d9d9d9;

  padding: 10px 18px;

  border-radius: 40px;

  font-size: 14px;
}

/* TEXT */

.city-title{
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.city-subtitle{
  font-size: 18px;
  color: #4b5563;
}

.city-desc{
  font-size: 17px;
  line-height: 1.8;
  color: #374151;

  margin: 24px 0;
}

.pop-text{
  color: #374151;
  font-size: 17px;
}

.view-btn{
  width: 100%;
  height: 52px;

  border-radius: 14px;

  background: linear-gradient(
    135deg,
    #6C63FF,
    #D91C5C
  );

  color: #fff;

  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 18px;
  font-weight: 600;

  transition: 0.3s ease;

  border: none;
}

/* HOVER */

.view-btn:hover{
  background: linear-gradient(
    135deg,
    #5a52f5,
    #c2185b
  );

  color: #fff;

  transform: translateY(-2px);

  box-shadow:
    0 10px 25px rgba(217,28,92,0.25);
}


/* ==============================
   CTA SECTION - LIGHT VERSION
============================== */

:root{
  --accent-1: #187FB1;
  --accent-2: #6C63FF;
  --accent-3: #D91C5C;
}

.cta-section{
  padding: 90px 20px;
  background: #f8fafc;
}

/* BOX */

.cta-box{
  max-width: 1250px;
  margin: auto;

  background: linear-gradient(
    135deg,
    #eef5ff,
    #f7efff,
    #fff2f7
  );

  border: 1px solid rgba(108,99,255,0.12);

  border-radius: 28px;

  padding: 75px 70px;

  text-align: center;

  position: relative;
  overflow: hidden;

  box-shadow:
    0 15px 40px rgba(108,99,255,0.08);
}

/* LIGHT CIRCLE */

.cta-box::before{
  content: '';

  position: absolute;
  top: -120px;
  right: -120px;

  width: 320px;
  height: 320px;

  background: rgba(217,28,92,0.06);

  border-radius: 50%;
}

/* HEADING */

.cta-box h2{
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.2;
  font-weight: 800;

  color: #111827;

  margin-bottom: 30px;

  position: relative;
  z-index: 2;
}

/* TEXT */

.cta-text{
  max-width: 980px;
  margin: auto;

  font-size: 1.2rem;
  line-height: 1.9;

  color: #475569;

  margin-bottom: 42px;

  position: relative;
  z-index: 2;
}

/* BUTTONS */

.cta-buttons{
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;

  margin-bottom: 42px;

  position: relative;
  z-index: 2;
}

/* BUTTON */

.cta-btn{
  height: 60px;

  padding: 0 34px;

  border-radius: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  text-decoration: none;

  font-size: 1.12rem;
  font-weight: 700;

  transition: 0.3s ease;
}

/* CALL BUTTON */

.call-btn{
  background: linear-gradient(
    135deg,
    var(--accent-2),
    var(--accent-3)
  );

  color: #fff;

  box-shadow:
    0 12px 28px rgba(108,99,255,0.18);
}

.call-btn:hover{
  transform: translateY(-3px);

  color: #fff;

  box-shadow:
    0 18px 35px rgba(217,28,92,0.18);
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
  background: #fff;

  color: var(--accent-3);

  border: 1px solid rgba(217,28,92,0.15);
}

.whatsapp-btn:hover{
  background: #fff5fa;

  color: var(--accent-3);

  transform: translateY(-3px);
}

/* ICONS */

.cta-btn i{
  font-size: 18px;
}

/* BOTTOM TEXT */

.cta-bottom{
  max-width: 980px;
  margin: auto;

  font-size: 1.15rem;
  line-height: 1.9;

  color: #475569;

  position: relative;
  z-index: 2;
}

/* MOBILE */

@media(max-width:768px){

  .cta-section{
    padding: 70px 15px;
  }

  .cta-box{
    padding: 55px 28px;
    border-radius: 24px;
  }

  .cta-box h2{
    font-size: 2.2rem;
  }

  .cta-text,
  .cta-bottom{
    font-size: 1rem;
    line-height: 1.8;
  }

  .cta-buttons{
    gap: 16px;
  }

  .cta-btn{
    width: 100%;
    height: 56px;

    font-size: 1rem;
  }
}

/* ==========================
   FAQ SECTION
========================== */

.faq-section{
  background:#f8fafc;
}

.faq-title{
  font-size: clamp(2rem,4vw,3.5rem);
  font-weight:800;
  color:#111827;
}

.faq-title span{
  background:linear-gradient(
    135deg,
    #187FB1,
    #6C63FF,
    #D91C5C
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.faq-subtitle{
  color:#64748b;
  font-size:1.1rem;
  margin-top:10px;
}

.custom-faq{
  max-width:1100px;
  margin:auto;
}

.custom-faq .accordion-item{
  border:none;
  margin-bottom:16px;
  border-radius:16px !important;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.custom-faq .accordion-button{
  background:#fff;
  font-size:1.15rem;
  font-weight:700;
  padding:22px 26px;
  color:#111827;
}

.custom-faq .accordion-button:not(.collapsed){
  background:linear-gradient(
    135deg,
    #187FB1,
    #6C63FF,
    #D91C5C
  );
  color:#fff;
  box-shadow:none;
}

.custom-faq .accordion-button:focus{
  box-shadow:none;
}

.custom-faq .accordion-body{
  padding:25px 28px;
  font-size:1rem;
  line-height:1.9;
  color:#475569;
  background:#fff;
}

.accordion-button::after{
  transform:scale(1.15);
}

@media(max-width:768px){

  .faq-title{
    font-size:2rem;
  }

  .custom-faq .accordion-button{
    font-size:1rem;
    padding:18px;
  }

  .custom-faq .accordion-body{
    padding:18px;
  }
}