/* ============================================================
   HOME PAGE — SPECIFIC STYLES
   ============================================================ */

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal-dark);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 95, 115, 0.82) 0%,
    rgba(0, 95, 115, 0.65) 50%,
    rgba(0, 151, 178, 0.45) 100%
  );
}

/* Orbital decoration */
.hero-orbital {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  z-index: 1;
  pointer-events: none;
}

.orbital-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(0, 151, 178, 0.3);
  animation: orbit 18s linear infinite;
}

.orbital-ring::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--tirkiz);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--tirkiz);
}

.orbital-ring::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 151, 178, 0.15);
}

.orbital-dots {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-dots span {
  position: absolute;
  border-radius: 50%;
  background: var(--tirkiz);
  opacity: 0.5;
}

.orbital-dots span:nth-child(1) { width: 8px;  height: 8px;  top: 15%; left: 50%; }
.orbital-dots span:nth-child(2) { width: 5px;  height: 5px;  top: 12%; left: 58%; opacity: 0.3; }
.orbital-dots span:nth-child(3) { width: 4px;  height: 4px;  top: 9%;  left: 64%; opacity: 0.2; }
.orbital-dots span:nth-child(4) { width: 3px;  height: 3px;  top: 7%;  left: 70%; opacity: 0.1; }

/* Hero content */
.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: var(--sp-12);
}

.hero-text {
  animation: fadeInUp 0.9s ease both;
}

.hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(0, 151, 178, 0.15); /* Light teal glassy background */
  border: 1px solid rgba(0, 151, 178, 0.3);
  padding: 0.35rem 1.25rem 0.35rem 0.75rem;
  border-radius: 40px;
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
  0% { transform: translateY(0); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
  50% { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,151,178,0.2); }
  100% { transform: translateY(0); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--tirkiz-light);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  top: -4px; right: -4px; bottom: -4px; left: -4px;
  border: 2px solid var(--tirkiz-light);
  border-radius: 50%;
  animation: dotPulse 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@keyframes dotPulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero-premium-badge .hero-label {
  color: var(--white);
  margin-bottom: 0; /* Remove old margin */
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.badge-sparkle {
  font-size: var(--text-sm);
  filter: drop-shadow(0 0 5px var(--tirkiz-light));
}

.hero-h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: var(--sp-5);
  text-shadow: 0 4px 12px rgba(0,0,0,0.25); /* Added slight text shadow for readability */
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-lg);
  max-width: 520px;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.hero-cta-main {
  box-shadow: 0 4px 25px rgba(0, 151, 178, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 151, 178, 0.6);
}

.hero-cta-secondary {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 40px;
  color: var(--white);
  font-size: var(--text-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--tirkiz);
  border-radius: 50%;
  padding: 4px;
}

.trust-icon.award-glow {
  background: transparent;
  font-size: 1.1rem;
  padding: 0;
  filter: drop-shadow(0 0 4px rgba(200, 160, 50, 0.8));
}

/* Premium Floating rating card */
.hero-side {
  display: flex;
  justify-content: flex-end;
  animation: fadeInUp 1.1s ease 0.3s both;
}

.premium-hero-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.8);
  max-width: 240px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-hero-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,1);
}

.rating-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.hero-rating-score {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hero-rating-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--antracit);
}

.hero-rating-stars { 
  font-size: 14px; 
  color: #FBBC05;
  letter-spacing: 2px;
  margin-top: 4px;
}

.hero-rating-label {
  font-size: var(--text-xs);
  color: var(--grey-mid);
  font-weight: 500;
  line-height: 1.4;
}

.rating-avatars {
  display: flex;
  align-items: center;
  margin-top: var(--sp-2);
}

.rating-avatars .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  margin-left: -10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
}

.rating-avatars .avatar:first-child { margin-left: 0; }

