/* ===========================================================
   BLUESAFA TOURS - STATIC PHP WEBSITE STYLES
   Converted from Next.js/React TypeScript to Pure CSS
   =========================================================== */

/* CSS Variables - Premium Luxury Travel Palette */
:root {
  /* Fonts */
  --font-ubuntu: 'Ubuntu', sans-serif;
  --font-sans: 'Ubuntu', sans-serif;
  --font-serif: 'Ubuntu', sans-serif;

  /* Light Theme Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f7f6;
  --text-primary: #0f2e22;
  --text-secondary: #4a5568;
  --text-muted: #718096;

  --primary: #0f3d2e;
  --primary-rgb: 15, 61, 46;
  --primary-hover: #0a2b21;
  --primary-foreground: #ffffff;

  --accent: #d4af37;
  --accent-rgb: 212, 175, 55;
  --accent-hover: #b8962c;
  --accent-foreground: #000000;

  --muted: #64748b;
  --secondary: #f0f7f4;
  --secondary-foreground: #0f3d2e;

  --card-bg: #ffffff;
  --card-border: rgba(0, 0, 0, 0.05);

  --border-color: #e2e8f0;
  --input-bg: #ffffff;
  --input-border: #e2e8f0;

  --button-bg: #0f3d2e;
  --button-text: #ffffff;

  --ocean: #0f3d2e;
  --ocean-light: #1a5c48;
  --ocean-dark: #0a2b21;

  --sunset: #d4af37;
  --sunset-light: #e5c04a;
  --sunset-dark: #b8962c;

  --radius: 0.75rem;

  /* Shadows */
  --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.12);

  --header-bg: rgba(255, 255, 255, 0.9);
  --footer-bg: #0b1f17;
}

[data-theme="dark"] {
  color-scheme: dark;
  /* Dark Theme Colors */
  --bg-primary: #06120d;
  --bg-secondary: #0b1f17;
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  --primary: #1a5c48; /* Lighter green for legibility in dark mode */
  --primary-rgb: 26, 92, 72;
  --primary-hover: #227a60;
  --primary-foreground: #ffffff;

  --accent: #fcd34d;
  --accent-rgb: 252, 211, 77;
  --accent-hover: #fbbf24;
  --accent-foreground: #000000;

  --secondary: #122f24;
  --secondary-foreground: #ffffff;

  --card-bg: #0f2e22;
  --card-border: rgba(255, 255, 255, 0.1);

  --border-color: #1e4a3a;
  --input-bg: #0b1f17;
  --input-border: #1e4a3a;

  --button-bg: #1a5c48;
  --button-text: #ffffff;

  --ocean: #1a5c48;
  --ocean-light: #227a60;
  --ocean-dark: #0f3d2e;

  --sunset: #fbbf24;
  --sunset-light: #fcd34d;
  --sunset-dark: #d97706;

  --header-bg: rgba(6, 18, 13, 0.9);
  --footer-bg: #040d09;
  --shadow-soft: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
  --shadow-strong: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
}

/* Global Form Dark Mode Overrides - Standard CSS */
[data-theme="dark"] select,
[data-theme="dark"] input:not([type="checkbox"]):not([type="radio"]),
[data-theme="dark"] textarea {
  background-color: var(--input-bg) !important;
  color: var(--text-primary) !important;
  border-color: var(--input-border) !important;
}

[data-theme="dark"] select option {
  background-color: #0b1f17 !important;
  color: #ffffff !important;
}

/* Ensure branding text colors are readable in dark mode */
[data-theme="dark"] .text-primary {
  color: var(--text-primary) !important;
}

[data-theme="dark"] .bg-secondary {
  background-color: var(--bg-secondary) !important;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-ubuntu);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 1.0625rem;
  /* Slightly larger base font */
}

/* Typography Utilities */
.font-serif {
  font-family: var(--font-ubuntu);
}

.font-sans {
  font-family: var(--font-ubuntu);
}

