/*
Theme Name: Bali Airport Transfer
Theme URI: https://baliairporttransfer.com/
Description: Premium standalone theme — Mid-to-Luxury repositioning. Custom build for baliairporttransfer.com (Juara Holding Group portfolio).
Author: Juara Holding Group
Author URI: https://juaraholding.com/
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: bali-airport-transfer
Tags: custom, single-purpose, luxury, transport
*/
:root {
  --primary: #0A2540;       /* Midnight Teal */
  --accent: #D4A24C;        /* Warm Gold */
  --secondary: #E07A5F;     /* Soft Coral */
  --bg: #0A2540;
  --bg-soft: #F5EDE0;       /* Champagne Sand */
  --text: #1A1F2E;
  --white: #ffffff;
  --whatsapp: #25D366;
  --border: rgba(212,162,76,0.25);
  --radius: 14px;
  --section-pad: clamp(60px, 8vw, 110px);
  --container-max: 1180px;
  --font-heading: 'Cormorant Garamond', 'Plus Jakarta Sans', Georgia, serif;
  --font-body: 'Source Sans 3', 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.18);
  --shadow-lg: 0 18px 60px rgba(0,0,0,0.32);
}

/* ═══════════════════════════════════════════════════════════
   RESET + BASE
   ═══════════════════════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: #e8b760; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 500; }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: clamp(20px, 2.6vw, 28px); font-weight: 500; }
h4 { font-size: clamp(17px, 2vw, 21px); font-weight: 600; }
p  { margin: 0 0 1.2em; color: rgba(255,255,255,0.86); }

/* ═══════════════════════════════════════════════════════════
   LAYOUT — container + sections
   ═══════════════════════════════════════════════════════════ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 36px);
  position: relative;
  z-index: 2;
}
.section, section.section {
  padding: var(--section-pad) 0;
  position: relative;
}
section + section { border-top: 1px solid rgba(255,255,255,0.05); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(140px, 18vw, 220px) 0 clamp(80px, 12vw, 140px);
  background:
    linear-gradient(rgba(10,37,64,0.55), rgba(10,37,64,0.78)),
    url('/wp-content/uploads/2026/05/hero-premium-arrival-1600.webp') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(212,162,76,0.18), transparent 60%);
  pointer-events: none;
}
.hero .badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212,162,76,0.10);
  border: 1px solid rgba(212,162,76,0.45);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.4rem;
}
.hero .lead, .lead {
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 0 2rem;
  font-weight: 400;
}
.hero-cta {
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin-top: 2rem !important;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-lg { padding: 16px 34px; font-size: 16px; }

.btn-primary, .btn-accent {
  background: var(--accent);
  color: var(--primary) !important;
  border-color: var(--accent);
}
.btn-primary:hover, .btn-accent:hover { background: #e8b760; color: var(--primary) !important; }

.btn-outline {
  background: transparent;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent) !important; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white) !important;
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover { background: #1ebe57; color: var(--white) !important; }

/* ═══════════════════════════════════════════════════════════
   GRID
   ═══════════════════════════════════════════════════════════ */
.grid {
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,162,76,0.18);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 32px);
  transition: border-color .25s ease, transform .25s ease;
  color: var(--white);
}
.card:hover { border-color: rgba(212,162,76,0.45); transform: translateY(-3px); }
.card h3, .card h4 { color: var(--white); margin-top: 0; }
.card p { color: rgba(255,255,255,0.78); }

/* Special booking card (white background variant) */
.card[id="booking"], .card[style*="background:rgba(255,255,255"] {
  background: var(--white) !important;
  color: var(--text) !important;
  box-shadow: var(--shadow-lg);
}
.card[id="booking"] *, .card[style*="background:rgba(255,255,255"] * { color: var(--text); }
.card[id="booking"] h3 { color: var(--primary); font-family: var(--font-heading); margin-top: 0; }

/* ═══════════════════════════════════════════════════════════
   FORM FIELDS
   ═══════════════════════════════════════════════════════════ */
.field {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px;
  margin-bottom: 0 !important;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.7;
}
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(10,37,64,0.18);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,162,76,0.18);
}

/* ═══════════════════════════════════════════════════════════
   HEADER + FOOTER (BFT framework — re-style)
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10,37,64,0.95), rgba(10,37,64,0.6));
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(212,162,76,0.10);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 36px);
}
.custom-logo, .site-header img {
  max-height: 40px !important;
  width: auto !important;
}

/* Footer mega-columns */
.mega-col-title, .footer-col-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(212,162,76,0.18);
}

/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */
.gold { color: var(--accent); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.bft-skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.bft-skip-link:focus {
  position: fixed; top: 12px; left: 12px;
  background: var(--accent); color: var(--primary);
  padding: 8px 16px; border-radius: 6px;
  width: auto; height: auto; z-index: 1000;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .hero { padding: 100px 0 60px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}
@media (max-width: 480px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
}
