/*
Theme Name: Digiheave Travel
Theme URI: https://travel.digiheave.com
Author: Digiheave
Author URI: https://digiheave.com
Description: A premium B2B & B2C travel infrastructure theme for Digiheave Travel. Features destination showcases, package catalogs, lead capture, CRM integration hooks, and WooCommerce-ready architecture. Built for scale across multiple destinations with Japan as the launch market.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digiheave-travel
Tags: travel, business, b2b, one-page, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Brand Colors */
  --dh-navy: #0F1B2D;
  --dh-navy-light: #1B2A4A;
  --dh-navy-mid: #162038;
  --dh-teal: #0D9488;
  --dh-teal-light: #14B8A6;
  --dh-teal-dark: #0A7A70;
  --dh-teal-glow: rgba(13, 148, 136, 0.15);
  --dh-gold: #D4A843;
  --dh-gold-light: #E8C468;

  /* Neutrals */
  --dh-white: #FFFFFF;
  --dh-off-white: #F8FAFB;
  --dh-gray-50: #F1F5F9;
  --dh-gray-100: #E2E8F0;
  --dh-gray-200: #CBD5E1;
  --dh-gray-300: #94A3B8;
  --dh-gray-400: #64748B;
  --dh-gray-500: #475569;
  --dh-gray-600: #334155;
  --dh-text: #1E293B;
  --dh-text-light: #64748B;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-heading: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container-max: 1280px;
  --container-wide: 1440px;
  --gap: clamp(1rem, 2vw, 2rem);

  /* Borders & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.16);
  --shadow-teal: 0 8px 30px rgba(13,148,136,0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-mid: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}


/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dh-text);
  background: var(--dh-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--dh-teal); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--dh-teal-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dh-navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; color: var(--dh-gray-500); }
p:last-child { margin-bottom: 0; }


/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.dh-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.dh-container--wide {
  max-width: var(--container-wide);
}

.dh-section {
  padding: var(--section-pad) 0;
  position: relative;
}

.dh-section--dark {
  background: var(--dh-navy);
  color: var(--dh-white);
}

.dh-section--dark h2,
.dh-section--dark h3,
.dh-section--dark h4 {
  color: var(--dh-white);
}

.dh-section--dark p {
  color: var(--dh-gray-200);
}

.dh-section--gray {
  background: var(--dh-off-white);
}

.dh-grid {
  display: grid;
  gap: var(--gap);
}

.dh-grid--2 { grid-template-columns: repeat(2, 1fr); }
.dh-grid--3 { grid-template-columns: repeat(3, 1fr); }
.dh-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .dh-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .dh-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .dh-grid--4, .dh-grid--3, .dh-grid--2 { grid-template-columns: 1fr; }
}


/* ============================================
   SECTION HEADERS
   ============================================ */
.dh-section-header {
  max-width: 680px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.dh-section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.dh-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dh-teal);
  margin-bottom: 1rem;
}

.dh-section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--dh-teal);
}

.dh-section-header p {
  font-size: 1.1rem;
  margin-top: 1rem;
}


/* ============================================
   BUTTONS
   ============================================ */
.dh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.dh-btn--primary {
  background: var(--dh-teal);
  color: var(--dh-white);
  border-color: var(--dh-teal);
}

.dh-btn--primary:hover {
  background: var(--dh-teal-dark);
  border-color: var(--dh-teal-dark);
  color: var(--dh-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.dh-btn--outline {
  background: transparent;
  color: var(--dh-white);
  border-color: rgba(255,255,255,0.3);
}

.dh-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--dh-white);
  color: var(--dh-white);
}

.dh-btn--dark {
  background: var(--dh-navy);
  color: var(--dh-white);
  border-color: var(--dh-navy);
}

.dh-btn--dark:hover {
  background: var(--dh-navy-light);
  transform: translateY(-2px);
  color: var(--dh-white);
}

.dh-btn--ghost {
  background: transparent;
  color: var(--dh-teal);
  border-color: var(--dh-teal);
}

.dh-btn--ghost:hover {
  background: var(--dh-teal);
  color: var(--dh-white);
}

.dh-btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

.dh-btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
}

.dh-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.dh-btn:hover svg {
  transform: translateX(3px);
}