/* Layout Utilities */
.site-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Spacing Utilities */
.py-8 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-12 {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.py-16 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-20 {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.py-24 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-16 {
  margin-bottom: 3.5rem;
}

/* Reduced spacing for mobile */
@media (max-width: 768px) {
  .py-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .py-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .py-16 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .py-8 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .mb-16 {
    margin-bottom: 1.25rem;
  }

  .mb-10 {
    margin-bottom: 1rem;
  }

  .mb-8 {
    margin-bottom: 0.75rem;
  }
}

/* Grid Layouts */
.grid {
  display: grid;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-10 {
  gap: 2.5rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:justify-between {
    justify-content: space-between;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-5xl {
  max-width: 1024px;
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Colors & Buttons */
.text-sunset {
  color: var(--sunset);
}

.bg-background {
  background-color: var(--bg-primary);
}

.text-muted-foreground {
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-ocean {
  background-color: var(--ocean);
  color: var(--primary-foreground);
}

.btn-ocean:hover {
  background-color: var(--ocean-light);
}

.btn-white {
  background-color: #ffffff;
  color: #000000;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Tour Card Component */
/* Tour Card Component Redesign */
.tour-card {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--card-border);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-card__image-container {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.tour-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tour-card__title {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

.tour-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  background: var(--bg-secondary);
  color: var(--primary);
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tour-card__description {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.tour-card__meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--border-color);
  margin-bottom: 12px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.meta-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.tour-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
}

.tag-badge {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid var(--border-color);
}

.tour-card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-box .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-box .amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.tour-card__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-custom {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

.btn-details {
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-details:hover {
  background: var(--primary-hover);
}

/* Animations and Utilities */
.hidden {
  display: none;
}

@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }

  .sm\:hidden {
    display: none;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }

  .md\:hidden {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }

  .lg\:hidden {
    display: none;
  }
}

/* Redesigned Section Animations & Utilities */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.shadow-elevated {
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.2);
}

.scroll-fade-up {
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Redesigned Destination Cards */
.dest-section {
  padding: 0;
  /* Use utility classes instead */
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dest-card {
  position: relative;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--bg-secondary);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--shadow-sm);
  display: block;
  text-decoration: none;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dest-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dest-card:hover .dest-card__img {
  transform: scale(1.1);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.dest-card:hover .dest-card__overlay {
  opacity: 1;
}

.dest-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  color: white;
  z-index: 10;
}

.dest-card__title {
  font-family: var(--font-outfit);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  transition: transform 0.4s ease, margin-bottom 0.4s ease;
}

.dest-card__explore {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  margin-top: 4px;
}

.dest-card:hover .dest-card__title {
  margin-bottom: 8px;
}

.dest-card:hover .dest-card__explore {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .dest-card {
    height: 380px;
  }

  .dest-card__title {
    font-size: 1.25rem;
  }
}

/* Premium Destination Page Cards */
.dest-page-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  padding: 60px 0;
}

@media (min-width: 1024px) {
  .dest-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dest-card-featured {
    grid-column: span 2;
    height: 420px !important;
  }
}

.dest-card-new {
  position: relative;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--bg-secondary);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card-new__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card-new:hover .dest-card-new__img {
  transform: scale(1.08);
}

.dest-card-new__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.1) 40%, rgba(8, 20, 14, 0.95) 100%);
  opacity: 0.9;
  transition: opacity 0.5s ease;
}

.dest-card-new:hover .dest-card-new__overlay {
  opacity: 1;
}

.dest-card-new__content {
  position: relative;
  z-index: 10;
  padding: 24px;
  color: white;
}

.dest-card-new__category {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  /* Metallic Gold */
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.dest-card-new__title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.dest-card-featured .dest-card-new__title {
  font-size: 2.5rem;
}

.dest-card-new__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 500px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.dest-card-new__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.dest-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dest-tag-more {
  background: rgba(255, 255, 255, 0.2);
}

.dest-card-new__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 99px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.dest-card-new:hover .dest-card-new__btn {
  background: white;
  color: var(--primary);
}

@media (max-width: 1023px) {
  .dest-card-new__title {
    font-size: 1.5rem;
  }
}

/* ===========================================================
   GLOBAL LAYOUT CONSISTENCY FIX
   =========================================================== */

/* Global Main Container */
.site-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;

  /* Mobile Default (<768px) */
  padding-left: 16px;
  padding-right: 16px;
}

/* Tablet (768px – 1199px) */
@media (min-width: 768px) {
  .site-container {
    max-width: 1160px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
  .site-container {
    max-width: 1400px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Force standard grid alignment */
.site-grid {
  display: grid;
  gap: 24px;
  row-gap: 24px;
}

/* Ensure sections take full width but align children to container */
/* Travel Inspiration (Instagram) Section */
.insta-section {
  background-color: var(--bg-secondary);
  padding: 70px 0;
  text-align: center;
}

.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.insta-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.insta-handle span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.insta-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.insta-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

@media (min-width: 1024px) {
  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.insta-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insta-card:hover img {
  transform: scale(1.1);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 14, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.insta-card:hover .insta-overlay {
  opacity: 1;
}

.insta-meta {
  display: flex;
  gap: 24px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}

.meta-count {
  display: flex;
  align-items: center;
  gap: 8px;
}

.insta-link-icon {
  width: 24px;
  height: 24px;
  color: white;
  opacity: 0.8;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(90deg, #A855F7 0%, #EC4899 50%, #F97316 100%);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.insta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
}

@media (max-width: 768px) {
  .insta-title {
    font-size: 2.5rem;
  }

  .insta-section {
    padding: 40px 0;
  }
}

/* Home FAQ Section */
.home-faq {
  background-color: var(--bg-primary);
  padding: 70px 0 50px;
}

@media (max-width: 768px) {
  .home-faq {
    padding: 40px 0;
  }
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-subtitle {
  color: hsl(var(--accent));
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: block;
}

.faq-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.faq-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: scale(1.005);
}


.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item.active .faq-question {
  color: var(--accent);
  font-weight: 700;
}

.faq-item.active .faq-icon {
  background: var(--accent);
  color: var(--accent-foreground);
  transform: rotate(180deg);
}



.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  /* Large enough for any content */
  padding: 0 24px 24px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}


@media (max-width: 768px) {
  .faq-title {
    font-size: 2.25rem;
  }

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

/* Contact Page Refinement */
.contact-section {
  background-color: var(--bg-secondary);
  padding: 100px 0;
}

.contact-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 30px 25px;
  height: 100%;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}


.contact-card__title {
  font-family: var(--font-ubuntu);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contact-card__desc {
  color: #64748B;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.contact-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-secondary);
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
}

/* Contact Info Items */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contact-info-card-icon {
  width: 54px;
  height: 54px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-info-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

/* Contact Form Styling */
.form-card {
  padding: 50px 45px;
}

.form-label-top {
  display: inline-block;
  padding: 6px 12px;
  background: #FEF3C7;
  color: #D97706;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  margin-bottom: 12px;
}

.form-title {
  font-family: var(--font-ubuntu);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.contact-input-group {
  margin-bottom: 24px;
}

.contact-input-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.contact-input {
  width: 100%;
  padding: 10px 16px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.contact-input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.contact-submit-btn {
  width: 100%;
  padding: 20px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 99px;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-top: 40px;
  border: none;
  cursor: pointer;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  background: var(--primary-hover);
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .contact-card {
    padding: 30px 20px;
  }

  .contact-card__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-card {
    padding: 40px 30px;
    border-radius: 30px;
  }
}

/* FAQ Page Specifics */
.faq-section {
  background-color: var(--bg-primary);
  padding: 60px 0;
}

.faq-filters-container {
  margin-bottom: 40px;
  overflow-x: auto;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.faq-filters {
  display: flex;
  gap: 12px;
  min-width: max-content;
  padding: 0 4px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.filter-pill:hover {
  background: var(--bg-primary);
  border-color: var(--primary);
  color: var(--primary);
}

.filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

.faq-category-section {
  margin-bottom: 40px;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.faq-category-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.faq-category-icon {
  font-size: 1.25rem;
}

/* FAQ Footer Card */
.faq-cta-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 100px;
}

.faq-cta-icon {
  width: 64px;
  height: 64px;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 24px;
}

.faq-cta-card h3 {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-cta-card p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.faq-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-faq-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-faq-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-hover);
}

.btn-faq-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--primary);
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-faq-outline:hover {
  background: rgba(var(--primary-rgb), 0.05);
  border-color: rgba(var(--primary-rgb), 0.2);
}

/* Quote Page Redesign */
.quote-section {
  background-color: var(--bg-secondary);
  padding: 100px 0;
}

.quote-card {
  background: var(--card-bg);
  border-radius: 32px;
  padding: 60px 50px;
  margin-bottom: 40px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.quote-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* Navigation Animations */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.quote-card__title {
  font-family: var(--font-ubuntu);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-input {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 12px !important;
  padding: 16px 20px 16px 56px !important;
  font-size: 1rem !important;
  color: var(--text-primary) !important;
  height: auto !important;
}

.quote-input::placeholder {
  color: #94a3b8;
}

.quote-input:focus {
  background: var(--bg-primary) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1) !important;
}

/* Increased slightly for visibility */

.dest-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px;
  margin-top: 15px;
}

.dest-tag-btn {
  padding: 6px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.dest-tag-btn:hover {
  border-color: var(--primary);
  background: var(--bg-secondary);
}

.dest-tag-btn.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.whatsapp-choice {
  display: flex;
  gap: 24px;
  margin-top: 10px;
}

.whatsapp-choice label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.whatsapp-choice input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

@media (max-width: 768px) {
  .quote-card {
    padding: 40px 25px;
    border-radius: 30px;
  }

  .quote-card__title {
    font-size: 1.5rem;
  }
}

/* Utility Utilities for Redesign */
.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.w-full {
  width: 100%;
}

.max-w-md {
  max-width: 448px;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.header-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
}


.input-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.quote-card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.dest-tag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E2E8F0;
  white-space: nowrap;
}

/* More Utilities */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.text-emerald-600,
.text-\[\#0F3D2E\]-600 {
  color: var(--primary);
}

.text-gray-500 {
  color: var(--text-muted);
}

.border-t {
  border-top: 1px solid var(--border-color);
}

.border-gray-100 {
  border-color: var(--border-color);
}

.pt-8 {
  padding-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Layout Utilities were moved to top for organization and mobile optimization */

/* Layout helper end */

/* ========================
   REDESIGNED HERO SECTION
   ======================== */
.hero-carousel {
  height: 100vh;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background-color: #000;
  /* Changed from var(--bg-primary) to black to avoid white flash */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  /* Hide non-active slides */
  transition: opacity 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s linear 1000ms;
  /* Delay visibility change */
  z-index: 1;
  background-color: #000;
  /* Prevent white flash */
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}

.hero-slide.last-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition: none;
}



.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active .hero-bg-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.2) 100%);
  z-index: 10;
}

.hero-content-wrapper {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text-content {
  max-width: 850px;
  width: 100%;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  /* Reduced from 5.5rem */
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  /* Reduced from 0.9375rem */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateX(-20px);
  /* Slide in from left */
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-description {
  font-size: 1.125rem;
  /* Reduced from 1.25rem */
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

.btn-hero-primary {
  background-color: #ffffff;
  color: var(--primary);
  padding: 0.875rem 2rem;
  /* Reduced padding */
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  /* Reduced size */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background-color: transparent;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

/* Dark mode specific override if needed */
[data-theme="dark"] .btn-hero-primary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

[data-theme="dark"] .btn-hero-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-hero-outline {
  background-color: transparent;
  color: #ffffff;
  padding: 0.875rem 2rem;
  /* Reduced padding */
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  /* Reduced size */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid rgba(255, 255, 255, 0.7);
  /* Thinner look */
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .btn-hero-outline:hover {
  color: #000000;
}

@keyframes slideInLeftFade {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-slide.active .hero-subtitle {
  opacity: 0;
  animation: slideInLeftFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-slide.active .hero-heading {
  opacity: 0;
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-slide.active .hero-description {
  opacity: 0;
  animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-slide.active .hero-buttons {
  opacity: 0;
  animation: scaleUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  /* Reduced from 64px */
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(255, 255, 255, 0.7);
  /* Softer icon color */
  opacity: 0;
  visibility: hidden;
}

.hero-carousel:hover .hero-nav-arrow {
  opacity: 1;
  visibility: visible;
}

.hero-nav-arrow svg {
  width: 20px;
  /* Smaller icon */
  height: 20px;
  stroke-width: 1.5;
  /* Thinner stroke */
}

.hero-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
  /* Subtle scale */
  color: white;
}

.hero-nav-arrow.prev {
  left: 2rem;
}

.hero-nav-arrow.next {
  right: 2rem;
}

.hero-indicators {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 50;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-dot.active {
  background: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 2.75rem;
  }

  /* Tablet size */
}

@media (min-width: 992px) {
  .hero-heading {
    font-size: 3.5rem;
  }

  /* Laptop size */
}

@media (min-width: 1200px) {
  .hero-heading {
    font-size: 3.625rem;
  }

  /* Desktop target: ~58px */
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 100vh;
    height: 100dvh;
  }

  .hero-overlay {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 100%);
  }

  .hero-text-content {
    text-align: center;
    margin: 0 auto;
    padding-top: 3rem;
  }

  .hero-heading {
    font-size: 2.125rem;
    /* ~34px for Mobile */
  }


  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: 1rem;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
  }

  .hero-nav-arrow {
    width: 32px;
    height: 32px;
  }

  .hero-nav-arrow svg {
    width: 16px;
    height: 16px;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
  }

  .hero-dot.active {
    transform: scale(1.3);
  }

  .hero-indicators {
    bottom: 1.5rem;
    gap: 10px;
  }

  .hero-nav-arrow.prev {
    left: 1rem;
  }

  .hero-nav-arrow.next {
    right: 1rem;
  }
}

/* ===========================================================
   TRUST SIGNALS SECTION
   =========================================================== */
.trust-signals-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  overflow: hidden;
}

.trust-signals-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 0.5rem;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

.trust-signals-container::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

/* Responsive: revert to grid on tablet and desktop */
@media (min-width: 1024px) {
  .trust-signals-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 1.25rem 0;
    overflow: visible;
  }
}


.trust-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0.75rem 1.25rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  scroll-snap-align: center;
}

/* Add subtle divider on mobile */
@media (max-width: 1023px) {
  .trust-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 30%;
    height: 40%;
    width: 1px;
    background-color: var(--border-color);
    opacity: 0.5;
  }
}

.trust-block:hover .trust-icon-wrapper {
  color: var(--accent);
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.1);
}

.trust-icon-wrapper {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
  border-radius: 50%;
  margin-bottom: 0;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trust-icon-wrapper svg {
  width: 18px;
  height: 18px;
}


.trust-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  max-width: none;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}


/* Vertical Separators for Desktop */
@media (min-width: 1024px) {
  .trust-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
  }
}

/* ===========================================================
   PREMIUM HERO TRUST BAR (index.php)
   =========================================================== */
.premium-trust-bar {
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

[data-theme="dark"] .premium-trust-bar {
  background-color: rgba(6, 18, 13, 0.95);
  backdrop-filter: blur(10px);
  border-top-color: #1e4a3a;
}

.trust-item-v2 .icon-circle {
  background-color: #f4f9f6;
  color: #0f3d2e;
}

[data-theme="dark"] .trust-item-v2 .icon-circle {
  background-color: rgba(26, 92, 72, 0.2);
  color: #fcd34d;
}

.trust-item-v2 .trust-label {
  color: #0f2e22;
}

[data-theme="dark"] .trust-item-v2 .trust-label {
  color: #ffffff;
}

.trust-divider-v2 {
  background-color: #e2e8f0;
}

[data-theme="dark"] .trust-divider-v2 {
  background-color: #1e4a3a;
}