*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Manrope', sans-serif;
}


h1,
h2,
h3,
h4,
h5,
h6{
  font-family: 'Outfit', sans-serif;
}


.hero-section{
  width:100%;
  min-height:100vh;
  position:relative;
  overflow:hidden;

  background-image:url("images/hero.jpg.jpeg");
  background-size:cover;

  /* IMPORTANT */
  background-position:center center;
  background-repeat:no-repeat;

  display:flex;
  align-items:center;
}



.hero-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to right,
    rgba(0,0,0,0.52),
    rgba(0,0,0,0.22),
    rgba(0,0,0,0.08)
  );
}

/* =========================
   CONTAINER
========================= */

.container{
  width:100%;
  max-width:1250px;
  margin:auto;
  padding:0 20px;
  position:relative;
  z-index:2;
}

/* =========================
   TOP BADGE
========================= */

.top-badge{
  margin-bottom:25px;
}

.top-badge span{
  display:inline-flex;
  align-items:center;
  gap:10px;

  background:rgba(255,255,255,0.55);
  border:1px solid rgba(255,255,255,0.35);

  color:#06665f;

  padding:12px 22px;
  border-radius:50px;

  font-size:14px;
  font-weight:600;

  backdrop-filter:blur(8px);
}

/* =========================
   HERO CONTENT
========================= */

.hero-content{
  max-width:720px;
}

/* =========================
   HEADING
========================= */

.hero-content h1{
  color:#ffffff;

  font-size:78px;
  line-height:1.03;
  font-weight:800;

  margin-bottom:24px;

  letter-spacing:-2px;

  text-shadow:
    0 4px 18px rgba(0,0,0,0.28),
    0 2px 8px rgba(0,0,0,0.20);
}

/* =========================
   PARAGRAPH
========================= */

.hero-content p{
  color:#ffffff;

  font-size:20px;
  line-height:1.9;

  margin-bottom:38px;
  max-width:650px;

  font-weight:500;

  text-shadow:
    0 2px 10px rgba(0,0,0,0.22);
}

/* =========================
   TAGS
========================= */

.tour-tags{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:42px;
}

.tag{
  background:rgba(5, 28, 131, 0.75);
  color:#fff;

  padding:13px 22px;
  border-radius:50px;

  font-size:14px;
  font-weight:600;

  backdrop-filter:blur(8px);

  border:1px solid rgba(255,255,255,0.12);

  box-shadow:none;

  transition:0.3s ease;
}

.tag:hover{
  background:#0b2d63;
  transform:translateY(-2px);
}

/* =========================
   BUTTONS
========================= */

.hero-buttons{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{
  background:#08a045;
  color:#fff;
  text-decoration:none;

  padding:18px 34px;
  border-radius:60px;

  font-size:17px;
  font-weight:700;

  transition:0.3s ease;

  box-shadow:0 5px 14px rgba(8,160,69,0.16);
}

.whatsapp-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 18px rgba(8,160,69,0.18);
}

/* =========================
   SECOND BUTTON
========================= */

.secondary-btn{
  background:rgba(8, 14, 65, 0.55);

  border:1.5px solid rgba(255,255,255,0.35);

  color:#ffffff;
  text-decoration:none;

  padding:18px 34px;
  border-radius:60px;

  font-size:17px;
  font-weight:700;

  backdrop-filter:blur(10px);

  transition:0.3s ease;
}

.secondary-btn:hover{
  background:#ffffff;
  color:#111;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

  .hero-section{
    background-position:68% center;
  }

  .hero-content h1{
    font-size:58px;
  }

  .hero-content p{
    font-size:18px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .hero-section{
    min-height:auto;

    padding:90px 0 70px;

    /* IMPORTANT */
    background-position:72% center;
    background-size:cover;
  }

  /* DARKER OVERLAY FOR MOBILE */

  .hero-overlay{
    background:linear-gradient(
      to right,
      rgba(0,0,0,0.62),
      rgba(0,0,0,0.34),
      rgba(0,0,0,0.14)
    );
  }

  .hero-content{
    max-width:100%;
  }

  .hero-content h1{
    font-size:44px;
    line-height:1.12;
    margin-bottom:18px;
  }

  .hero-content p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;
  }

  .tour-tags{
    gap:12px;
    margin-bottom:32px;
  }

  .tag{
    width:100%;
    justify-content:center;
    text-align:center;

    font-size:13px;
    padding:13px 18px;
  }

  .hero-buttons{
    width:100%;
    flex-direction:column;
    align-items:stretch;
  }

  .whatsapp-btn,
  .secondary-btn{
    width:100%;
    text-align:center;
    justify-content:center;
  }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

  .hero-section{
    padding:75px 0 60px;

    /* IMAGE SHOW */
    background-position:74% center;
  }

  .hero-content h1{
    font-size:36px;
    line-height:1.15;

    letter-spacing:-1px;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.9;
  }

  .top-badge span{
    font-size:12px;
    padding:10px 16px;
  }

  .tag{
    font-size:13px;
    padding:12px 16px;
  }

  .whatsapp-btn,
  .secondary-btn{
    padding:17px 20px;
    font-size:16px;
  }

}

