:root {
  --home2-bg: #0e1a2b;
  --home2-surface: rgba(14, 26, 43, 0.85);
  --home2-accent: #4ddbd3;
  --home2-contrast: #f7fafc;
  --home2-bg-light: #f7fafc;
  --home2-surface-light: rgba(255, 255, 255, 0.95);
  --home2-accent-light: #0ea5e9;
  --home2-contrast-light: #1e293b;
}

/* Light mode (default) */
.home2 {
  background: radial-gradient(circle at top left, rgba(14, 165, 233, 0.1), transparent 55%), var(--home2-bg-light);
  color: var(--home2-contrast-light);
}

.home2 .site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.home2 .brand {
  color: var(--home2-accent-light);
}

.home2 .main-nav a {
  color: #1e293b;
}

.home2 .main-nav a::after {
  background: var(--home2-accent-light);
}

.home2 .mobile-toggle {
  width: 40px;
  height: 40px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff;
}

.home2 .mobile-toggle span {
  background: #1e293b;
}

.home2 .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.home2 .dropdown-menu .dropdown-link {
  color: #1e293b;
}

.home2 .dropdown-menu .dropdown-link:focus-visible,
.home2 .dropdown-menu .dropdown-link:active {
  background: rgba(14, 165, 233, 0.08);
  color: var(--home2-accent-light);
}

/* Disable dropdown hover effect for home2 navigation - click only */
/* Ensure hover does NOT open dropdown in home2 */
@media (min-width: 881px) {
  .home2 .dropdown:hover > .dropdown-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    pointer-events: none !important;
  }
  
  /* Ensure click (via .open class) still works for home2 */
  .home2 .dropdown.open > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

.home2 .dropdown-menu .dropdown-link.active {
  background: rgba(14, 165, 233, 0.12);
  color: var(--home2-accent-light);
}

/* Dark mode */
[data-theme="dark"] .home2 {
  background: radial-gradient(circle at top left, rgba(77, 219, 211, 0.25), transparent 55%), var(--home2-bg) !important;
  color: var(--home2-contrast) !important;
}

[data-theme="dark"] .home2 * {
  color: inherit;
}

[data-theme="dark"] .home2 .main {
  background: transparent !important;
}