/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-mid);
  padding: 1.2rem 0;
}

.site-header.scrolled {
  background: rgba(15, 27, 45, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-logo__icon {
  width: 40px;
  height: 40px;
  background: var(--dh-teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.site-logo__text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dh-white);
  line-height: 1.1;
}

.site-logo__text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dh-teal-light);
  margin-top: 1px;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 0; }

.main-nav a,
.main-nav .menu-item > a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 1.1rem;
  transition: color var(--transition-fast);
  text-decoration: none;
  position: relative;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav a[aria-current="page"] {
  color: var(--dh-white);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: var(--dh-teal);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

/* WP menu classes */
.main-nav .menu { display: flex; list-style: none; gap: 0; align-items: center; }
.main-nav .menu-item { position: relative; }
.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dh-navy);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.main-nav .menu-item:hover > .sub-menu { display: block; }
.main-nav .sub-menu a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}
.main-nav .sub-menu a::after { display: none; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 1.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dh-white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1024px) {
  .mobile-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--dh-navy);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right var(--transition-mid);
    box-shadow: var(--shadow-xl);
    align-items: flex-start;
    gap: 0;
  }
  .main-nav.active { right: 0; }
  .main-nav .menu { flex-direction: column; width: 100%; }
  .main-nav a { padding: 0.8rem 0; font-size: 1rem; display: block; width: 100%; }
  .main-nav a::after { left: 0; right: auto; width: 24px; }
  .main-nav .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: block;
    min-width: auto;
  }
  .header-cta {
    margin-left: 0;
    margin-top: 1.5rem;
    flex-direction: column;
    width: 100%;
  }
  .header-cta .dh-btn { width: 100%; text-align: center; }
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dh-navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,27,45,0.92) 0%,
    rgba(15,27,45,0.7) 40%,
    rgba(13,148,136,0.15) 100%
  );
  z-index: 2;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 3;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13,148,136,0.12);
  border: 1px solid rgba(13,148,136,0.3);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dh-teal-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero__badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dh-teal);
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--dh-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.15s var(--ease-out) both;
}

.hero__title em {
  font-style: normal;
  color: var(--dh-teal-light);
  position: relative;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--dh-teal);
  opacity: 0.5;
  border-radius: 2px;
}

.hero__description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dh-gray-200);
  margin-bottom: 2.5rem;
  max-width: 560px;
  animation: fadeInUp 0.8s 0.3s var(--ease-out) both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.45s var(--ease-out) both;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s 0.6s var(--ease-out) both;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dh-white);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: var(--dh-gray-300);
  margin-top: 0.3rem;
}

.hero__float {
  position: absolute;
  right: 8%;
  bottom: 12%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
}

.hero__float-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  color: var(--dh-white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero__float-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero__float { display: none; }
}


/* ============================================
   DESTINATIONS
   ============================================ */
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.destination-card__img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.destination-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.destination-card:hover .destination-card__img img {
  transform: scale(1.08);
}

.destination-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(15,27,45,0.9) 0%, rgba(15,27,45,0.1) 50%, transparent 100%);
  transition: background var(--transition-mid);
}

.destination-card:hover .destination-card__overlay {
  background: linear-gradient(to top, rgba(13,148,136,0.85) 0%, rgba(15,27,45,0.3) 40%, transparent 100%);
}

.destination-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1.8rem;
}

.destination-card__tag {
  display: inline-block;
  background: var(--dh-teal);
  color: var(--dh-white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.destination-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dh-white);
  margin-bottom: 0.3rem;
}

.destination-card__meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.destination-card__price {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 4;
  background: rgba(15,27,45,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--dh-white);
}

.destination-card__price strong {
  color: var(--dh-teal-light);
}


/* ============================================
   SERVICES
   ============================================ */
.service-card {
  background: var(--dh-white);
  border: 1px solid var(--dh-gray-100);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-mid);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--dh-teal);
  transform: scaleX(0);
  transition: transform var(--transition-mid);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--dh-teal-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.5rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--dh-navy);
}

.service-card__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--dh-gray-400);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dh-teal);
  margin-top: 1.2rem;
}

.service-card__link svg { width: 16px; height: 16px; transition: transform var(--transition-fast); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }


/* ============================================
   HOW IT WORKS
   ============================================ */
.process-step {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.process-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dh-teal);
  color: var(--dh-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 2;
}

.process-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step__text {
  font-size: 0.88rem;
  color: var(--dh-gray-400);
}

.process-steps-connector {
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--dh-gray-100);
  z-index: 1;
}

@media (max-width: 768px) { .process-steps-connector { display: none; } }


/* ============================================
   PACKAGES / ITINERARIES
   ============================================ */
.package-card {
  background: var(--dh-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--dh-gray-100);
  transition: all var(--transition-mid);
}

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

.package-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.package-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.package-card:hover .package-card__img img {
  transform: scale(1.06);
}

.package-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--dh-teal);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.package-card__body {
  padding: 1.5rem;
}

.package-card__duration {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dh-teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.package-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.package-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 1rem 0;
}

.package-card__highlight {
  font-size: 0.75rem;
  background: var(--dh-gray-50);
  color: var(--dh-gray-500);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-weight: 500;
}

.package-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--dh-gray-100);
}

.package-card__price-label {
  font-size: 0.78rem;
  color: var(--dh-gray-400);
}

.package-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dh-navy);
}

.package-card__price span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--dh-gray-400);
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--dh-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--dh-gray-100);
  transition: box-shadow var(--transition-mid);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--dh-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dh-gray-600);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dh-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dh-teal);
  font-size: 0.9rem;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dh-navy);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--dh-gray-400);
}


/* ============================================
   B2B PARTNER CTA
   ============================================ */
.partner-cta {
  background: var(--dh-navy);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.partner-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.partner-cta__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.partner-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dh-white);
  margin-bottom: 1rem;
}

.partner-cta__text {
  font-size: 1.05rem;
  color: var(--dh-gray-200);
  margin-bottom: 2rem;
}

.partner-cta__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.partner-cta__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--dh-gray-200);
}

.partner-cta__feature svg {
  width: 18px;
  height: 18px;
  color: var(--dh-teal-light);
  flex-shrink: 0;
}


/* ============================================
   LEAD CAPTURE / INQUIRY FORM
   ============================================ */
.inquiry-form {
  background: var(--dh-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dh-gray-100);
}

.inquiry-form__title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.inquiry-form__subtitle {
  font-size: 0.9rem;
  color: var(--dh-gray-400);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dh-gray-600);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--dh-gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dh-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--dh-white);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--dh-teal);
  box-shadow: 0 0 0 3px var(--dh-teal-glow);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dh-navy);
  color: var(--dh-gray-300);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand__description {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--dh-gray-300);
  margin: 1rem 0 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dh-gray-300);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--dh-teal);
  border-color: var(--dh-teal);
  color: var(--dh-white);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dh-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.88rem;
  color: var(--dh-gray-300);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--dh-teal-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--dh-gray-400);
}

@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}


/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition-fast);
  color: white;
  font-size: 1.6rem;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  color: white;
}


/* ============================================
   PAGE TEMPLATES
   ============================================ */
.page-hero {
  background: var(--dh-navy);
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(13,148,136,0.12) 0%, transparent 70%);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--dh-white);
  margin-bottom: 0.8rem;
  position: relative;
}

.page-hero__breadcrumb {
  font-size: 0.85rem;
  color: var(--dh-gray-300);
  position: relative;
}

.page-hero__breadcrumb a { color: var(--dh-teal-light); }

.page-content {
  padding: var(--section-pad) 0;
}

.page-content h2 { margin: 2rem 0 1rem; }
.page-content h3 { margin: 1.5rem 0 0.8rem; }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content li { margin-bottom: 0.4rem; color: var(--dh-gray-500); }


/* ============================================
   WOOCOMMERCE COMPATIBILITY (Future)
   ============================================ */
.woocommerce .products { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.woocommerce .product { border-radius: var(--radius-md); overflow: hidden; }
.woocommerce .button { 
  background: var(--dh-teal) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-heading) !important;
}

@media (max-width: 768px) {
  .woocommerce .products { grid-template-columns: 1fr; }
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }


/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-teal { color: var(--dh-teal); }
.text-white { color: var(--dh-white); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
