/* =======================================
   KASHTBHANJAN HORIZONS - Premium Animations
   Layered on top of style.css
   ======================================= */

/* ============ GLOBAL POLISH ============ */
::selection { background: var(--gold); color: #fff; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* Page load fade-in */
body { animation: pageFadeIn 0.8s ease-out; }
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============ TOPBAR & NAVBAR POLISH ============ */
.topbar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212,166,72,0.15), transparent);
  animation: topbarSweep 6s linear infinite;
}
@keyframes topbarSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.topbar-inner { position: relative; z-index: 1; }
.topbar-right a { transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.topbar-right a:hover { transform: translateY(-3px) rotate(-8deg); box-shadow: 0 6px 16px rgba(212,166,72,0.5); }

.navbar { backdrop-filter: blur(12px); background: rgba(255,255,255,0.96); }
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 6px 30px rgba(10,77,140,0.1);
}

.logo-icon {
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: rotate(45deg) translate(-100%, -100%);
  animation: logoShine 4s ease-in-out infinite;
}
@keyframes logoShine {
  0%, 100% { transform: rotate(45deg) translate(-100%, -100%); }
  50% { transform: rotate(45deg) translate(100%, 100%); }
}
.logo:hover .logo-icon { transform: rotate(-12deg) scale(1.08); transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }

.nav-links > a {
  position: relative;
  overflow: hidden;
}
.nav-links > a:not(.nav-cta)::before {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-links > a:not(.nav-cta):hover::before { width: calc(100% - 32px); }
.nav-links > a.active::after { animation: navUnderline 0.5s ease forwards; }
@keyframes navUnderline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.nav-cta {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.nav-cta:hover::before { transform: translateX(0); }

/* ============ BUTTON POLISH ============ */
.btn {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}
.btn:hover::after { width: 320px; height: 320px; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  background-size: 200% 200%;
  animation: btnGradient 4s ease infinite;
}
@keyframes btnGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); }
.btn-primary:active { transform: translateY(-1px) scale(0.99); }

/* ============ HERO ENHANCEMENTS ============ */
.hero { position: relative; }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,166,72,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(26,108,181,0.2) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* Floating plane decoration */
.hero::after {
  content: '\f5b0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 22%;
  left: -100px;
  font-size: 36px;
  color: rgba(255,255,255,0.4);
  z-index: 2;
  animation: planeFly 18s linear infinite;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
@keyframes planeFly {
  0% { left: -100px; top: 22%; transform: rotate(-5deg); opacity: 0; }
  10% { opacity: 1; }
  50% { top: 18%; }
  90% { opacity: 1; }
  100% { left: 110%; top: 25%; transform: rotate(5deg); opacity: 0; }
}

.hero-eyebrow {
  background: rgba(212,166,72,0.18);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.hero-eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.hero-content h1 {
  background: linear-gradient(135deg, #fff 0%, #fff 50%, #f0c970 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content h1 .gold {
  -webkit-text-fill-color: var(--gold-light);
  display: inline-block;
  animation: goldPulse 3s ease-in-out infinite;
}
@keyframes goldPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(240,201,112,0.4), 0 0 40px rgba(240,201,112,0.2); }
  50% { text-shadow: 0 0 30px rgba(240,201,112,0.7), 0 0 60px rgba(240,201,112,0.3); }
}

.hero-cta .btn { animation: heroCtaIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) backwards; }
.hero-cta .btn:nth-child(1) { animation-delay: 0.5s; }
.hero-cta .btn:nth-child(2) { animation-delay: 0.65s; }
.hero-cta .btn:nth-child(3) { animation-delay: 0.8s; }
@keyframes heroCtaIn {
  from { opacity: 0; transform: translateY(20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-stats > div {
  position: relative;
  padding-left: 18px;
  animation: statSlide 1s ease backwards;
}
.hero-stats > div::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 8px;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 3px;
}
.hero-stats > div:nth-child(1) { animation-delay: 1s; }
.hero-stats > div:nth-child(2) { animation-delay: 1.15s; }
.hero-stats > div:nth-child(3) { animation-delay: 1.3s; }
.hero-stats > div:nth-child(4) { animation-delay: 1.45s; }
@keyframes statSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-stats strong {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Scroll indicator */
.hero-dots .dot { position: relative; }
.hero-dots .dot.active { box-shadow: 0 0 12px rgba(212,166,72,0.7); }

/* ============ QUICK SEARCH ============ */
.search-form {
  border: 1px solid rgba(255,255,255,0.6);
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  position: relative;
  overflow: hidden;
}
.search-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
  background-size: 200% 100%;
  animation: gradientFlow 4s linear infinite;
}
@keyframes gradientFlow {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}
.search-field input,
.search-field select { transition: all 0.3s ease; }
.search-field input:focus,
.search-field select:focus {
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,77,140,0.1);
  transform: translateY(-1px);
}
.btn-search:hover { transform: translateY(-2px) scale(1.05); }

/* ============ SECTION HEAD ENHANCEMENTS ============ */
.section-head .eyebrow {
  position: relative;
  display: inline-block;
  padding: 0 30px;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px; height: 1px;
  background: var(--gold);
}
.section-head .eyebrow::before { left: 0; }
.section-head .eyebrow::after { right: 0; }

.section-head h2 .gold {
  position: relative;
  display: inline-block;
}
.section-head h2 .gold::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 8px;
  background: rgba(212,166,72,0.2);
  z-index: -1;
  border-radius: 4px;
}

