/* ==========================================================================
   Corbett Easy Ride - Design System & Stylesheet
   Color Palette:
   - Primary (Forest Green): #164A3A
   - Secondary (Charcoal Black): #171717
   - Accent (Safari Gold): #C99A3D
   - Background (Ivory/Off-White): #F7F5EF
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --primary: #164A3A;
  --primary-dark: #0F3529;
  --primary-light: #226450;
  --secondary: #171717;
  --secondary-light: #2A2A2A;
  --accent: #C99A3D;
  --accent-hover: #B4852E;
  --accent-light: #F9F1E0;
  --bg-main: #F7F5EF;
  --bg-card: #FFFFFF;
  --bg-alt: #EFECE3;
  --text-dark: #141A18;
  --text-muted: #55625D;
  --text-light: #F7F5EF;
  --border-color: #E2DDD0;
  --shadow-sm: 0 2px 8px rgba(22, 74, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(22, 74, 58, 0.1);
  --shadow-lg: 0 16px 40px rgba(22, 74, 58, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Typography & Tagline */
h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.25rem;
}

.brand-tagline .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.section-title-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.sub-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(201, 154, 61, 0.12);
  color: var(--primary);
  border: 1px solid rgba(201, 154, 61, 0.3);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--secondary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.top-bar {
  background-color: var(--secondary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info-item i {
  color: var(--accent);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--accent) 0%, #A87C29 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(201, 154, 61, 0.3);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.logo-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  line-height: 1;
  white-space: nowrap;
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--secondary);
  box-shadow: 0 4px 14px rgba(201, 154, 61, 0.35);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 154, 61, 0.45);
}

.btn-secondary {
  background-color: var(--primary);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #1EBE5B;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.btn-outline:hover {
  background-color: #FFFFFF;
  color: var(--secondary);
  border-color: #FFFFFF;
}

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

/* Hero Section & Slider */
.hero-slider-section {
  position: relative;
  background-color: var(--secondary);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: scale(1.04);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65);
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(22, 74, 58, 0.45) 0%, rgba(23, 23, 23, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: #FFFFFF;
  padding: 5rem 0;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 154, 61, 0.25);
  border: 1px solid var(--accent);
  backdrop-filter: blur(8px);
  color: var(--accent);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero-lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
  max-width: 720px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--accent);
  color: var(--secondary);
  border-color: var(--accent);
}

.slider-arrow.prev {
  left: 2rem;
}

.slider-arrow.next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 34px;
  background: var(--accent);
}

/* Trust Bar Below Hero */
.trust-bar {
  background-color: var(--primary-dark);
  color: #FFFFFF;
  padding: 1.5rem 0;
  border-bottom: 3px solid var(--accent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(201, 154, 61, 0.15);
  border: 1px solid rgba(201, 154, 61, 0.4);
  border-radius: var(--radius-md);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

.trust-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Section Layouts */
.section-padding {
  padding: 5rem 0;
}

.bg-alt {
  background-color: var(--bg-alt);
}

.bg-white {
  background-color: #FFFFFF;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

/* Feature & Service Cards */
.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: -2rem -2rem 1.5rem -2rem;
  aspect-ratio: 16 / 10;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.card-text {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-list {
  margin-bottom: 1.5rem;
}

.card-list-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.card-list-item i {
  color: var(--accent);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.price-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
}

/* ==========================================================================
   Package Cards & Schedule Layouts
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.package-card.featured-package {
  border: 2px solid var(--accent);
}

.package-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

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

.package-badge-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: #FFFFFF;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.package-badge-gold {
  background: linear-gradient(135deg, var(--accent) 0%, #A87C29 100%);
  color: var(--secondary);
}

.package-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.package-tagline {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.package-price-banner {
  background: linear-gradient(135deg, rgba(22, 74, 58, 0.06) 0%, rgba(201, 154, 61, 0.12) 100%);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.price-main {
  display: flex;
  flex-direction: column;
}

.price-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 3px;
}

.package-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.option-box {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  padding: 0.75rem 0.6rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.option-type {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.option-cost {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.package-schedule-box {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.schedule-header {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.schedule-header i {
  color: var(--accent);
}

.schedule-slot {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.schedule-slot:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.schedule-time-badge {
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.schedule-details {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.schedule-details strong {
  color: var(--primary);
  display: block;
}

.places-covered-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.places-covered-title i {
  color: var(--accent);
}

.places-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.place-pill {
  background: rgba(22, 74, 58, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(22, 74, 58, 0.15);
}

.package-features {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.package-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.package-feature-item i {
  color: #25D366;
}

.package-cta {
  margin-top: auto;
  padding-top: 1rem;
}

/* Fleet Cards */
.fleet-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.fleet-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.fleet-body {
  padding: 1.75rem;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 1rem;
  background-color: var(--bg-main);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.spec-item i {
  color: var(--primary);
}

/* Booking Widget / Quick Enquiry */
.booking-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent);
  position: relative;
}

.booking-title {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.98rem;
  background-color: var(--bg-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(22, 74, 58, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* Review Testimonials */
.review-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.rating-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer-info h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  width: 100%;
  padding: 1.35rem 1.6rem;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header i {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.6rem;
}

.faq-item.active .faq-body {
  padding: 0 1.6rem 1.35rem 1.6rem;
}

.faq-content {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Google Map Embed Container */
.map-container {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating WhatsApp & Call Buttons */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  background-color: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.call-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 999;
  background-color: var(--primary);
  color: #FFFFFF;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(22, 74, 58, 0.4);
  transition: var(--transition);
}

.call-float:hover {
  transform: scale(1.1);
  background-color: var(--primary-dark);
}

/* Footer */
.site-footer {
  background-color: var(--secondary);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 5px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-about {
  padding-right: 1.5rem;
}

.footer-brand {
  font-size: 1.5rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.footer-brand span {
  color: var(--accent);
}

.footer-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.social-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--accent);
  color: var(--secondary);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Page Header Hero (Internal Pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #FFFFFF;
  padding: 4.5rem 0 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(201, 154, 61, 0.15) 0%, transparent 60%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--accent);
}

/* Floating Buttons Pulse Animation */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 74, 58, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(22, 74, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 74, 58, 0);
  }
}

.whatsapp-float {
  animation: pulse-green 2.5s infinite;
}

.call-float {
  animation: pulse-gold 2.5s infinite;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

  .hero-content {
    padding: 3.5rem 0;
  }

  .booking-box {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .brand-logo {
    gap: 0.6rem;
    flex-shrink: 0;
  }

  .logo-title {
    font-size: 1.18rem;
    white-space: nowrap;
  }

  .logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .nav-cta {
    width: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--primary-dark);
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    z-index: 1000;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .slider-arrow.prev {
    left: 0.75rem;
  }

  .slider-arrow.next {
    right: 0.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .logo-badge {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }

  .logo-title {
    font-size: 1.02rem;
  }

  .logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.2px;
  }

  .brand-logo {
    gap: 0.45rem;
  }

  .booking-box {
    padding: 1.5rem;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.8rem;
    bottom: 20px;
    right: 20px;
  }

  .call-float {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    bottom: 20px;
    left: 20px;
  }
}
