:root {
  --primary: #48bca2;
  --primary-dark: #25ad99;
  --primary-light: rgba(72, 188, 162, 0.12);
  --primary-glow: rgba(72, 188, 162, 0.25);
  --dark: #0f172a;
  --text: #475569;
  --light-bg: #f8fafc;
  --border: #e2e8f0;
  --section-spacing: 6rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: var(--dark);
}

/* ===== Decor ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-badge::before,
.section-badge::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--primary);
}
.section-badge::before { margin-right: 4px; }
.section-badge::after { margin-left: 4px; }

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 6px 0;
  position: relative;
  z-index: 1001;
}
.top-bar .ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
}
.top-bar .ticker {
  display: inline-block;
  animation: ticker 25s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.top-bar .ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 40px;
}
.top-bar .ticker-item i { color: var(--primary); font-size: 0.7rem; }
.top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}
.top-bar .top-bar-right a {
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.top-bar .top-bar-right a:hover { color: var(--primary); }
.top-soc a {
  display: inline-flex;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  transition: all 0.3s;
}
.top-soc a:hover { background: var(--primary); color: #fff; }

/* ===== Header ===== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.main-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.navbar-brand img {
  height: 72px;
  transition: height 0.3s;
}
.main-header.scrolled .navbar-brand img { height: 54px; }

/* Desktop nav link base */
.nav-link {
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.04em;
  color: var(--dark) !important;
  padding: 6px 18px !important;
  margin: 0 2px;
  border-radius: 100px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.nav-link:hover,
.nav-link.active {
  background: var(--primary-light) !important;
  color: var(--primary) !important;
}

/* ===== Nav Background Hover Layer (Desktop) ===== */
.main-header.has-nav-bg {
  position: relative;
}
.nav-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
  pointer-events: none;
}
.nav-bg-layer.active {
  opacity: 1;
}
.nav-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.2) 100%);
}

/* ===== Full-Screen Overlay Menu (Mobile) ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.nav-overlay-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s;
}
.nav-overlay-bg.active {
  opacity: 0.18;
}
.nav-overlay-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.4) 100%);
}
.overlay-nav {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0 24px;
  margin: 0;
  text-align: center;
}
.overlay-nav li {
  margin: 14px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nav-overlay.open .overlay-nav li {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.open .overlay-nav li:nth-child(1) { transition-delay: 0.08s; }
.nav-overlay.open .overlay-nav li:nth-child(2) { transition-delay: 0.14s; }
.nav-overlay.open .overlay-nav li:nth-child(3) { transition-delay: 0.20s; }
.nav-overlay.open .overlay-nav li:nth-child(4) { transition-delay: 0.26s; }
.nav-overlay.open .overlay-nav li:nth-child(5) { transition-delay: 0.32s; }
.nav-overlay.open .overlay-nav li:nth-child(6) { transition-delay: 0.38s; }
.nav-overlay.open .overlay-nav li:nth-child(7) { transition-delay: 0.44s; }

.overlay-nav a {
  color: #fff;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  font-family: 'Playfair Display', serif;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
}
.overlay-nav a::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.overlay-nav a:hover::before {
  width: 50%;
}
.overlay-nav a:hover {
  color: var(--primary);
}
.close-overlay {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.close-overlay:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

/* ===== Custom Hamburger ===== */
.navbar-toggler-custom {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  transition: all 0.3s;
}
.navbar-toggler-custom span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar-toggler-custom:hover {
  background: var(--primary);
}
.navbar-toggler-custom:hover span {
  background: #fff;
}
@media (max-width: 991.98px) {
  .navbar-toggler-custom { display: flex !important; }
  .navbar-expand-lg .navbar-collapse { display: none !important; }
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out, transform 7s ease-in-out;
  transform: scale(1.06);
}
.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slider .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15,23,42,0.75) 0%, rgba(15,23,42,0.25) 55%, rgba(15,23,42,0.05) 100%);
}
.hero-slider .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-slider .slide-content .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.hero-slider .slide-content h1 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-slider .slide-content p {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.slider-indicators {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.slider-indicators button {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.5s;
  padding: 0;
}
.slider-indicators button.active {
  background: var(--primary);
  width: 48px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s;
}
.hero-slider:hover .slider-arrow { opacity: 1; }
.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* ===== Hero Search Form ===== */
.hero-search-wrap {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 5;
  width: 340px;
  max-width: 90vw;
}

/* Mobile Search Button & Popup */
.mobile-search-btn-wrap {
  display: none;
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px 16px 24px;
  background: var(--dark);
  margin-top: -2px;
}
.mobile-search-btn-wrap .btn-primary-custom {
  padding: 14px 40px;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px var(--primary-glow);
}
.search-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(15,23,42,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s;
  padding: 20px;
}
.search-popup-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.search-popup-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.search-popup-overlay .hero-search-card {
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.search-popup-overlay.open .hero-search-card {
  transform: scale(1) translateY(0);
}
.search-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.search-popup-close:hover {
  background: var(--primary);
  border-color: var(--primary);
}
@media (max-width: 991.98px) {
  .hero-search-wrap { display: none; }
  .mobile-search-btn-wrap { display: block; }
}
.hero-search-card {
  background: rgba(15,23,42,0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hsf-input {
  width: 100%;
  padding: 9px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 0.82rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s;
}
.hsf-input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(72,188,162,0.15);
}
.hsf-input::placeholder { color: rgba(255,255,255,0.3); }
.hsf-input option { color: var(--dark); background: #fff; }
input[type="date"].hsf-input {
  color-scheme: dark;
  text-transform: uppercase;
}
input[type="date"].hsf-input::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

/* ===== Button Styles ===== */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  transition: all 0.35s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-glow);
}
.btn-outline-custom {
  background: transparent;
  color: #fff;
  padding: 12px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.35s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline-custom:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1.5px solid var(--border);
  transition: all 0.35s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap .main-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.about-image-wrap .shape-dots {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  z-index: -1;
}
.about-image-wrap .shape-dots::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--primary) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.3;
}
.about-image-wrap .floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 20px;
}
.floating-card .stat {
  text-align: center;
}
.floating-card .stat .num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--primary);
  line-height: 1;
}
.floating-card .stat .label {
  font-size: 0.72rem;
  color: var(--text);
  margin-top: 4px;
}
.floating-card .divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.styled-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.styled-list li i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 0.8rem;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: all 0.4s;
}
.service-card:hover .icon {
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
}
.service-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--text);
}

