/* =============================================
   JK Electronics – Custom Stylesheet
   Stack: Bootstrap 5 + Custom CSS
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0B2A4A;
  --primary-light: #1a4a7a;
  --accent: #00b4d8;
  --accent-dark: #0096b7;
  --accent-green: #00b894;
  --white: #ffffff;
  --light-bg: #f0f7ff;
  --text-dark: #1a2b3c;
  --text-muted: #6b7b8d;
  --border-radius: 12px;
  --shadow: 0 4px 24px rgba(11, 42, 74, 0.10);
  --shadow-hover: 0 12px 40px rgba(11, 42, 74, 0.18);
  --transition: all 0.3s ease;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}

/* ---------- Utility ---------- */
.text-accent {
  color: var(--accent) !important;
}

.bg-dark-blue {
  background-color: var(--primary) !important;
}

.bg-light-blue {
  background-color: var(--light-bg) !important;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  font-weight: 600;
  transition: var(--transition);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: none;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 42, 74, 0.3);
}

.section-pad {
  padding: 90px 0;
}

/* ---------- Section Header ---------- */
.section-tag {
  display: inline-block;
  background: rgba(0, 180, 216, 0.12);
  color: var(--accent-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0, 180, 216, 0.25);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-top: 10px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.headerLogo {
  width: 200px;
}

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
  background: linear-gradient(90deg, #a0d2ec 0%, #1a4aa8 50%, #009ee3 100%);
  padding: 14px 0;
  transition: var(--transition);
  box-shadow: 0 2px 24px rgba(47, 36, 131, 0.35);
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 32px rgba(47, 36, 131, 0.45);
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--white) !important;
  letter-spacing: 0.5px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.15);
  text-shadow: 0 0 12px rgba(0, 200, 255, 0.4);
}

.navbar-nav .btn-accent {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  padding: 8px 22px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
  color: #ffffff !important;
  backdrop-filter: blur(4px);
}

.navbar-nav .btn-accent:hover {
  background: #ffffff !important;
  color: #2f2483 !important;
  border-color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Mobile collapsed menu — keep gradient readable */
@media (max-width: 991px) {
  #mainNav .navbar-collapse {
    background: linear-gradient(160deg, #2a1f7a 0%, #1460c0 100%);
    border-radius: 12px;
    margin-top: 10px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(47, 36, 131, 0.4);
  }

  .nav-link {
    padding: 10px 14px !important;
  }

  .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  background: var(--primary);
  overflow: hidden;
  min-height: 100vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(0, 180, 216, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(0, 184, 148, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0B2A4A 0%, #0d3a6e 50%, #0B2A4A 100%);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.hero-badge i {
  color: #ffd700;
}

.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.hero-stats {
  padding-top: 10px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

/* Hero Image Frame */
.hero-img-wrapper {
  position: relative;
  width: 460px;
  max-width: 100%;
  z-index: 2;
  padding: 20px 30px 20px 20px;
}

/* Decorative background blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 280px;
  height: 280px;
  background: rgba(0, 180, 216, 0.18);
  top: -30px;
  right: -20px;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: rgba(0, 184, 148, 0.12);
  bottom: 10px;
  left: -10px;
}

/* Main image frame */
.hero-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 4px rgba(0, 180, 216, 0.25),
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4 / 5;
  width: 100%;
  z-index: 1;
  background: #0d2540;
}

/* Actual image (swap src to your stock photo) */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
}

/* Placeholder shown when image is missing */
.hero-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d2540 0%, #0f3460 40%, #0b2a4a 100%);
}

/* Subtle grid texture */
.placeholder-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 216, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.placeholder-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px;
}

.placeholder-icon-ring {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.12);
  border: 2px dashed rgba(0, 180, 216, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--accent);
  animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.placeholder-icon-ring i {
  animation: spin-slow 12s linear infinite reverse;
}

.placeholder-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.placeholder-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin: 0;
}

.placeholder-hint code {
  font-size: 0.76rem;
  background: rgba(0, 180, 216, 0.15);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Floating badges */
.badge-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.bf-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: blink 1.8s ease-in-out infinite;
}

.bf-dot-green {
  background: var(--accent-green);
}

.acfSec {
  background: url(images/hero-placeholder.jpg);
  background-size: cover;
  position: relative;
}

.acfSec .wrap {
  position: absolute;
  background: rgb(255 255 255 / 90%);
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

.badge-float-1 {
  top: -14px;
  right: 20px;
  animation: float1 3.2s ease-in-out infinite;
}

.badge-float-2 {
  bottom: 60px;
  left: -14px;
  animation: float2 3.8s ease-in-out infinite;
}

.badge-float-3 {
  bottom: -14px;
  right: 30px;
  animation: float1 4s ease-in-out infinite 0.6s;
}

.badge-float i {
  font-size: 0.85rem;
  color: var(--accent-green);
}

.badge-float .fa-star {
  color: #f4bc1c;
}

/* Experience ribbon */
.hero-exp-ribbon {
  position: absolute;
  top: 40px;
  left: -10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-green) 100%);
  color: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.4);
  z-index: 3;
  animation: float2 4.5s ease-in-out infinite;
}

