body {
  font-family: "Segoe UI", sans-serif;
}

/* ===============================
   TOP BAR
================================ */

.top-bar{
background:#020617;
border-bottom:1px solid rgba(255,255,255,0.08);
padding:10px 0;
color:#e5e7eb;
}

/* LOGO */

.logo{
width:80px;
height:auto;
object-fit:contain;
}

/* BRAND TEXT */

.top-bar h6{
color:#ffffff;
font-size:16px;
}

.top-bar small{
color:#94a3b8;
font-size:12px;
}

/* CALL BUTTON */

.top-call-btn{
background:linear-gradient(135deg,#2dd4bf,#14b8a6);
color:#022c22;
padding:8px 18px;
border-radius:50px;
text-decoration:none;
font-weight:600;
display:flex;
align-items:center;
gap:6px;
transition:0.3s;
font-size:14px;
}

.top-call-btn:hover{
background:#14b8a6;
color:#022c22;
transform:translateY(-1px);
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

/* ===============================
   GLASS NAVBAR
================================ */

.glass-navbar{
background:rgba(2,6,23,0.85);
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);
box-shadow:0 10px 30px rgba(0,0,0,0.35);
padding:10px 0;
}

/* NAV ITEMS */

.navbar-nav{
gap:6px;
}

/* NAV LINKS */

.nav-link{
color:#e5e7eb;
font-weight:500;
padding:12px 18px;
position:relative;
transition:0.3s;
font-size:15px;
}

/* UNDERLINE HOVER EFFECT */

.nav-link::after{
content:"";
position:absolute;
bottom:6px;
left:50%;
width:0;
height:3px;
background:#2dd4bf;
border-radius:10px;
transition:0.3s;
transform:translateX(-50%);
}

/* HOVER */

.nav-link:hover{
color:#ffffff;
}

.nav-link:hover::after{
width:60%;
}

/* ACTIVE */

.nav-link.active{
color:#2dd4bf !important;
font-weight:600;
}

.nav-link.active::after{
width:70%;
}

/* ===============================
   NAVBAR TOGGLER
================================ */

.navbar-toggler{
border:none;
outline:none;
box-shadow:none;
}

.navbar-toggler:focus{
box-shadow:none;
}

/* ICON */

.navbar-toggler-icon{
filter:invert(1);
}

/* ===============================
   MOBILE MENU
================================ */

@media (max-width:991px){

.navbar-nav{
padding-top:15px;
gap:2px;
}

.nav-link{
padding:10px 14px;
}

.top-call-btn{
font-size:13px;
padding:7px 14px;
}

}

/* ===============================
   STICKY NAVBAR SMOOTH
================================ */

.glass-navbar.sticky-top{
transition:all 0.3s ease;
}

/* ===============================
   OPTIONAL SCROLL EFFECT
================================ */

.scrolled{
background:rgba(2,6,23,0.95) !important;
box-shadow:0 8px 25px rgba(0,0,0,0.5);
}
/* ===== HERO SECTION ===== */
.hero-booking {
  padding: 90px 0;
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #e5e7eb;
}

/* LEFT CONTENT */
.hero-badge {
  display: inline-block;
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-heading {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-heading span {
  color: #2dd4bf;
}

.hero-subtext {
  color: #cbd5f5;
  max-width: 520px;
  margin-bottom: 30px;
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 35px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
}

/* CTA BUTTONS */
.hero-actions {
  display: flex;
  gap: 15px;
}

.hero-primary {
  background: #2dd4bf;
  color: #022c22;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 12px;
}

.hero-primary:hover {
  background: #14b8a6;
}

.hero-outline {
  border: 2px solid #2dd4bf;
  color: #2dd4bf;
  padding: 12px 26px;
  border-radius: 12px;
}

.hero-outline:hover {
  background: #2dd4bf;
  color: #022c22;
}

/* RIGHT CARD */
.booking-glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.booking-glass-card h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.booking-glass-card p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 25px;
}

.booking-glass-card .form-control {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px;
}

.booking-glass-card .form-control::placeholder {
  color: #cbd5f5;
}

.booking-glass-card .form-control:focus {
  border-color: #2dd4bf;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.18);
}

/* BOOK BUTTON */
.booking-btn {
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #022c22;
  font-weight: 800;
  padding: 14px;
  border-radius: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-heading {
    font-size: 34px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT SECTION ===== */

.about-section{
padding:100px 0;
background:#020617;
color:#e5e7eb;
}

/* badge */

.section-badge{
display:inline-block;
background:rgba(45,212,191,0.15);
color:#2dd4bf;
padding:6px 16px;
border-radius:50px;
font-weight:600;
margin-bottom:18px;
}

/* heading */

.about-heading{
font-size:38px;
font-weight:800;
margin-bottom:20px;
}

.about-heading span{
color:#2dd4bf;
}

/* text */

.about-text{
color:#cbd5f5;
margin-bottom:18px;
}

/* image */

.about-image-wrapper{
position:relative;
}

.about-main-img{
border-radius:18px;
box-shadow:0 20px 60px rgba(0,0,0,0.5);
}

/* floating card */

.about-floating-card{
position:absolute;
bottom:20px;
left:20px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(14px);
padding:18px 22px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.15);
}

.about-floating-card h5{
margin:0;
font-weight:700;
color:#2dd4bf;
}

.about-floating-card p{
margin:0;
font-size:14px;
color:#cbd5f5;
}

/* features */

.about-features{
margin-top:25px;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.about-feature{
display:flex;
gap:12px;
background:rgba(255,255,255,0.05);
padding:14px;
border-radius:10px;
}

.feature-icon{
font-size:22px;
color:#2dd4bf;
}

.about-feature h6{
margin:0;
font-weight:600;
}

.about-feature p{
margin:0;
font-size:13px;
color:#94a3b8;
}

/* button */

.about-btn{
background:#2dd4bf;
color:#022c22;
font-weight:700;
padding:12px 26px;
border-radius:12px;
}

.about-btn:hover{
background:#14b8a6;
}

/* responsive */

@media(max-width:991px){

.about-heading{
font-size:30px;
}

.about-features{
grid-template-columns:1fr;
}

}
/* ===== FLEET SECTION ===== */
.fleet-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #e5e7eb;
}

/* HEADER */
.fleet-header {
  margin-bottom: 55px;
}

.fleet-badge {
  display: inline-block;
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 12px;
}

.fleet-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.fleet-header p {
  color: #94a3b8;
  max-width: 550px;
  margin: 10px auto 0;
}

/* CARD */
.fleet-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  border-color: #2dd4bf;
}

/* IMAGE */
.fleet-img {
  background: radial-gradient(circle at top, #1e293b, #020617);
  padding: 30px;
  text-align: center;
}

.fleet-img img {
  max-width: 100%;
  height: 140px;
  object-fit: contain;
  transition: 0.4s;
}

.fleet-card:hover img {
  transform: scale(1.08);
}

/* BODY */
.fleet-body {
  padding: 22px;
}

.fleet-body h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.fleet-body h5 span {
  color: #94a3b8;
  font-weight: 500;
  font-size: 14px;
}

.fleet-body p {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 15px;
}

/* META */
.fleet-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  margin-bottom: 18px;
  color: #94a3b8;
}

/* BUTTON */
.fleet-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #022c22;
  font-weight: 800;
  padding: 12px;
  border-radius: 14px;
  text-decoration: none;
}

.fleet-btn:hover {
  background: linear-gradient(135deg, #14b8a6, #2dd4bf);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .fleet-header h2 {
    font-size: 30px;
  }
}

/* ===== Pakage SECTION ===== */
.location-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #e5e7eb;
}