[data-theme="dark"] .home2 .site-header {
  background: rgba(14, 26, 43, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .home2 .brand {
  color: var(--home2-accent);
}

[data-theme="dark"] .home2 .main-nav a {
  color: #ffffff !important;
}

[data-theme="dark"] .home2 .main-nav a::after {
  background: var(--home2-accent);
}

[data-theme="dark"] .home2 .mobile-toggle {
  background: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

[data-theme="dark"] .home2 .mobile-toggle span {
  background: #fff;
}

[data-theme="dark"] .home2 .dropdown-menu {
  background: rgba(14, 26, 43, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .home2 .dropdown-menu .dropdown-link {
  color: #ffffff !important;
}

[data-theme="dark"] .home2 .dropdown-menu .dropdown-link:focus-visible,
[data-theme="dark"] .home2 .dropdown-menu .dropdown-link:active {
  background: rgba(77, 219, 211, 0.15);
  color: var(--home2-accent);
}

[data-theme="dark"] .home2 .dropdown-menu .dropdown-link.active {
  background: rgba(77, 219, 211, 0.2);
  color: var(--home2-accent);
}

.home2-hero {
  height: calc(100vh - 80px);
  max-height: calc(100vh - 80px);
  min-height: calc(100vh - 80px);
  padding: clamp(0.5rem, 1vw, 0.75rem) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 1rem);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home2-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 1vw, 0.5rem);
  align-items: center;
  text-align: center;
  order: 1;
  justify-content: center;
  min-height: 0;
  flex-shrink: 1;
}

.home2-hero h1 {
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  text-align: center;
  line-height: 1.2;
  margin-bottom: clamp(0.25rem, 0.5vw, 0.5rem);
}

.home2-hero p {
  color: rgba(30, 41, 59, 0.75);
  max-width: 520px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  line-height: 1.4;
}

.home2-hero .chip {
  background: rgba(14, 165, 233, 0.1);
  color: var(--home2-accent-light);
  box-shadow: none;
  align-self: center;
}

.home2-hero .hero-stats {
  justify-content: center;
}

.home2-hero .stat {
  align-items: center;
  text-align: center;
}

.home2-hero .stat-label {
  color: rgba(30, 41, 59, 0.7);
}

.home2-hero .stat-value {
  color: var(--home2-accent-light);
}

.home2-hero .btn {
  --btn-bg: var(--home2-accent-light);
  --btn-color: #fff;
}

/* Dark mode hero */
[data-theme="dark"] .home2-hero h1 {
  color: #fff;
}

[data-theme="dark"] .home2-hero p {
  color: rgba(255, 255, 255, 0.78);
}

[data-theme="dark"] .home2-hero .chip {
  background: rgba(77, 219, 211, 0.15);
  color: var(--home2-accent);
}

[data-theme="dark"] .home2-hero .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .home2-hero .stat-value {
  color: var(--home2-accent);
}

[data-theme="dark"] .home2-hero .btn {
  --btn-bg: var(--home2-accent);
  --btn-color: var(--home2-bg);
}

.home2-hero-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
  order: 2;
  min-height: 0;
  flex-shrink: 1;
  width: 100%;
  align-items: stretch;
}

.home2-hero-card {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 20px;
  background: var(--home2-surface-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  overflow: visible;
  min-height: fit-content;
  width: 100%;
  box-sizing: border-box;
  align-items: flex-start;
}

.home2-hero-card strong {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #1e293b;
}

.home2-hero-card span {
  color: rgba(30, 41, 59, 0.7);
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
}

/* Dark mode hero cards */
[data-theme="dark"] .home2-hero-card {
  background: var(--home2-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 45px rgba(6, 12, 21, 0.3);
}

[data-theme="dark"] .home2-hero-card strong {
  color: #fff;
}

[data-theme="dark"] .home2-hero-card span {
  color: rgba(255, 255, 255, 0.62);
}

.home2-carousel {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 850px;
}

.home2-carousel .swiper-slide {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
  height: auto;
  display: flex;
  align-items: stretch;
}

.home2-carousel .home2-destination-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home2-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home2-carousel .swiper-pagination-bullet {
  background: rgba(30, 41, 59, 0.4);
}

/* Dark mode carousel pagination */
[data-theme="dark"] .home2-carousel .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.65);
}

.home2-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home2-section > .container {
  width: 100%;
  margin: 0 auto;
}

/* Reduce width for signature editions and how it works sections */
.home2-section:nth-of-type(2) > .container,
.home2-section:nth-of-type(3) > .container {
  max-width: 900px !important;
  width: 100%;
  margin: 0 auto;
}

.home2-section:first-of-type {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.home2-section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.home2-section-title h2 {
  color: #1e293b;
  text-align: center;
  margin: 0 auto;
}

.home2-section-title p {
  max-width: 600px;
  color: rgba(30, 41, 59, 0.7);
  text-align: center;
  margin: 0 auto;
}

/* Dark mode section titles */
[data-theme="dark"] .home2-section-title h2 {
  color: #fff;
}

[data-theme="dark"] .home2-section-title p {
  color: rgba(255, 255, 255, 0.68);
}

.home2-destination-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 45px rgba(6, 12, 21, 0.45);
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.home2-destination-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 280ms ease;
  flex-shrink: 0;
  display: block;
}

.home2-destination-card:focus-visible img,
.home2-destination-card:active img {
  transform: scale(1.08);
}

.home2-destination-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85));
  display: flex;
  align-items: flex-end;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #fff;
  z-index: 1;
}

.home2-destination-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.home2-destination-card .overlay p {
  margin: 0;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  opacity: 0.9;
}