/* MODERN TOUR PACKAGES */

.tour-packages-section{
  width:100%;
  padding:110px 0;
  background:#f5f8fc;
  overflow:hidden;
}

/* HEADING */

.section-heading{
  text-align:center;
  margin-bottom:55px;
}

.small-title{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:#e8f6ee;
  color:#16834b;

  padding:12px 22px;

  border-radius:50px;

  font-size:14px;
  font-weight:600;

  margin-bottom:20px;
}

.section-heading h2{
  font-size:58px;
  line-height:1.1;
  color:#0f172a;

  margin-bottom:18px;
}

.section-heading p{
  max-width:760px;
  margin:auto;

  color:#5f6878;

  font-size:18px;
  line-height:1.9;
}

/* =========================
   TABS
========================= */

.package-tabs{
  width:100%;

  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;

  gap:16px;

  margin-bottom:60px;
}

.tab-btn{
  border:none;
  outline:none;

  background:#ffffff;

  color:#0f172a;

  padding:16px 28px;

  border-radius:60px;

  font-size:15px;
  font-weight:600;

  cursor:pointer;

  transition:0.3s ease;

  box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.tab-btn:hover{
  transform:translateY(-3px);
}

.tab-btn.active{
  background:#0b2d63;
  color:#fff;
}

/* =========================
   PACKAGES WRAPPER
========================= */

.packages-wrapper{
  display:none;

  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

.packages-wrapper.active{
  display:grid;
}

/* =========================
   MODERN PACKAGE CARD
========================= */

.modern-package-card{
  background:#ffffff;

  border-radius:32px;

  overflow:hidden;

  transition:0.4s ease;

  box-shadow:0 15px 45px rgba(15,23,42,0.06);

  position:relative;

  display:flex;
  flex-direction:column;

  height:100%;
}

.modern-package-card:hover{
  transform:translateY(-10px);
}

/* IMAGE */

.modern-package-image{
  width:100%;
  height:270px;
  overflow:hidden;
}

.modern-package-image img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.6s ease;
}

.modern-package-card:hover img{
  transform:scale(1.08);
}

/* CONTENT */

.modern-package-content{
  padding:28px;

  display:flex;
  flex-direction:column;

  flex:1;
}

/* BADGE */

.package-badge{
  display:inline-block;

  background:#e9f2ff;
  color:#0b2d63;

  padding:10px 16px;

  border-radius:40px;

  font-size:13px;
  font-weight:700;

  margin-bottom:16px;

  width:max-content;
}

/* TITLE */

.modern-package-content h3{
  font-size:34px;
  line-height:1.2;

  color:#0f172a;

  margin-bottom:14px;

  min-height:auto;
}

/* DESCRIPTION */

.modern-package-content p{
  color:#5f6878;

  font-size:16px;
  line-height:1.8;

  margin-bottom:22px;

  min-height:72px;
}

/* FEATURES */

.package-features{
  display:flex;
  flex-wrap:wrap;
  gap:12px;

  margin-bottom:24px;
}

.package-features span{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:#f3f6fb;

  color:#24324a;

  padding:11px 16px;

  border-radius:14px;

  font-size:14px;
  font-weight:600;

  border:1px solid #e4ebf5;

  transition:0.3s ease;
}

.package-features span:hover{
  background:#0b2d63;
  color:#ffffff;
  transform:translateY(-2px);
}

.package-features span::before{
  content:"✓";
  margin-right:8px;
  font-size:13px;
  font-weight:700;
}

/* BUTTON */

.modern-quote-btn{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;

  background:linear-gradient(
    135deg,
    #0b2d63,
    #184a99
  );

  color:#fff;

  padding:17px;

  border-radius:18px;

  font-size:16px;
  font-weight:700;

  transition:0.3s ease;

  margin-top:auto;
}

.modern-quote-btn:hover{
  transform:translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

  .packages-wrapper{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .tour-packages-section{
    padding:80px 0;
  }

  .section-heading{
    margin-bottom:40px;
  }

  .section-heading h2{
    font-size:38px;
  }

  .section-heading p{
    font-size:16px;
  }

  .package-tabs{
    gap:12px;
    margin-bottom:40px;
  }

  .tab-btn{
    width:100%;
  }

  .packages-wrapper{
    grid-template-columns:1fr;
  }

  .modern-package-image{
    height:240px;
  }

  .modern-package-content{
    padding:24px;
  }

  .modern-package-content h3{
    font-size:28px;
    margin-bottom:12px;
  }

  .modern-package-content p{
    min-height:auto;
    margin-bottom:20px;
  }

}

@media(max-width:480px){

  .section-heading h2{
    font-size:30px;
  }

  .modern-package-content h3{
    font-size:24px;
  }

  .package-features{
    gap:10px;
  }

  .package-features span{
    font-size:13px;
    padding:10px 14px;
  }

}

/* =========================
   MODERN WHY SECTION
========================= */

.why-modern-section{
  width:100%;
  padding:100px 0;
  background:#ffffff;
  overflow:hidden;
}

.container{
  width:100%;
  max-width:1250px;
  margin:auto;
  padding:0 20px;
}

/* TOP HEADING */

.why-top-heading{
  text-align:center;
  max-width:850px;
  margin:auto;
  margin-bottom:70px;
}

.why-badge{
  display:inline-block;
  background:#eef8f1;
  color:#1f8f4d;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
}

.why-top-heading h2{
  font-size:58px;
  line-height:1.15;
  color:#111;
  margin-bottom:22px;
}

.why-top-heading p{
  color:#666;
  font-size:17px;
  line-height:1.9;
}

/* MAIN WRAPPER */

.why-modern-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE */

.why-image-area{
  position:relative;
}

.why-image-area img{
  width:100%;
  height:720px;
  object-fit:cover;
  border-radius:35px;
  display:block;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* EXPERIENCE BOX */

.experience-box{
  position:absolute;
  left:30px;
  bottom:30px;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  padding:24px 28px;
  border-radius:24px;
  max-width:320px;
  box-shadow:0 15px 40px rgba(0,0,0,0.10);
  display: none;
}

.experience-box h3{
  font-size:30px;
  color:#111;
  margin-bottom:12px;
}

.experience-box p{
  color:#666;
  line-height:1.7;
  font-size:15px;
}

/* FEATURES */

.why-features-area{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.modern-feature-card{
  background:#f8f8f8;
  border-radius:28px;
  padding:30px;
  display:flex;
  align-items:flex-start;
  gap:24px;
  transition:0.3s ease;
  border:1px solid transparent;
}

.modern-feature-card:hover{
  transform:translateY(-5px);
  border-color:#25D366;
  background:#fff;
}

.modern-icon{
  width:75px;
  height:75px;
  min-width:75px;
  background:#24324a;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.modern-icon i{
  color:#fff;
  font-size:30px;
}

.modern-content h3{
  font-size:28px;
  color:#111;
  margin-bottom:12px;
  line-height:1.3;
}

.modern-content p{
  color:#666;
  line-height:1.8;
  font-size:16px;
}

/* BUTTON */

.why-btn-wrap{
  text-align:center;
  margin-top:60px;
}

.modern-why-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  padding:18px 34px;
  border-radius:60px;
  font-size:17px;
  font-weight:600;
  transition:0.3s ease;
}

.modern-why-btn:hover{
  transform:translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .why-modern-wrapper{
    grid-template-columns:1fr;
  }

  .why-image-area img{
    height:550px;
  }

}

@media(max-width:768px){

  .why-modern-section{
    padding:70px 0;
  }

  .why-top-heading{
    margin-bottom:45px;
  }

  .why-top-heading h2{
    font-size:38px;
  }

  .why-top-heading p{
    font-size:16px;
  }

  .why-modern-wrapper{
    gap:40px;
  }

  .why-image-area img{
    height:420px;
  }

  .experience-box{
    left:20px;
    right:20px;
    bottom:20px;
    max-width:100%;
    padding:20px;
    display: none;
  }

  .experience-box h3{
    font-size:24px;
  }

  .modern-feature-card{
    padding:24px;
    gap:18px;
  }

  .modern-content h3{
    font-size:24px;
  }

}

@media(max-width:480px){

  .why-top-heading h2{
    font-size:32px;
  }

  .why-image-area img{
    height:350px;
  }

  .modern-feature-card{
    flex-direction:column;
  }

  .modern-icon{
    width:65px;
    height:65px;
    min-width:65px;
  }

  .modern-icon i{
    font-size:26px;
  }

  .modern-content h3{
    font-size:22px;
  }

  .modern-content p{
    font-size:15px;
  }

  .modern-why-btn{
    width:100%;
  }

}

/* =========================
   MODERN PROCESS SECTION
========================= */

.modern-process-section{
  width:100%;
  padding:100px 0;
  background:#ffffff;
  overflow:hidden;
}

.container{
  width:100%;
  max-width:1250px;
  margin:auto;
  padding:0 20px;
}

/* HEADING */

.modern-process-heading{
  text-align:center;
  max-width:850px;
  margin:auto;
  margin-bottom:70px;
}

.process-badge{
  display:inline-block;
  background:#eef8f1;
  color:#1f8f4d;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:20px;
}

.modern-process-heading h2{
  font-size:58px;
  line-height:1.15;
  color:#111;
  margin-bottom:22px;
}

.modern-process-heading p{
  color:#666;
  font-size:17px;
  line-height:1.9;
}

/* PROCESS GRID */

.modern-process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

/* CARD */

.modern-process-card{
  position:relative;
  background:#f8f8f8;
  border-radius:30px;
  padding:35px 28px;
  transition:0.35s ease;
  border:1px solid transparent;
  overflow:hidden;
}

.modern-process-card:hover{
  transform:translateY(-8px);
  border-color:#25D366;
  background:#ffffff;
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

/* TOP */

.process-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:28px;
}

.process-icon{
  width:78px;
  height:78px;
  background:#25D366;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.process-icon i{
  color:#fff;
  font-size:32px;
}

.process-number{
  font-size:50px;
  font-weight:700;
  color:#065096a4;
  line-height:1;
}

/* CONTENT */

.modern-process-card h3{
  font-size:32px;
  color:#111;
  line-height:1.25;
  margin-bottom:18px;
}

.modern-process-card p{
  color:#666;
  line-height:1.9;
  font-size:15px;
}

/* BUTTON */

.modern-process-btn-wrap{
  text-align:center;
  margin-top:60px;
}

.modern-process-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  padding:18px 34px;
  border-radius:60px;
  font-size:17px;
  font-weight:600;
  transition:0.3s ease;
}

.modern-process-btn:hover{
  transform:translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .modern-process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .modern-process-heading h2{
    font-size:48px;
  }

}

@media(max-width:768px){

  .modern-process-section{
    padding:70px 0;
  }

  .modern-process-heading{
    margin-bottom:45px;
  }

  .modern-process-heading h2{
    font-size:38px;
  }

  .modern-process-heading p{
    font-size:16px;
  }

  .modern-process-grid{
    grid-template-columns:1fr;
  }

  .modern-process-card{
    padding:28px 24px;
  }

  .modern-process-card h3{
    font-size:28px;
  }

  .process-icon{
    width:68px;
    height:68px;
  }

  .process-icon i{
    font-size:28px;
  }

}

@media(max-width:480px){

  .modern-process-heading h2{
    font-size:32px;
  }

  .modern-process-card h3{
    font-size:24px;
  }

  .process-number{
    font-size:42px;
  }

  .modern-process-btn{
    width:100%;
  }

}

/* =========================
   DHAM DESTINATIONS SECTION
========================= */

.dham-section{
  width:100%;
  padding:100px 0;
  background:#ffffff;
}

.dham-heading{
  text-align:center;
  margin-bottom:70px;
}

.dham-tag{
  display:inline-block;
  background:#eef8f1;
  color:#1f8f4d;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
}

.dham-heading h2{
  font-size:48px;
  line-height:1.2;
  color:#111;
  margin-bottom:18px;
}

.dham-heading p{
  max-width:760px;
  margin:auto;
  color:#666;
  font-size:17px;
  line-height:1.8;
}

.dham-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.dham-card{
  position:relative;
  height:500px;
  border-radius:30px;
  overflow:hidden;
}

.dham-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

.dham-card:hover img{
  transform:scale(1.08);
}

.dham-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.88),
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.1)
  );
}