/* HEADER */
.location-header {
  margin-bottom: 60px;
}

.location-badge {
  display: inline-block;
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 10px;
}

.location-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.location-header p {
  color: #94a3b8;
  max-width: 650px;
  margin: 12px auto 0;
}

/* CARD */
.location-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  transition: 0.4s;
}

.location-card:hover {
  transform: translateY(-8px);
  border-color: #2dd4bf;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

/* IMAGE */
.location-img {
  position: relative;
}

.location-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.8));
}

.route-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #2dd4bf;
  color: #022c22;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 13px;
}

/* BODY */
.location-body {
  padding: 22px;
}

.location-body h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

/* SERVICE TAGS */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.service-tags span {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
}

/* POINTS */
.location-points {
  padding-left: 18px;
  margin: 0;
  font-size: 14px;
  color: #cbd5f5;
}

.location-points li {
  margin-bottom: 6px;
}

/* ACTION BAR */
.location-actions {
  display: flex;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* LOCATION ACTION BUTTONS */
.loc-call-btn {
  background: #2563eb;
  color: #fff;
  flex: 1;
}

.loc-whatsapp-btn {
  background: #16a34a;
  color: #fff;
  flex: 1;
}

.loc-contact-btn {
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #022c22;
  font-weight: 700;
  flex: 1;
}

.call-btn {
  background: #2563eb !important;
  color: #fff;
  flex: 1;
}

.whatsapp-btn {
  background: #16a34a !important;
  color: #fff;
  flex: 1;
}

.contact-btn {
  background: linear-gradient(135deg, #2dd4bf, #14b8a6) !important;
  color: #022c22;
  font-weight: 700;
  flex: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .location-header h2 {
    font-size: 30px;
  }
}

/* ===== ROUTE SECTION ===== */
.route-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #e5e7eb;
}

/* HEADER */
.route-header {
  margin-bottom: 55px;
}

.route-badge {
  display: inline-block;
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  padding: 6px 20px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 10px;
}

.route-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.route-header p {
  color: #94a3b8;
}

/* CARD */
.route-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s;
}