.home2-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 1.75rem);
  justify-items: stretch;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.home2-step {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: clamp(1.5rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  min-height: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.home2-step strong {
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #1e293b;
  text-align: center;
  display: block;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.home2-step span {
  font-size: 0.92rem;
  color: rgba(30, 41, 59, 0.75);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
  text-align: center;
  display: block;
  width: 100%;
  visibility: visible;
  opacity: 1;
}

/* Dark mode steps */
[data-theme="dark"] .home2-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

[data-theme="dark"] .home2-step strong {
  color: #fff;
}

[data-theme="dark"] .home2-step span {
  color: rgba(255, 255, 255, 0.85);
}

.home2-testimonials {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
  margin: 0 auto !important;
  box-sizing: border-box;
  max-width: 1000px !important;
  width: min(95%, 1000px) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home2-testimonials .section-header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  width: 100%;
  max-width: 100%;
}

.home2-testimonials .testimonial-carousel {
  margin: 0 auto;
  padding-bottom: 0;
  max-width: 800px;
  width: 100%;
}

/* Non-swiper testimonial carousel (like in index-2.html) */
.home2-testimonials .testimonial-carousel:not(.swiper) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home2-testimonials .swiper-wrapper {
  align-items: stretch;
}

.home2-testimonials .swiper-slide {
  width: 100% !important;
}

.home2-testimonials .swiper-pagination {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.home2-testimonials .section-title {
  color: #1e293b !important;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  text-align: center;
}

.home2-testimonials .section-subtitle {
  color: var(--home2-accent-light);
  visibility: visible !important;
  opacity: 1 !important;
}

.home2-testimonials .testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(30, 41, 59, 0.85);
  height: 100%;
  min-height: 200px;
  padding: clamp(1.5rem, 3vw, 2rem);
  width: 100%;
  margin: 0;
  max-width: 100%;
}

.home2-testimonials .cta-buttons {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  width: 100%;
}

.home2-testimonials .testimonial-card h4 {
  color: #1e293b;
}

/* Dark mode testimonials */
[data-theme="dark"] .home2-testimonials {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 45px rgba(6, 12, 21, 0.4);
}

[data-theme="dark"] .home2-testimonials .section-title {
  color: #fff !important;
}

[data-theme="dark"] .home2-testimonials .section-subtitle {
  color: var(--home2-accent);
}

[data-theme="dark"] .home2-testimonials .testimonial-card {
  background: rgba(14, 26, 43, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .home2-testimonials .testimonial-card h4 {
  color: #fff;
}

.home2-footer {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 28px 28px 0 0;
  padding: clamp(3rem, 6vw, 4.5rem);
  margin-top: clamp(4rem, 8vw, 6rem);
}

.home2-footer .footer-grid {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* Dark mode footer */
[data-theme="dark"] .home2-footer {
  background: rgba(14, 26, 43, 0.92);
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .home2-footer .footer-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .home2-footer h4 {
  color: #ffffff !important;
}

[data-theme="dark"] .home2-footer p,
[data-theme="dark"] .home2-footer .footer-brand p {
  color: rgba(255, 255, 255, 0.75) !important;
}

[data-theme="dark"] .home2-footer .footer-links a {
  color: rgba(255, 255, 255, 0.75) !important;
}

[data-theme="dark"] .home2-footer .footer-links a:hover {
  color: var(--home2-accent) !important;
}

[data-theme="dark"] .home2-footer .brand {
  color: var(--home2-accent) !important;
}

[data-theme="dark"] .home2-footer .footer-bottom {
  color: rgba(255, 255, 255, 0.6) !important;
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}

/* Dark mode buttons in Home 2 */
[data-theme="dark"] .home2 .btn {
  background-color: #ff6b3d !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(255, 107, 61, 0.3) !important;
  border: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

[data-theme="dark"] .home2 .btn:hover,
[data-theme="dark"] .home2 .btn:focus-visible {
  background-color: #ff8555 !important;
  box-shadow: 0 6px 16px rgba(255, 107, 61, 0.4) !important;
}

[data-theme="dark"] .home2 .btn.secondary {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

[data-theme="dark"] .home2 .btn.secondary:hover,
[data-theme="dark"] .home2 .btn.secondary:focus-visible {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

/* Dark mode back to top button in Home 2 */
[data-theme="dark"] .home2 .btn.light[data-scroll-top]:not([hidden]),
[data-theme="dark"] .home2 [data-scroll-top]:not([hidden]) {
  background-color: #ff6b3d !important;
  color: #fff !important;
  display: inline-flex !important;
}

[data-theme="dark"] .home2 .btn.light[data-scroll-top][hidden],
[data-theme="dark"] .home2 [data-scroll-top][hidden] {
  display: none !important;
}

[data-theme="dark"] .home2 .btn.light[data-scroll-top]:hover:not([hidden]),
[data-theme="dark"] .home2 [data-scroll-top]:hover:not([hidden]) {
  background-color: #ff8555 !important;
  color: #fff !important;
}

/* Dark mode desktop navigation for Home 2 (semi-transparent only for desktop) */
@media (min-width: 881px) {
  [data-theme="dark"] .home2 .main-nav {
    background: rgba(30, 41, 59, 0.5) !important;
  }
}

[data-theme="dark"] .home2 .main-nav .nav-link,
[data-theme="dark"] .home2 .main-nav .dropdown-toggle {
  color: #ffffff !important;
}

[data-theme="dark"] .home2-footer h4 {
  color: #ffffff !important;
}

[data-theme="dark"] .home2-footer p,
[data-theme="dark"] .home2-footer .footer-brand p {
  color: rgba(255, 255, 255, 0.75) !important;
}

[data-theme="dark"] .home2-footer .footer-links a {
  color: rgba(255, 255, 255, 0.75) !important;
}

[data-theme="dark"] .home2-footer .footer-links a:hover {
  color: var(--home2-accent) !important;
}

[data-theme="dark"] .home2-footer .brand {
  color: var(--home2-accent) !important;
}

[data-theme="dark"] .home2-footer .footer-bottom {
  color: rgba(255, 255, 255, 0.6) !important;
  border-top-color: rgba(255, 255, 255, 0.12) !important;
}

@media (max-width: 1200px) {
  .home2-hero {
    grid-template-columns: 1fr;
  }
  
  .home2-hero-content {
    order: 1;
  }
  
  .home2-hero-media {
    order: 2;
  }
}

@media (max-width: 880px) {
  /* Fix header transparency for better menu visibility on mobile/tablet */
  .home2 .site-header {
    background: rgba(255, 255, 255, 1) !important;
  }
  
  /* Fix dark mode header transparency */
  [data-theme="dark"] .home2 .site-header {
    background: rgba(14, 26, 43, 1) !important;
  }

  .home2 .main-nav {
    background: #fff !important;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    top: 72px;
    left: 16px;
    right: 16px;
  }
  
  /* Fix dark mode mobile nav background - ensure solid background */
  [data-theme="dark"] .home2 .main-nav {
    background: rgba(14, 26, 43, 1) !important;
  }
  
  /* Fix dark mode dropdown menu background for mobile/tablet */
  [data-theme="dark"] .home2 .main-nav .dropdown-menu {
    background: rgba(14, 26, 43, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .home2 .mobile-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    min-width: 44px;
    min-height: 44px;
  }
  
  /* Ensure all menu items are visible with proper scrolling */
  .home2 .main-nav .nav-item,
  .home2 .main-nav .nav-link {
    width: 100%;
    flex-shrink: 0;
  }
  
  /* Add scrollbar styling for mobile nav */
  .home2 .main-nav::-webkit-scrollbar {
    width: 6px;
  }
  
  .home2 .main-nav::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
  }
  
  .home2 .main-nav::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 10px;
  }
  
  .home2 .main-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 23, 42, 0.3);
  }
  
  /* Dark mode scrollbar styling for mobile nav */
  [data-theme="dark"] .home2 .main-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3) !important;
  }
  
  [data-theme="dark"] .home2 .main-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4) !important;
  }
  
  /* Dark mode mobile nav border */
  [data-theme="dark"] .home2 .main-nav {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
}

  .home2-hero h1 {
    letter-spacing: 0.12em;
  }

  .home2-hero-media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .home2-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .home2-section-title {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .home2-steps {
    gap: clamp(1rem, 2.5vw, 1.5rem);
  }

  .home2-step {
    padding: clamp(1.25rem, 2.5vw, 1.5rem);
  }

  .home2-testimonials {
    padding: clamp(2rem, 4vw, 3rem);
  }

  .home2-testimonials .section-header {
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  }

  .home2-carousel .swiper-slide {
    border-radius: 20px;
  }

  .home2-destination-card {
    min-height: 350px;
  }
}

@media (max-width: 680px) {
  .home2-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
  }

  .home2-section:first-of-type {
    padding-top: clamp(2rem, 4vw, 3rem);
  }

  .home2-section-title {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    gap: 0.75rem;
  }

  .home2-steps {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .home2-step {
    padding: 1.5rem;
  }

  .home2-testimonials {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 20px;
  }

  .home2-testimonials .section-header {
    margin-bottom: 1.25rem;
  }

  .home2-testimonials .testimonial-carousel {
    max-width: 100%;
  }

  .home2-testimonials .testimonial-carousel:not(.swiper) {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .home2-testimonials .cta-buttons {
    margin-top: 2rem;
    gap: 1rem;
  }

  .home2-testimonials .swiper-pagination {
    margin-top: 1.25rem;
  }

  .home2-carousel .swiper-slide {
    border-radius: 16px;
  }

  .home2-destination-card {
    min-height: 300px;
    border-radius: 16px;
  }

  .home2-destination-card .overlay {
    padding: 1.25rem;
  }

  .home2-hero-card {
    padding: 1.25rem;
  }
}