/* ============ SERVICE CARDS ENHANCEMENT ============ */
.services-section { background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%); position: relative; }
.services-section::before {
  content: '';
  position: absolute;
  top: 50px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,166,72,0.08), transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.services-section::after {
  content: '';
  position: absolute;
  bottom: 50px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(10,77,140,0.08), transparent 70%);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.service-card {
  background: linear-gradient(145deg, #ffffff, #fafcff);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212,166,72,0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover { transform: translateY(-12px) scale(1.02); }
.service-card:hover .service-icon {
  transform: rotateY(360deg) scale(1.1);
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white;
}
.service-icon { transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.service-card h3 { transition: color 0.3s ease; }
.service-card:hover h3 { color: var(--gold-dark); }

/* ============ DESTINATION CARDS ============ */
.dest-card {
  isolation: isolate;
  transform-style: preserve-3d;
}
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212,166,72,0.3));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.dest-card:hover::after { opacity: 1; }
.dest-card {
  background-size: cover !important;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.dest-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(10,77,140,0.25), 0 0 30px rgba(212,166,72,0.2);
}
.dest-card .dest-info { transition: transform 0.5s ease; }
.dest-card:hover .dest-info { transform: translateY(-8px); }

.dest-card .dest-info::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0) rotate(-45deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dest-card:hover .dest-info::after {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.dest-price {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 4px 14px rgba(212,166,72,0.4);
  transition: all 0.3s ease;
}
.dest-card:hover .dest-price { transform: scale(1.05); }

/* ============ WHY CHOOSE US ============ */
.why-icon {
  position: relative;
  overflow: hidden;
}
.why-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), var(--primary), var(--gold));
  background-size: 200% 200%;
  animation: gradientFlow 3s linear infinite;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.why-item:hover .why-icon::before { opacity: 1; }
.why-item:hover .why-icon {
  transform: rotateY(180deg);
  transition: transform 0.6s ease;
}
.why-item { transition: transform 0.3s ease; }
.why-item:hover { transform: translateX(8px); }