.route-card:hover {
  transform: translateY(-6px);
  border-color: #2dd4bf;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* CONTENT (ICON + TITLE) */
.route-content {
  text-align: center;
  margin-bottom: 20px;
}

.route-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: rgba(45, 212, 191, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.route-card h5 {
  font-weight: 700;
  margin: 0;
  font-size: 17px;
}

/* ACTIONS */
.route-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.icon-btn.call {
  background: #2563eb;
  color: #fff;
}

.icon-btn.whatsapp {
  background: #16a34a;
  color: #fff;
}

.main-btn {
  flex: 1;
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #022c22;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .route-header h2 {
    font-size: 30px;
  }
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #e5e7eb;
}

/* HEADER */
.why-header {
  margin-bottom: 60px;
}

.why-badge {
  display: inline-block;
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  padding: 6px 20px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.why-header p {
  color: #94a3b8;
}

/* CARD */
.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: 0.35s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #2dd4bf;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* ICON */
.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: rgba(45, 212, 191, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

/* TEXT */
.why-card h6 {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .why-header h2 {
    font-size: 30px;
  }
}

/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #020617, #0f172a);
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.trust-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e5e7eb;
  transition: 0.35s;
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: #2dd4bf;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* ICON */
.trust-icon {
  width: 56px;
  height: 56px;
  background: rgba(45, 212, 191, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

/* TEXT */
.trust-text h6 {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 15px;
}

.trust-text p {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #e5e7eb;
}

/* HEADER */
.how-header {
  margin-bottom: 70px;
}

.how-badge {
  display: inline-block;
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  padding: 6px 20px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 12px;
}

.how-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.how-header p {
  color: #94a3b8;
}

/* TIMELINE */
.how-timeline {
  position: relative;
}

.how-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2dd4bf, transparent);
}

/* STEP CARD */
.how-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: 0.35s;
}

.how-card:hover {
  transform: translateY(-6px);
  border-color: #2dd4bf;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* STEP NUMBER */
.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #022c22;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
}

/* ICON */
.how-icon {
  width: 64px;
  height: 64px;
  margin: 18px auto 16px;
  background: rgba(45, 212, 191, 0.18);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* TEXT */
.how-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .how-timeline::before {
    display: none;
  }

  .how-header h2 {
    font-size: 30px;
  }
}

/* ============ STATS SECTION ============ */
.stats-section {
  padding: 90px 0;
  background: radial-gradient(circle at top, #020617, #0f172a);
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

/* soft glow */
.stats-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(45, 212, 191, 0.15);
  filter: blur(130px);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

/* HEADER */
.stats-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.stats-badge {
  display: inline-block;
  background: rgba(45, 212, 191, 0.18);
  color: #2dd4bf;
  padding: 6px 22px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 12px;
}

.stats-header h2 {
  font-size: 36px;
  font-weight: 900;
}

.stats-header p {
  color: #94a3b8;
  max-width: 520px;
  margin: 10px auto 0;
}

/* STAT CARD */
.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  padding: 40px 26px;
  text-align: center;
  height: 100%;
  transition: 0.4s;
  position: relative;
  z-index: 2;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: #2dd4bf;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

/* NUMBER */
.stat-number {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* LABEL */
.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: #cbd5f5;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .stats-header h2 {
    font-size: 30px;
  }
  .stat-number {
    font-size: 36px;
  }
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 100px 0;
  background: radial-gradient(circle at top, #020617, #0f172a);
  color: #e5e7eb;
}

/* HEADER */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-badge {
  display: inline-block;
  background: rgba(45, 212, 191, 0.18);
  color: #2dd4bf;
  padding: 6px 22px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 14px;
}

.faq-header h2 {
  font-size: 38px;
  font-weight: 900;
}

.faq-header p {
  color: #94a3b8;
  max-width: 520px;
  margin: 10px auto 0;
}

/* FAQ ITEM */
.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item.active {
  border-color: #2dd4bf;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* QUESTION */
.faq-question {
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

/* ICON */
.faq-toggle {
  width: 34px;
  height: 34px;
  background: rgba(45, 212, 191, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #022c22;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .faq-header h2 {
    font-size: 30px;
  }
}

/* ============ CONTACT FORM SECTION ============ */
.contact-section {
  padding: 100px 0;
  background: radial-gradient(circle at top, #020617, #0f172a);
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

/* soft glow */
.contact-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(45, 212, 191, 0.15);
  filter: blur(130px);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  padding: 0 16px;
  margin: auto;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.contact-badge {
  display: inline-block;
  background: rgba(45, 212, 191, 0.18);
  color: #2dd4bf;
  padding: 6px 22px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 14px;
}

.contact-header h2 {
  font-size: 38px;
  font-weight: 900;
}

.contact-header p {
  color: #94a3b8;
  max-width: 520px;
  margin: 10px auto 0;
}

/* FORM CARD */
.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  padding: 40px 36px;
  max-width: 720px;
  margin: auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

/* INPUT GROUP */
.form-group {
  position: relative;
  margin-bottom: 26px;
}

.form-group input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 16px 16px;
  color: #e5e7eb;
  font-size: 14px;
  outline: none;
}

.form-group input:focus {
  border-color: #2dd4bf;
  background: rgba(255, 255, 255, 0.1);
}

/* FLOATING LABEL */
.form-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 13px;
  pointer-events: none;
  transition: 0.3s;
  background: linear-gradient(180deg, transparent 50%, #0f172a 50%);
  padding: 0 6px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #2dd4bf;
}

/* BUTTON */
.contact-btn {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #022c22;
  font-weight: 800;
  padding: 14px;
  border-radius: 16px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(45, 212, 191, 0.35);
}
/* ===== Button Loading State ===== */
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.contact-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

/* Spinner */
.btn-loader {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

button.loading .btn-loader {
  display: inline-block;
}

button.loading .btn-text {
  opacity: 0.9;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Loading active */
.contact-btn.loading .btn-text {
  opacity: 0.9;
}

.contact-btn.loading .btn-loader {
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 575px) {
  .contact-card {
    padding: 30px 22px;
  }

  .contact-header h2 {
    font-size: 30px;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(180deg, #020617, #020617);
  color: #cbd5f5;
  padding: 80px 0 0;
}

/* TOP FOOTER */
.footer-top {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* BRAND */
.footer-brand h4 {
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(45, 212, 191, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dd4bf;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #022c22;
}

/* TITLES */
.footer-title {
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  font-size: 16px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #2dd4bf;
}

/* CONTACT INFO */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #94a3b8;
}

.footer-contact span {
  color: #e5e7eb;
  font-weight: 600;
}

/* CTA BOX */
.footer-cta {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 22px;
  margin-top: 12px;
}

.footer-cta h6 {
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-cta a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: #022c22;
  font-weight: 700;
  text-decoration: none;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #020617;
  padding: 18px 0;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

/* ================= FLOATING ACTION BUTTONS ================= */
.floating-actions {
  position: fixed;
  left: 18px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* COMMON BUTTON */
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* CALL */
.float-btn.call {
  background: #2563eb;
}

/* WHATSAPP */
.float-btn.whatsapp {
  background: #16a34a;
}

/* HOVER EFFECT */
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

/* PULSE ANIMATION */
.float-btn::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.6;
}

.float-btn.call::after {
  background: rgba(37, 99, 235, 0.4);
}

.float-btn.whatsapp::after {
  background: rgba(22, 163, 74, 0.4);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 575px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