.exp-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.exp-label {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.3;
  margin-top: 2px;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  border: 1.5px solid rgba(11, 42, 74, 0.08);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--icon-color, var(--accent));
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 180, 216, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--icon-color, var(--accent)) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--icon-color, var(--accent));
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--icon-color, var(--accent));
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

/* =============================================
   ADVANTAGE SECTION
   ============================================= */
.col-lg-2dot4 {
  flex: 0 0 auto;
  width: 20%;
}

@media (max-width: 991px) {
  .col-lg-2dot4 {
    width: 33.333%;
  }
}

@media (max-width: 575px) {
  .col-lg-2dot4 {
    width: 50%;
  }
}

.advantage-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 180, 216, 0.25);
}

.adv-icon-wrap {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0 auto 16px;
  transition: var(--transition);
}

.advantage-card:hover .adv-icon-wrap {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-green) 100%);
  color: var(--white);
  transform: rotateY(180deg);
}

.advantage-card h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.advantage-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.trust-banner {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 20px 30px;
  box-shadow: var(--shadow);
  z-index: 1;
  position: relative;
}

.trust-item {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-wrapper {
  position: relative;
}

.process-line {
  position: absolute;
  top: 90px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-green));
  opacity: 0.3;
  z-index: 0;
}

.process-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px 20px 28px;
  border: 1.5px solid rgba(11, 42, 74, 0.07);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 180, 216, 0.2);
}

.process-step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  opacity: 0.7;
}

.process-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0 auto 18px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(11, 42, 74, 0.2);
}

.process-card:hover .process-icon-wrap {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-green) 100%);
  color: var(--white);
  transform: scale(1.08);
}

.process-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  padding: 28px;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-4px);
}

.review-stars i {
  color: #ffd700;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.author-loc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.review-indicators {
  position: static !important;
  margin-top: 28px !important;
}

.review-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.35) !important;
  border: none !important;
  transition: var(--transition) !important;
}

.review-indicators button.active {
  background-color: var(--accent) !important;
  width: 28px !important;
  border-radius: 5px !important;
}

/* =============================================
   BOOKING FORM SECTION
   ============================================= */
.booking-form-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 8px 48px rgba(11, 42, 74, 0.12);
  border: 1px solid rgba(11, 42, 74, 0.07);
}

.booking-form-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.form-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap>i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  z-index: 5;
  pointer-events: none;
}

.input-icon-wrap .form-control,
.input-icon-wrap .form-select {
  padding-left: 38px;
}

.input-icon-wrap textarea.form-control {
  padding-left: 14px;
}

.form-control,
.form-select {
  border: 1.5px solid rgba(11, 42, 74, 0.15);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: #fafbfd;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
  background: var(--white);
  outline: none;
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.1);
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.invalid-feedback {
  font-size: 0.8rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.linknormal {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* Contact Info */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ci-value {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

/* Success Alert */
.success-alert {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #b8dfc2;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.success-icon {
  font-size: 2rem;
  color: #27ae60;
  flex-shrink: 0;
}

.success-alert strong {
  color: #1a5c33;
}

.success-alert p {
  color: #2d7a4a;
  font-size: 0.9rem;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--primary);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact li i {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* =============================================
   BACK TO TOP
   ============================================= */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: 2px solid rgba(0, 180, 216, 0.3);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(11, 42, 74, 0.35);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

#backToTop.visible {
  opacity: 1;
  pointer-events: all;
}

#backToTop:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 180, 216, 0.4);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .hero-img-wrapper {
    width: 360px;
    padding: 16px 24px 16px 16px;
  }

  .badge-float-1 {
    right: 10px;
  }

  .badge-float-2 {
    left: -4px;
  }

  .hero-exp-ribbon {
    left: -4px;
    top: 30px;
  }

  .booking-form-card {
    padding: 28px 22px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 64px 0;
  }

  .hero-img-wrapper {
    width: 300px;
    padding: 12px 20px 12px 12px;
  }

  .hero-img-frame {
    aspect-ratio: 4 / 3;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .process-line {
    display: none;
  }

  .booking-form-card {
    padding: 22px 16px;
  }

  #backToTop {
    bottom: 18px;
    right: 18px;
  }

  .badge-float-3 {
    display: none;
  }

  .hero-exp-ribbon {
    top: 20px;
    padding: 8px 12px;
  }

  .exp-num {
    font-size: 1.2rem;
  }
}

@media (max-width: 575px) {
  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .hero-badge {
    font-size: 0.76rem;
  }

  .trust-banner {
    padding: 16px 18px;
  }

  .trust-item {
    font-size: 0.8rem;
  }
}

/* =============================================
   ANIMATIONS (on scroll)
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.privacyContainer {
  padding: 60px 0;
}

.privacyContainer h1 {
  margin: 0 0 40px;
  font-weight: 500;
}

.privacyContainer h2 {
  margin: 40px 0;
  font-weight: 500;
}

.privacyContainer h3 {
  font-weight: 500;
}