.dham-content{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  padding:35px;
  z-index:2;
}

.location-tag{
  display:inline-block;
  background:rgba(255,255,255,0.18);
  backdrop-filter:blur(10px);
  color:#fff;
  padding:8px 16px;
  border-radius:40px;
  font-size:13px;
  margin-bottom:18px;
}

.dham-content h3{
  font-size:42px;
  color:#fff;
  margin-bottom:16px;
}

.dham-content p{
  color:#f1f1f1;
  line-height:1.8;
  margin-bottom:26px;
  max-width:450px;
}

.dham-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  padding:15px 28px;
  border-radius:50px;
  font-size:15px;
  font-weight:600;
  transition:0.3s ease;
}

.dham-btn:hover{
  transform:translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

  .dham-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .dham-section{
    padding:70px 0;
  }

  .dham-heading h2{
    font-size:36px;
  }

  .dham-card{
    height:420px;
  }

  .dham-content h3{
    font-size:34px;
  }

}

@media(max-width:480px){

  .dham-heading h2{
    font-size:30px;
  }

  .dham-card{
    height:380px;
  }

  .dham-content{
    padding:24px;
  }

  .dham-content h3{
    font-size:28px;
  }

  .dham-content p{
    font-size:14px;
  }

  .dham-btn{
    width:100%;
  }

}