.rating-avatars .bg-1 { background: #4285F4; }
.rating-avatars .bg-2 { background: #34A853; }
.rating-avatars .bg-3 { background: #EA4335; }
.rating-avatars .count { background: var(--ice-blue); color: var(--antracit); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.6);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 2s ease 1.5s both;
}

.hero-scroll-arrow {
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
  color: var(--tirkiz-light);
}

/* ─── WHY US ─── */
.why-us { background: var(--white); }

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

.why-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.why-item-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--ice-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-item-title {
  display: block;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--antracit);
  margin-bottom: var(--sp-1);
}

.why-item-desc {
  font-size: var(--text-sm);
  color: var(--grey-mid);
}

/* Stats block */
.why-us-right {
  position: relative;
}

.stats-block {
  position: absolute;
  top: var(--sp-6);
  left: -30px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  z-index: 2;
}

@media (max-width: 991px) {
  .stats-block {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--sp-6);
  }
  .stat-big {
    flex: 1 1 calc(50% - var(--sp-4));
    min-width: 120px;
    text-align: center;
  }
}

.stat-big {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--tirkiz);
  min-width: 150px;
}

.stat-big-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--tirkiz);
  line-height: 1;
}

.stat-big-label {
  font-size: var(--text-xs);
  color: var(--grey-mid);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.why-us-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ─── AWARDS TEASER ─── */
.awards-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 991px) {
  .awards-teaser-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
}

.award-teaser-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
}

.award-teaser-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.award-teaser-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.award-teaser-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.award-teaser-meta {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ─── REVIEWS ─── */
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  background: var(--white);
  padding: var(--sp-2) var(--sp-4);
  border-radius: 40px;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}
.grating-score {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--antracit);
}
.grating-text {
  font-size: var(--text-sm);
  color: var(--grey-mid);
  margin: 0 var(--sp-2);
}

.reviews-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.reviews-track {
  display: flex;
  gap: var(--sp-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding-bottom: var(--sp-4);
  flex: 1;
}
.reviews-track::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}

.slider-btn {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--antracit);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  flex-shrink: 0;
  z-index: 2;
}
.slider-btn:hover {
  background: var(--tirkiz);
  color: var(--white);
  border-color: var(--tirkiz);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  background: var(--white);
  color: var(--grey-mid);
  border-color: rgba(0,0,0,0.1);
}

/* Slide Indicators */
.slider-indicators {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,151,178,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator-dot.active {
  background: var(--tirkiz);
  transform: scale(1.2);
}

.review-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 300px;
  flex: 0 0 32%;
  max-width: 400px;
  scroll-snap-align: start;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tirkiz);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-author {
  font-weight: 600;
  color: var(--antracit);
  font-size: var(--text-sm);
}

.review-date {
  font-size: var(--text-xs);
  color: var(--grey-mid);
}

.review-g-icon {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.review-card:hover .review-g-icon {
  opacity: 1;
}

.review-stars {
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-3);
  color: #FFA41C;
}

.review-text {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--antracit);
  line-height: 1.5;
}

/* ─── BLOG CARDS (Legacy, Keeping for reference or other pages) ─── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(0,151,178,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img-link { display: block; overflow: hidden; }

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img { transform: scale(1.05); }

.blog-card-body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-2);
}

.blog-card-cat {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--tirkiz);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--antracit);
  line-height: 1.3;
}

.blog-card-title a { color: inherit; transition: color var(--transition); }
.blog-card-title a:hover { color: var(--tirkiz); }

.blog-card-date {
  font-size: var(--text-xs);
  color: var(--grey-mid);
  margin: 0;
}

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--grey-mid);
  flex: 1;
  margin: 0;
}

/* ─── FAQ ACCORDION (Card Style) ─── */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 151, 178, 0.1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 151, 178, 0.22);
}

.faq-item.active {
  background: var(--ice-blue);
  border-color: var(--tirkiz);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-8);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--sp-4);
}

.faq-q-text {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--antracit);
  transition: color var(--transition);
}

.faq-item:hover .faq-q-text {
  color: var(--tirkiz);
}

.faq-item.active .faq-q-text {
  color: var(--tirkiz);
}

.faq-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--ice-blue);
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.faq-item:hover .faq-icon-wrap {
  background: var(--tirkiz-light);
}

.faq-item:hover .faq-icon-wrap .faq-icon {
  stroke: var(--white);
}

.faq-item.active .faq-icon-wrap {
  background: var(--tirkiz);
  transform: rotate(180deg);
}

.faq-item.active .faq-icon-wrap .faq-icon {
  stroke: var(--white);
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--tirkiz);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition);
}