/* ===== Destinations ===== */
.dest-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.dest-card:hover img { transform: scale(1.07); }
.dest-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.05) 60%);
  transition: all 0.5s;
}
.dest-card:hover .overlay {
  background: linear-gradient(to top, rgba(72,188,162,0.8) 0%, rgba(72,188,162,0.15) 60%);
}
.dest-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
  z-index: 2;
}
.dest-card .content .region {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  margin-bottom: 6px;
}
.dest-card .content h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 3px;
}
.dest-card .content span {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* ===== Stats Bar ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--dark);
  border-radius: 20px;
  padding: 2.5rem 0;
  margin-top: 4rem;
}
.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 0 1rem;
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--primary);
  line-height: 1;
}
.stat-item .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ===== Steps / Process ===== */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--primary-light), var(--border), var(--border));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step .step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: #fff;
  border: 2px dashed var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text);
  transition: all 0.4s;
  position: relative;
}
.process-step:hover .step-num {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 10px 30px var(--primary-glow);
}
.process-step h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--text);
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  height: 100%;
  transition: all 0.4s;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary-light);
  opacity: 0.5;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.testimonial-card .stars {
  color: #f59e0b;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.testimonial-card blockquote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
}
.testimonial-card .author .info .name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 1px;
}
.testimonial-card .author .info .role {
  font-size: 0.75rem;
  color: var(--text);
  opacity: 0.7;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(72,188,162,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(37,173,153,0.08) 0%, transparent 60%);
}
.cta-section .cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(72,188,162,0.08);
  pointer-events: none;
}
.cta-section .cta-ring.r1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.cta-section .cta-ring.r2 { width: 250px; height: 250px; bottom: -80px; left: -50px; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
  margin-bottom: 1rem;
}
.contact-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.contact-card .cc-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}
.contact-card .cc-body strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-card .cc-body {
  font-size: 0.85rem;
  line-height: 1.6;
}
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.form-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.form-control-modern {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  background: var(--light-bg);
  outline: none;
}
.form-control-modern:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  background: #fff;
}
.form-control-modern::placeholder { color: #94a3b8; }
textarea.form-control-modern { resize: vertical; min-height: 120px; }

/* ===== Map ===== */
.map-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) brightness(0.98);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.site-footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}
.site-footer a {
  color: rgba(255,255,255,0.55);
  transition: all 0.3s;
  text-decoration: none;
}
.site-footer a:hover { color: var(--primary); }
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul li i { width: 18px; margin-right: 6px; color: var(--primary); font-size: 0.75rem; }
.footer-soc a {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s;
  margin-right: 6px;
}
.footer-soc a:hover { background: var(--primary); color: #fff; }
.newsletter-input {
  display: flex;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}
.newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 16px;
  color: #fff;
  font-size: 0.85rem;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.newsletter-input input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-input button:hover { background: var(--primary-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
  font-size: 0.82rem;
}

/* ===== Animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1199.98px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { gap: 1rem; }
}
@media (max-width: 1199.98px) {
  .hero-search-wrap { right: 3%; width: 310px; }
}
@media (max-width: 991.98px) {
  .hero-slider { height: 72vh; min-height: 420px; }
  .hero-search-wrap { position: static; transform: none; width: 100%; max-width: 400px; margin: -80px auto 0; padding: 0 16px; }
  .hero-search-card { border-radius: 16px; }
  .navbar-brand img { height: 54px; }
  .main-header.scrolled .navbar-brand img { height: 44px; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 2rem 1.5rem; }
  .stat-item { border-right: none; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-track::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .section-desc { max-width: 100%; }
}
@media (max-width: 767.98px) {
  :root { --section-spacing: 3.5rem; }
  .hero-slider { height: 65vh; min-height: 360px; }
  .slider-arrow { display: none; }
  .slider-indicators { bottom: 16px; }
  .hero-search-wrap { margin-top: -60px; max-width: 340px; }
  .hero-search-card { padding: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-image-wrap .floating-card { position: absolute; bottom: -16px; left: 12px; right: 12px; padding: 14px 18px; gap: 10px; }
  .about-image-wrap .floating-card .divider { height: 30px; }
  .about-image-wrap .floating-card .stat .num { font-size: 1.3rem; }
  .about-image-wrap .floating-card .stat .label { font-size: 0.62rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 1.5rem 1rem; margin-top: 2rem; }
  .stat-item .num { font-size: 1.6rem; }
  .process-track { grid-template-columns: 1fr; gap: 2rem; }
  .top-bar .top-bar-right { justify-content: center; margin-top: 4px; }
}