.why-image img {
  transition: all 0.6s ease;
  filter: saturate(1.05);
}
.why-image:hover img {
  transform: scale(1.04) rotate(-1deg);
  filter: saturate(1.2) brightness(1.05);
}
.floating-badge {
  animation: badgeFloat 3.5s ease-in-out infinite;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid rgba(212,166,72,0.2);
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: linear-gradient(145deg, #ffffff, #fafcff);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,166,72,0.08), transparent);
  transition: left 0.8s ease;
}
.testimonial-card:hover::before { left: 100%; }
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(10,77,140,0.15);
}
.testimonial-card .stars {
  display: inline-block;
  animation: starsShimmer 4s ease-in-out infinite;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes starsShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.author img {
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(10,77,140,0.15);
  transition: transform 0.4s ease;
}
.testimonial-card:hover .author img { transform: scale(1.1) rotate(-5deg); }

/* ============ CTA BANNER ============ */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-overlay {
  background: linear-gradient(135deg, rgba(6,55,102,0.95), rgba(10,77,140,0.85));
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,166,72,0.3), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(26,108,181,0.4), transparent 40%);
  z-index: 1;
  animation: ctaGlow 6s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  from { opacity: 0.5; transform: scale(1); }
  to { opacity: 1; transform: scale(1.05); }
}
.cta-content { position: relative; z-index: 3; }
.cta-content h2 {
  animation: ctaTextIn 1s ease;
}
@keyframes ctaTextIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ FOOTER ENHANCEMENTS ============ */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #063766 100%);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,166,72,0.1), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.footer-col h4::after {
  background: linear-gradient(90deg, var(--gold), transparent);
  width: 40px;
  transition: width 0.4s ease;
}
.footer-col:hover h4::after { width: 70px; }
.footer-col ul a { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.footer-col ul a:hover { padding-left: 12px; }
.footer-col ul a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 8px;
  font-size: 9px;
  color: var(--gold);
  opacity: 0;
  margin-left: -16px;
  transition: all 0.3s ease;
}
.footer-col ul a:hover::before {
  opacity: 1;
  margin-left: 0;
}
.social-links a {
  position: relative;
  overflow: hidden;
}
.social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: scale(0);
  transition: transform 0.4s ease;
  border-radius: 50%;
}
.social-links a:hover::before { transform: scale(1); }
.social-links a i { position: relative; z-index: 1; transition: transform 0.4s ease; }
.social-links a:hover i { transform: rotateY(360deg); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: rgba(37,211,102,0.4);
  border-radius: 50%;
  animation: ringPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes ringPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-float:hover {
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 12px 32px rgba(37,211,102,0.6);
}
.whatsapp-float i { animation: whatsappWiggle 3s ease-in-out infinite; }
@keyframes whatsappWiggle {
  0%, 90%, 100% { transform: rotate(0); }
  93% { transform: rotate(-12deg); }
  96% { transform: rotate(12deg); }
}

/* ============ INQUIRY MODAL ============ */
.inquiry-modal { backdrop-filter: blur(10px); }
.inquiry-box {
  background: linear-gradient(145deg, #ffffff, #fafcff);
  border: 1px solid rgba(212,166,72,0.15);
  position: relative;
  overflow: hidden;
}
.inquiry-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
  background-size: 200% 100%;
  animation: gradientFlow 3s linear infinite;
}
.inquiry-box h3 {
  animation: modalHeadingIn 0.6s ease 0.2s backwards;
}
@keyframes modalHeadingIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.inquiry-box input,
.inquiry-box select,
.inquiry-box textarea { transition: all 0.3s ease; }
.inquiry-box input:focus,
.inquiry-box select:focus,
.inquiry-box textarea:focus {
  box-shadow: 0 0 0 3px rgba(10,77,140,0.1);
  transform: translateY(-1px);
}

/* ============ PAGE BANNER ============ */
.page-banner {
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212,166,72,0.15), transparent 50%);
  z-index: 1;
}
.page-banner > * { position: relative; z-index: 2; }
.banner-content h1 {
  animation: bannerTitleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.banner-content p { animation: bannerSubIn 0.8s ease 0.2s backwards; }
.breadcrumb { animation: bannerSubIn 0.8s ease 0.4s backwards; }
@keyframes bannerTitleIn {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bannerSubIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ TAB BUTTONS ============ */
.tab-btn {
  position: relative;
  overflow: hidden;
}
.tab-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.tab-btn:hover::before { transform: translateY(0); }
.tab-btn:hover { color: white; border-color: transparent; }
.tab-btn.active {
  animation: tabActive 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes tabActive {
  from { transform: scale(0.9); }
  to { transform: scale(1); }
}

/* ============ PACKAGE CARDS ============ */
.package-card {
  position: relative;
  isolation: isolate;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(10,77,140,0.18);
}
.pkg-image {
  overflow: hidden;
  position: relative;
}
.pkg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.package-card:hover .pkg-image::after { opacity: 1; }
.package-card:hover .pkg-image { transform: scale(1.08); }
.pkg-image { transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.pkg-tag {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 4px 12px rgba(212,166,72,0.4);
  animation: tagFloat 3s ease-in-out infinite;
}
@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.pkg-highlights li { transition: all 0.3s ease; }
.package-card:hover .pkg-highlights li { padding-left: 26px; }
.package-card:hover .pkg-highlights li::before { transform: scale(1.3); color: var(--gold-dark); }

.pkg-price strong {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ PACKAGE DETAILS ============ */
.details-block {
  background: linear-gradient(145deg, #ffffff, #fafcff);
  border: 1px solid rgba(212,166,72,0.08);
  transition: all 0.4s ease;
}
.details-block:hover {
  box-shadow: 0 12px 30px rgba(10,77,140,0.1);
  transform: translateY(-2px);
}
.day {
  transition: all 0.3s ease;
  padding: 6px 0 6px 22px;
  border-radius: 0 12px 12px 0;
}
.day:hover {
  background: linear-gradient(90deg, rgba(212,166,72,0.05), transparent);
  transform: translateX(8px);
}
.day > span {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(10,77,140,0.2);
}
.day:hover > span {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: scale(1.05);
}

.gallery img {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(1.05);
}
.gallery img:hover {
  transform: scale(1.08);
  filter: saturate(1.2) brightness(1.05);
  z-index: 2;
  box-shadow: 0 16px 40px rgba(10,77,140,0.25);
}

.price-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212,166,72,0.15), transparent 30%);
  animation: priceCardSpin 8s linear infinite;
}
@keyframes priceCardSpin {
  to { transform: rotate(360deg); }
}
.price-card > * { position: relative; z-index: 1; }
.price-card h3 {
  animation: priceShine 3s ease-in-out infinite;
}
@keyframes priceShine {
  0%, 100% { text-shadow: 0 0 20px rgba(240,201,112,0.4); }
  50% { text-shadow: 0 0 30px rgba(240,201,112,0.8); }
}
.quick-info li { transition: all 0.3s ease; padding-left: 0; }
.quick-info li:hover { padding-left: 6px; color: var(--gold-light); }

/* ============ SERVICE ROWS (services.html) ============ */
.service-img {
  position: relative;
  overflow: hidden;
}
.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212,166,72,0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-row:hover .service-img::after { opacity: 1; }
.service-row {
  transition: transform 0.4s ease;
}
.service-num {
  background: linear-gradient(135deg, var(--gold), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.7;
  transition: all 0.4s ease;
}
.service-row:hover .service-num {
  opacity: 1;
  transform: translateX(6px);
}

/* ============ MV CARDS (about.html) ============ */
.mv-card {
  background: linear-gradient(145deg, #ffffff, #fafcff);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(212,166,72,0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mv-card:hover::before { opacity: 1; }
.mv-card:hover .mv-icon {
  transform: rotateY(360deg) scale(1.1);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 12px 28px rgba(212,166,72,0.4);
}
.mv-icon { transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.mv-card:hover { transform: translateY(-10px); }

/* ============ STATS ============ */
.stat-card {
  background: linear-gradient(145deg, #ffffff, #fafcff);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card strong {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ CONTACT CARDS ============ */
.contact-card {
  background: linear-gradient(145deg, #ffffff, #fafcff);
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  transition: all 0.4s ease;
  transform: translateX(-50%);
}
.contact-card:hover::after { width: 80%; }
.contact-card:hover .contact-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 12px 28px rgba(10,77,140,0.4);
}
.contact-icon { transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.contact-icon.whatsapp:hover { box-shadow: 0 12px 28px rgba(37,211,102,0.5) !important; }
.contact-card a strong { transition: color 0.3s ease; }

.contact-form-wrap {
  background: linear-gradient(145deg, #ffffff, #fafcff);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--primary));
}
.contact-form input,
.contact-form select,
.contact-form textarea { transition: all 0.3s ease; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(10,77,140,0.1);
  transform: translateY(-1px);
}
.contact-map iframe { transition: all 0.4s ease; }
.contact-map:hover iframe { box-shadow: 0 16px 40px rgba(10,77,140,0.2); }

/* ============ SCROLL REVEAL CLASSES ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ============ LOADING SHIMMER ============ */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: skeletonLoad 1.5s ease infinite;
}
@keyframes skeletonLoad {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============ SCROLL-TO-TOP BUTTON ============ */
.scroll-top {
  position: fixed;
  bottom: 100px; right: 30px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(10,77,140,0.3);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 28px rgba(10,77,140,0.5);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

/* ============ PAGE-LOAD STAGGER ============ */
.stagger > * { opacity: 0; animation: staggerIn 0.6s ease forwards; }
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.15s; }
.stagger > *:nth-child(3) { animation-delay: 0.25s; }
.stagger > *:nth-child(4) { animation-delay: 0.35s; }
.stagger > *:nth-child(5) { animation-delay: 0.45s; }
.stagger > *:nth-child(6) { animation-delay: 0.55s; }
@keyframes staggerIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =======================================
   NEW PROFESSIONAL SECTIONS
   ======================================= */

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 28px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,166,72,0.15), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(212,166,72,0.1), transparent 40%);
  animation: ctaGlow 6s ease-in-out infinite alternate;
}
.trust-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { transform: translateY(-3px); }
.trust-item i {
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.trust-item:hover i { transform: rotateY(360deg) scale(1.15); }
.trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 12px;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* ============ STYLE CARDS (Travel by Style) ============ */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.style-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  isolation: isolate;
}
.style-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(10,77,140,0.3);
}
.style-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,55,102,0.95) 0%, rgba(10,77,140,0.5) 50%, rgba(0,0,0,0.2) 100%);
  transition: var(--transition);
}
.style-card:hover .style-overlay {
  background: linear-gradient(to top, rgba(212,166,72,0.85) 0%, rgba(10,77,140,0.6) 50%, rgba(0,0,0,0.3) 100%);
}
.style-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  z-index: 2;
  transition: transform 0.5s ease;
}
.style-card:hover .style-content { transform: translateY(-8px); }
.style-content i {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 14px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}
.style-card:hover .style-content i {
  background: var(--white);
  color: var(--gold-dark);
  transform: rotateY(360deg);
}
.style-content h3 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1.5rem;
}
.style-content p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 14px;
}
.style-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.style-card:hover .style-link {
  color: var(--white);
  gap: 14px;
}

/* ============ HOW IT WORKS / PROCESS ============ */
.process-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.3;
  z-index: 0;
}
.process-step {
  position: relative;
  background: var(--white);
  padding: 40px 30px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  z-index: 1;
}
.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,166,72,0.3);
}
.step-number {
  position: absolute;
  top: -22px;
  right: 20px;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(212,166,72,0.4);
  transition: var(--transition);
}
.process-step:hover .step-number {
  transform: scale(1.15) rotate(360deg);
}
.step-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(10,77,140,0.1), rgba(212,166,72,0.15));
  color: var(--primary);
  border-radius: 50%;
  font-size: 30px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step:hover .step-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  transform: rotateY(360deg);
}
.process-step h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.process-step p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}

