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

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

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: saturate(1.2) contrast(1.1);
  mix-blend-mode: luminosity; /* Gives a sophisticated cinematic look */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 95, 115, 0.4) 0%, rgba(11, 17, 26, 0.9) 80%);
}

/* Ambient glowing orbs */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
  animation: floatAmbient 10s ease-in-out infinite alternate;
}

.hero::before {
  width: 600px;
  height: 600px;
  background: rgba(0, 151, 178, 0.15);
  top: -10%;
  left: -10%;
}

.hero::after {
  width: 500px;
  height: 500px;
  background: rgba(0, 180, 216, 0.1);
  bottom: -10%;
  right: -5%;
  animation-delay: -5s;
}

@keyframes floatAmbient {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 30px); }
}

/* Orbital decoration completely revamped to dynamic 3D-like rings */
.hero-orbital {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotateX(60deg) rotateY(20deg);
  width: 600px;
  height: 600px;
  z-index: 1;
  pointer-events: none;
  transform-style: preserve-3d;
}

.orbital-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 180, 216, 0.2);
  animation: orbit3D 25s linear infinite;
}

.orbital-ring::before, .orbital-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--tirkiz-light);
  box-shadow: 0 0 20px 2px var(--tirkiz-light);
}

.orbital-ring::before {
  width: 8px; height: 8px;
  top: -4px; left: 50%;
  transform: translateX(-50%);
}

.orbital-ring::after {
  inset: 40px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: transparent;
  box-shadow: none;
}

.orbital-dots {
  position: absolute;
  inset: 0;
  animation: orbit3DReverse 30s linear infinite;
}

.orbital-dots span {
  position: absolute;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 15px var(--white);
}

.orbital-dots span:nth-child(1) { width: 6px; height: 6px; top: 10%; left: 20%; }
.orbital-dots span:nth-child(2) { width: 4px; height: 4px; bottom: 20%; right: 10%; opacity: 0.6; }
.orbital-dots span:nth-child(3) { width: 3px; height: 3px; top: 50%; left: 0%; opacity: 0.4; }

@keyframes orbit3D {
  0% { transform: rotateZ(0deg); }
  100% { transform: rotateZ(360deg); }
}

@keyframes orbit3DReverse {
  0% { transform: rotateZ(360deg); }
  100% { transform: rotateZ(0deg); }
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--sp-12);
}

.hero-text {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-premium-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: 0.35rem 1rem 0.35rem 0.35rem;
  border-radius: 40px;
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-premium-badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

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

.hero-premium-badge .hero-label {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-h1 {
  color: var(--white);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: var(--sp-6);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-h1 span {
  display: block;
  background: linear-gradient(135deg, #FFF 20%, var(--tirkiz-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-xl);
  max-width: 580px;
  margin-bottom: var(--sp-10);
  line-height: 1.6;
  font-weight: 300;
}

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

.hero-cta-main {
  background: linear-gradient(135deg, var(--tirkiz), var(--tirkiz-light));
  border: none;
  box-shadow: 0 10px 30px rgba(0, 151, 178, 0.4);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-cta-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--tirkiz-light), var(--tirkiz));
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.hero-cta-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 151, 178, 0.6);
}

.hero-cta-main:hover::before {
  opacity: 1;
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 60px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
  font-weight: 500;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(0, 180, 216, 0.5);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  color: var(--white);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--tirkiz-light), var(--tirkiz));
  border-radius: 50%;
  padding: 5px;
  color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 180, 216, 0.4);
}

.trust-icon.award-glow {
  background: transparent;
  font-size: 1.4rem;
  padding: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

/* Premium Floating rating card - The Ultimate Glassmorphism */
.hero-side {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1000px;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.premium-hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
  max-width: 320px;
  width: 100%;
  position: relative;
  transform: rotateY(-10deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
  z-index: -1;
  pointer-events: none;
}

.premium-hero-card:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 40px rgba(0, 180, 216, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.rating-header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  transform: translateZ(30px);
}

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

.hero-rating-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-rating-stars { 
  font-size: 1.1rem; 
  color: #FFD700;
  letter-spacing: 4px;
  margin-top: 8px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
}

.hero-rating-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.5;
  transform: translateZ(20px);
}

.rating-avatars {
  display: flex;
  align-items: center;
  margin-top: var(--sp-3);
  transform: translateZ(40px);
}

.rating-avatars .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--footer-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-left: -12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  position: relative;
  transition: transform 0.3s ease, z-index 0.3s;
}

.rating-avatars .avatar:hover {
  transform: translateY(-5px) scale(1.1);
  z-index: 10;
}

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

.rating-avatars .bg-1 { background: linear-gradient(135deg, #4285F4, #1A73E8); }
.rating-avatars .bg-2 { background: linear-gradient(135deg, #34A853, #188038); }
.rating-avatars .bg-3 { background: linear-gradient(135deg, #EA4335, #D93025); }
.rating-avatars .count { background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); color: var(--white); border-color: rgba(255,255,255,0.2); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 2s ease 1.5s both;
  z-index: 10;
}

.hero-scroll::before {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
  0% { transform: translateY(-10px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

.hero-scroll-text {
  transition: color 0.3s ease;
}

.hero-scroll:hover .hero-scroll-text {
  color: var(--white);
}


/* ─── 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 { 
    right: -100px;
    top: 15%;
    width: 320px;
    height: 320px;
    opacity: 0.6;
  }
}

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: var(--sp-8); }
  .hero-side { 
    display: flex; 
    justify-content: center;
    animation-delay: 0.5s;
  }
  .premium-hero-card {
    max-width: 280px;
    padding: var(--sp-4);
  }
  .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(2.2rem, 9vw, 3.2rem); 
    margin-bottom: var(--sp-4);
    text-align: center;
  }
  .hero-sub {
    text-align: center;
    margin-inline: auto;
    font-size: 1rem;
    margin-bottom: var(--sp-6);
  }
  .hero-ctas { 
    flex-direction: column; 
    width: 100%; 
    gap: var(--sp-3);
  }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-badges { justify-content: center; gap: var(--sp-2); }
  .trust-badge { font-size: 0.75rem; padding: 6px 12px; }
  .hero-premium-badge { margin-inline: auto; display: flex; width: max-content; }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-4);
  }

  .hero-side { 
    display: flex; 
    justify-content: center;
    width: 100%;
    order: -1; /* Place above the H1 on mobile */
    margin-top: 0;
    margin-bottom: var(--sp-1);
  }
  
  .premium-hero-card {
    flex-direction: row;
    align-items: center;
    padding: 6px 14px;
    background: rgba(0, 151, 178, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: none;
    width: max-content;
    gap: var(--sp-3);
  }

  .rating-header { gap: var(--sp-2); }
  .hero-rating-num { font-size: 1rem; color: var(--white); font-family: var(--font-body); }
  .hero-rating-stars { font-size: 10px; margin-top: 0; letter-spacing: 1px; }
  
  /* Hide heavy elements on mobile pill */
  .hero-rating-label,
  .rating-avatars { display: none; }

  .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-top: calc(var(--nav-h) + 1rem);
    padding-bottom: 2rem; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    min-height: 100svh; 
  }
  .hero-orbital {
    width: 250px;
    height: 250px;
    right: -60px;
    top: 10%;
    opacity: 0.4;
  }
  .hero-scroll { 
    display: flex; 
    position: relative; 
    bottom: auto; 
    left: auto; 
    transform: none; 
    margin-top: var(--sp-8);
    padding-bottom: var(--sp-4);
  }
}

/* ─── 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;
}