/* =========================
   FAQ SECTION
========================= */

.faq-section{
  width:100%;
  padding:100px 0;
  background:#f7f8fa;
}

.faq-heading{
  text-align:center;
  margin-bottom:70px;
}

.faq-tag{
  display:inline-block;
  background:#eef8f1;
  color:#1f8f4d;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
}

.faq-heading h2{
  font-size:48px;
  line-height:1.2;
  color:#111;
  margin-bottom:18px;
}

.faq-heading p{
  max-width:760px;
  margin:auto;
  color:#666;
  font-size:17px;
  line-height:1.8;
}

.faq-wrapper{
  max-width:900px;
  margin:auto;
}

.faq-item{
  background:#fff;
  border-radius:22px;
  margin-bottom:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  outline:none;
  padding:26px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:20px;
  font-weight:600;
  cursor:pointer;
  color:#111;
  text-align:left;
}

.faq-question span{
  font-size:28px;
  color:#25D366;
  transition:0.3s ease;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
}

.faq-answer p{
  padding:0 30px 28px;
  color:#666;
  line-height:1.8;
  font-size:16px;
}

.faq-item.active .faq-answer{
  max-height:250px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

.faq-btn-wrap{
  text-align:center;
  margin-top:50px;
}

.faq-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  padding:18px 36px;
  border-radius:60px;
  font-size:17px;
  font-weight:600;
  transition:0.3s ease;
}