/* ============ COUNTER BANNER ============ */
.counter-banner {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}
.counter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,55,102,0.92), rgba(10,77,140,0.85));
}
.counter-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(212,166,72,0.2), transparent 40%),
    radial-gradient(circle at 75% 50%, rgba(26,108,181,0.4), transparent 40%);
  animation: ctaGlow 6s ease-in-out infinite alternate;
}
.counter-banner .container { position: relative; z-index: 2; }
.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.counter-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.counter-item:last-child { border-right: none; }
.counter-item:hover { transform: translateY(-6px); }
.counter-icon {
  width: 70px; height: 70px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,166,72,0.18);
  border: 2px solid rgba(212,166,72,0.4);
  border-radius: 50%;
  font-size: 28px;
  color: var(--gold-light);
  transition: var(--transition);
}
.counter-item:hover .counter-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotateY(360deg);
  border-color: var(--gold);
}
.counter-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  line-height: 1;
}
.counter-item span {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ============ OFFERS SECTION ============ */
.offers-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.offer-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(10,77,140,0.3);
}
.offer-card.big { grid-row: span 1; }
.offer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.offer-card:hover .offer-bg { transform: scale(1.1); }
.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,55,102,0.4) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.offer-card.big .offer-overlay {
  background: linear-gradient(135deg, rgba(6,55,102,0.5) 0%, rgba(212,166,72,0.4) 100%);
}
.offer-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}
.offer-card.big .offer-content { padding: 40px; }
.offer-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(212,166,72,0.4);
  animation: tagFloat 3s ease-in-out infinite;
}
.offer-content h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.5rem;
}
.offer-card.big .offer-content h3 { font-size: 2rem; }
.offer-content > p {
  font-size: 14px;
  opacity: 0.95;
  margin-bottom: 16px;
}
.offer-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.old-price {
  font-size: 15px;
  text-decoration: line-through;
  opacity: 0.7;
}
.new-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.offer-card.big .new-price { font-size: 2.4rem; }
.discount {
  background: rgba(255,255,255,0.95);
  color: var(--gold-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.offer-card:hover .offer-link {
  gap: 14px;
  color: var(--white);
}

/* ============ PARTNERS / CERTIFICATIONS ============ */
.partners-section {
  padding: 50px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.partners-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gray-600);
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 600;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  transition: all 0.4s ease;
  filter: grayscale(1);
  opacity: 0.6;
}
.partner-item:hover {
  filter: grayscale(0);
  opacity: 1;
  color: var(--primary);
  transform: translateY(-4px);
}
.partner-item i { font-size: 32px; }
.partner-item span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ============ FAQ SECTION ============ */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.faq-side .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.faq-side h2 { margin-bottom: 16px; }
.faq-side p { color: var(--gray-600); margin-bottom: 14px; }
.faq-side { position: sticky; top: 100px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); border-color: rgba(212,166,72,0.3); }
.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}
.faq-question i {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 28px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}
.faq-answer p {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
  padding: 60px 0;
  background: var(--white);
}
.newsletter-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10,77,140,0.25);
}
.newsletter-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,166,72,0.2), transparent 70%);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}
.newsletter-card::after {
  content: '\f072';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: -40px; right: 10%;
  font-size: 200px;
  color: rgba(255,255,255,0.04);
  z-index: 0;
}
.newsletter-text {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.newsletter-icon {
  display: inline-flex;
  width: 60px; height: 60px;
  align-items: center; justify-content: center;
  background: rgba(212,166,72,0.2);
  border: 2px solid rgba(212,166,72,0.4);
  border-radius: 50%;
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 16px;
  animation: badgeFloat 3.5s ease-in-out infinite;
}
.newsletter-text h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.newsletter-text p {
  opacity: 0.9;
  font-size: 14.5px;
  line-height: 1.6;
}
.newsletter-form {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  background: var(--white);
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  outline: none;
  color: var(--gray-800);
}
.newsletter-form button {
  border-radius: 50px;
  padding: 12px 24px;
  white-space: nowrap;
}

/* ============ RESPONSIVE FIXES FOR NEW SECTIONS ============ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: none; }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .offer-card.big { grid-column: span 2; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .faq-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .faq-side { position: static; }
  .newsletter-card { grid-template-columns: 1fr; padding: 40px 30px; gap: 30px; }
  .counter-banner { background-attachment: scroll; }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-item { padding: 8px; border-right: none !important; }
  .trust-item i { font-size: 22px; }
  .trust-item strong { font-size: 13px; }
  .trust-item span { font-size: 11px; }

  .style-grid { grid-template-columns: 1fr; }
  .style-card { height: 280px; }

  .process-grid { grid-template-columns: 1fr; gap: 40px; }

  .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .counter-item { border-right: none !important; padding: 16px 8px; }
  .counter-item strong { font-size: 2.2rem; }

  .offers-grid { grid-template-columns: 1fr; }
  .offer-card.big { grid-column: span 1; }
  .offer-card { height: 320px; }
  .offer-card.big .offer-content h3 { font-size: 1.5rem; }
  .offer-card.big .new-price { font-size: 2rem; }

  .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .partner-item i { font-size: 24px; }
  .partner-item span { font-size: 11px; }

  .newsletter-card { padding: 30px 24px; }
  .newsletter-text h3 { font-size: 1.4rem; }
  .newsletter-form { flex-direction: column; padding: 14px; border-radius: 16px; gap: 10px; }
  .newsletter-form button { width: 100%; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-question { padding: 18px 20px; font-size: 14.5px; }
  .faq-item.active .faq-answer { padding: 0 20px 18px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