.faq-answer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 var(--sp-8) var(--sp-8);
  color: var(--grey-mid);
  font-size: var(--text-base);
  line-height: 1.65;
  margin: 0;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-answer-inner p {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

/* Staggered reveal for FAQ items */
.faq-accordion .faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-container.visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

.faq-container.visible .faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-container.visible .faq-item:nth-child(2) { transition-delay: 0.15s; }
.faq-container.visible .faq-item:nth-child(3) { transition-delay: 0.2s; }
.faq-container.visible .faq-item:nth-child(4) { transition-delay: 0.25s; }
.faq-container.visible .faq-item:nth-child(5) { transition-delay: 0.3s; }
.faq-container.visible .faq-item:nth-child(6) { transition-delay: 0.35s; }
.faq-container.visible .faq-item:nth-child(7) { transition-delay: 0.4s; }
.faq-container.visible .faq-item:nth-child(8) { transition-delay: 0.45s; }
.faq-container.visible .faq-item:nth-child(9) { transition-delay: 0.5s; }
.faq-container.visible .faq-item:nth-child(10) { transition-delay: 0.55s; }

/* Responsive FAQ Layout */
@media (min-width: 992px) {
  .faq-container {
    max-width: 1050px;
  }
  .faq-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--sp-5);
  }
  .faq-actions {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .faq-accordion:not(.expanded) .faq-item:nth-child(n+5) {
    display: none;
  }
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--tirkiz) 0%, var(--teal-dark) 100%);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  position: relative;
  z-index: 1;
}

.cta-banner-text h2 { color: var(--white); margin-bottom: var(--sp-3); }
.cta-banner-text p  { color: rgba(255,255,255,0.8); max-width: 500px; }

.cta-banner-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .stats-block { position: static; flex-direction: row; flex-wrap: wrap; margin-bottom: var(--sp-6); }
  .why-us-right { display: flex; flex-direction: column; }
  .why-us-img { height: auto; }
  .hero-orbital { display: none; }
}

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .awards-teaser-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .review-card { flex: 0 0 85%; }
  .slider-btn { display: none; } /* Hide arrows on mobile, rely on swipe */
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-ctas { flex-direction: column; }
  .hero-badges { gap: var(--sp-2); }
  .trust-badge { font-size: var(--text-xs); }
  .why-us-grid { gap: var(--sp-8); grid-template-columns: 1fr; }
  .stats-block { flex-direction: row; flex-wrap: wrap; }
  .why-us-img { height: auto; aspect-ratio: 480 / 560; object-fit: contain; background: var(--ice-blue); }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
  .hero > .container { padding-bottom: 2rem; display: flex; flex-direction: column; justify-content: center; min-height: 100svh; }
  .hero-scroll { 
    display: flex; 
    position: relative; 
    bottom: auto; 
    left: auto; 
    transform: none; 
    margin-top: var(--sp-10);
    padding-bottom: var(--sp-6);
  }
}

/* ─── SERVICES TEASER (HOME) ─── */
.services-teaser-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-12);
}

.services-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.section-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.teaser-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.teaser-card__glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.teaser-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 151, 178, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.teaser-card:hover .teaser-card__glass {
  opacity: 1;
}

.teaser-card__icon {
  width: 56px;
  height: 56px;
  background: var(--ice-blue);
  color: var(--tirkiz);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: inset 0 0 0 1px rgba(0, 151, 178, 0.1);
}

.teaser-card:hover .teaser-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--tirkiz);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 151, 178, 0.25);
}

.teaser-card__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.teaser-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--sp-2);
  color: var(--antracit);
  letter-spacing: -0.01em;
}

.teaser-card p {
  font-size: 0.95rem;
  color: var(--grey-mid);
  line-height: 1.5;
  margin-bottom: var(--sp-5);
  flex: 1;
}

.teaser-footer {
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--tirkiz);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.teaser-card:hover .teaser-link {
  gap: 0.9rem;
  color: var(--tirkiz-dark);
}

.teaser-link .arrow {
  transition: transform 0.3s ease;
}

@media (max-width: 991px) {
  .services-teaser-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  
  .teaser-card {
    padding: var(--sp-10) var(--sp-8);
    text-align: center;
    align-items: center;
  }

  .teaser-card__icon {
    margin-inline: auto;
  }

  .teaser-footer {
    width: 100%;
    justify-content: center;
  }
}

.btn-quick-book {
  padding: 0.7rem 1.25rem;
  font-size: 14px;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: normal;
}