.faq-btn:hover{
  transform:translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .faq-section{
    padding:70px 0;
  }

  .faq-heading h2{
    font-size:36px;
  }

  .faq-question{
    font-size:18px;
    padding:22px;
  }

  .faq-answer p{
    padding:0 22px 24px;
    font-size:15px;
  }

}

@media(max-width:480px){

  .faq-heading h2{
    font-size:30px;
  }

  .faq-question{
    font-size:16px;
    line-height:1.5;
  }

  .faq-btn{
    width:100%;
  }

}


/* =========================
   PREMIUM CTA SECTION
========================= */

.premium-cta-section{
  width:100%;
  padding:110px 0 70px;
  background:#f5f8fc;
  overflow:hidden;
}

.container{
  width:100%;
  max-width:1250px;
  margin:auto;
  padding:0 20px;
}

/* CTA WRAPPER */

.premium-cta-wrapper{
  background:linear-gradient(
    135deg,
    #0b2d63,
    #123d82
  );

  border-radius:40px;

  padding:70px;

  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;

  align-items:center;

  overflow:hidden;

  position:relative;
}

/* LIGHT EFFECT */

.premium-cta-wrapper::before{
  content:"";
  position:absolute;

  width:450px;
  height:450px;

  background:rgba(255,255,255,0.08);

  border-radius:50%;

  top:-180px;
  right:-120px;
}

/* CONTENT */

.premium-cta-content{
  position:relative;
  z-index:2;
}

.premium-cta-badge{
  display:inline-block;

  background:rgba(255,255,255,0.14);

  color:#ffffff;

  padding:12px 22px;

  border-radius:50px;

  font-size:14px;
  font-weight:600;

  margin-bottom:24px;

  backdrop-filter:blur(10px);
}

.premium-cta-content h2{
  color:#fff;

  font-size:62px;
  line-height:1.08;

  margin-bottom:24px;
}

.premium-cta-content p{
  color:rgba(255,255,255,0.82);

  font-size:18px;
  line-height:1.9;

  margin-bottom:38px;

  max-width:620px;
}

/* BUTTONS */

.premium-cta-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.premium-whatsapp-btn,
.premium-call-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  text-decoration:none;

  padding:18px 34px;

  border-radius:60px;

  font-size:16px;
  font-weight:700;

  transition:0.3s ease;
}

.premium-whatsapp-btn{
  background:#11b95c;
  color:#fff;
}

.premium-whatsapp-btn:hover{
  transform:translateY(-4px);
}

.premium-call-btn{
  background:rgba(255,255,255,0.12);

  border:1px solid rgba(255,255,255,0.15);

  color:#fff;
}

.premium-call-btn:hover{
  background:#fff;
  color:#111;
}

/* IMAGE */

.premium-cta-image{
  position:relative;
  z-index:2;
}

.premium-cta-image img{
  width:100%;
  height:520px;

  object-fit:cover;

  border-radius:32px;

  display:block;
}

/* =========================
   CLEAN FOOTER FIXED
========================= */

.clean-footer{
  width:100%;
  background:#ffffff;
  padding:0 0 35px;
  overflow:hidden;
}

/* IMPORTANT */

.clean-footer .container{
  width:100%;
  max-width:100%;
  padding:0;
  margin:0;
}

/* WRAPPER */

.clean-footer-wrapper{
  width:100%;

  background:#ffffff;

  padding:70px 7%;

  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:90px;

  align-items:center;

  border-top:1px solid #edf1f7;
}

/* LEFT */

.clean-footer-left{
  width:100%;
}

.clean-footer-logo{
  width:260px;
  margin-bottom:30px;
}

.clean-footer-left p{
  color:#5f6878;

  font-size:20px;
  line-height:2;

  max-width:620px;
}

/* RIGHT */

.clean-footer-contact{
  width:100%;

  display:flex;
  flex-direction:column;
  gap:24px;
}

/* CONTACT CARD */

.clean-contact-item{
  width:100%;

  background:#f6f8fc;

  border-radius:28px;

  padding:28px 32px;

  display:flex;
  align-items:center;
  gap:24px;

  transition:0.3s ease;
}

.clean-contact-item:hover{
  transform:translateY(-5px);
  background:#eef3fa;
}

.clean-contact-icon{
  width:58px;
  height:58px;
  min-width:78px;

  background:#0b2d63;

  border-radius:24px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.clean-contact-icon i{
  color:#fff;
  font-size:30px;
}

/* TEXT */

.clean-contact-text{
  flex:1;
}

.clean-contact-text span{
  display:block;

  color:#7b8493;

  font-size:14px;

  margin-bottom:8px;
}

.clean-contact-text h4{
  color:#0f172a;

  font-size:22px;
  line-height:1.5;

  font-weight:700;
}


.clean-footer-bottom{
  width:100%;

  text-align:center;

  padding-top:28px;
}

.clean-footer-bottom p{
  color:#7b8493;
  font-size:15px;
}


@media(max-width:1100px){

  .clean-footer-wrapper{
    grid-template-columns:1fr;
    gap:50px;
    padding:60px 30px;
  }

}

@media(max-width:768px){

  .clean-footer-wrapper{
    padding:50px 20px;
    gap:40px;
  }

  .clean-footer-logo{
    width:200px;
  }

  .clean-footer-left p{
    font-size:17px;
    line-height:1.9;
  }

  .clean-contact-item{
    padding:24px;
  }

  .clean-contact-text h4{
    font-size:18px;
  }

}

@media(max-width:480px){

  .clean-contact-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .clean-contact-icon{
    width:35px;
    height:35px;
    min-width:65px;
  }

  .clean-contact-icon i{
    font-size:24px;
  }

  .clean-contact-text h4{
    font-size:16px;
  }

}