/* ===================== 4V Tours & Travels — Stylesheet ===================== */

:root {
  --navy: #0b3d78;
  --navy-dark: #072a54;
  --navy-light: #12539e;
  --orange: #f15a24;
  --orange-dark: #d6480f;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f5;
  --gray-200: #e2e6ec;
  --gray-500: #6b7484;
  --gray-700: #3b4250;
  --text: #1c2530;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(11, 61, 120, 0.1);
  --shadow-lg: 0 14px 40px rgba(11, 61, 120, 0.16);
  --transition: all 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy-dark); line-height: 1.25; }

.section { padding: 70px 0; }
.section-alt { background: var(--gray-50); }

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--gray-500);
  max-width: 640px;
  margin-bottom: 40px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }

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

.btn-block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #d6e2f5;
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-left, .topbar-right { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a { color: #d6e2f5; }
.topbar a:hover { color: var(--orange); }
.topbar i { color: var(--orange); margin-right: 6px; }
.topbar-right { gap: 12px; }
.topbar-right a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.topbar-right a:hover { background: var(--orange); color: var(--white); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 14px rgba(11,61,120,0.08);
  position: sticky;
  top: 0;
  z-index: 200;
}

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

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text .l1 { font-weight: 800; font-size: 1.25rem; color: var(--navy-dark); letter-spacing: 0.5px; }
.logo-text .l2 { font-size: 0.72rem; color: var(--orange); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-dark);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

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

.nav-links a.active { color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-call {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; color: var(--navy-dark);
}
.nav-call .icon-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.nav-call small { display: block; font-weight: 500; color: var(--gray-500); font-size: 0.72rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 26px; height: 3px; background: var(--navy-dark); border-radius: 3px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(0deg, rgba(7,42,84,0.72) 0%, rgba(11,61,120,0.42) 45%, rgba(11,61,120,0.30) 100%),
    url('../images/tirumala-1.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero .hero-road-icon {
  position: absolute;
  right: -40px;
  bottom: -60px;
  font-size: 22rem;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  transform: rotate(-12deg);
}

.hero-content { max-width: 640px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.hero-eyebrow i { color: var(--orange); }

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.hero h1 span { color: var(--orange); }

.hero p {
  color: #dbe6f5;
  font-size: 1.08rem;
  margin-bottom: 34px;
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-size: 1.7rem;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-stats div span { color: #b9cbe8; font-size: 0.85rem; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }

/* ---------- Quick booking strip ---------- */
.quick-book {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  margin-top: -55px;
  position: relative;
  z-index: 10;
  padding: 26px 30px;
}
.quick-book form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 18px;
  align-items: end;
}
.qb-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.qb-field select,
.qb-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--gray-50);
}
.qb-field select:focus,
.qb-field input:focus { outline: none; border-color: var(--orange); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy-dark);
  padding: 22px 0;
  color: var(--white);
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.92rem; }
.trust-item i { color: var(--orange); font-size: 1.3rem; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.service-card p { color: var(--gray-500); font-size: 0.94rem; margin-bottom: 16px; }
.service-card .link-arrow { color: var(--orange); font-weight: 700; font-size: 0.88rem; }

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-dark) 100%);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.about-media-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  z-index: 0;
}
.about-tile {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  color: var(--white);
  text-align: center;
}
.about-tile i { font-size: 2.2rem; color: var(--orange); }
.about-tile span { font-size: 0.82rem; font-weight: 600; color: #cfe0f7; }
.about-tile.wide { grid-column: span 2; background: rgba(255,255,255,0.06); }
.about-tile.wide i { font-size: 3.2rem; }
.about-badge {
  position: absolute;
  bottom: -26px; right: -26px;
  background: var(--orange);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 800; }
.about-badge span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gray-700);
  font-weight: 500;
}
.check-list i { color: var(--orange); margin-top: 3px; }

/* Fleet */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-media {
  height: 210px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.fleet-media.tone-orange { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }
.fleet-media::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.fleet-media i {
  font-size: 5.4rem;
  color: rgba(255,255,255,0.92);
  transition: var(--transition);
  position: relative;
}
.fleet-card:hover .fleet-media i { transform: scale(1.1) translateY(-4px); }
.fleet-body { padding: 24px; }
.fleet-body h3 { font-size: 1.2rem; margin-bottom: 6px; }
.fleet-tag { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 14px; }
.fleet-specs { display: flex; gap: 18px; margin-bottom: 18px; flex-wrap: wrap; }
.fleet-specs span { font-size: 0.82rem; color: var(--gray-700); display: flex; align-items: center; gap: 6px; }
.fleet-specs i { color: var(--orange); }
.fleet-price { display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed var(--gray-200); padding-top: 16px; }
.fleet-price strong { color: var(--navy); font-size: 1.15rem; }
.fleet-price small { display: block; color: var(--gray-500); font-size: 0.75rem; font-weight: 400; }

/* Destinations */
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, var(--navy-light) 0%, var(--navy-dark) 100%);
}
.dest-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.dest-card .dest-icon-bg {
  position: absolute;
  top: 14px; right: 4px;
  font-size: 8.5rem;
  color: rgba(255,255,255,0.1);
  transition: transform 0.4s ease;
}
.dest-card:hover .dest-icon-bg { transform: scale(1.12) rotate(4deg); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,42,84,0.95) 0%, rgba(7,42,84,0.35) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}
.dest-overlay .dest-tag {
  align-self: flex-start;
  background: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dest-overlay h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 4px; }
.dest-overlay p { color: #cfe0f7; font-size: 0.85rem; }
.dest-overlay .dest-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}
.dest-card:hover .dest-link { opacity: 1; transform: translateY(0); }

/* Why choose us / stats */
.stats-band {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  color: var(--white);
}
.stat-item { text-align: center; }
.stat-item i { font-size: 1.8rem; color: var(--orange); margin-bottom: 12px; }
.stat-item strong { display: block; font-size: 2.3rem; font-weight: 800; }
.stat-item span { color: #b9cbe8; font-size: 0.88rem; }

/* Steps / process */
.step-card { text-align: center; position: relative; padding: 0 10px; }
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 2px dashed var(--orange);
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step-card p { color: var(--gray-500); font-size: 0.9rem; }

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  height: 100%;
}
.testimonial-stars { color: var(--orange); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card p.quote { color: var(--gray-700); font-style: italic; margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-person strong { display: block; font-size: 0.95rem; }
.testimonial-person span { color: var(--gray-500); font-size: 0.8rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius);
  padding: 50px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; font-size: 1.7rem; }
.cta-band p { color: #ffe3d5; }

/* Page header (inner pages) */
.page-header {
  position: relative;
  background:
    linear-gradient(0deg, rgba(7,42,84,0.68) 0%, rgba(11,61,120,0.38) 100%),
    url('../images/tirumala-1.jpg') center 30%/cover no-repeat;
  padding: 90px 0 70px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); font-size: 2.4rem; margin-bottom: 12px; text-shadow: 0 2px 14px rgba(0,0,0,0.55); }
.breadcrumb { color: #cfe0f7; font-size: 0.9rem; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.breadcrumb a { color: var(--white); font-weight: 600; }
.breadcrumb i { margin: 0 8px; font-size: 0.7rem; }

/* Contact */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-card .service-icon { margin-bottom: 0; flex-shrink: 0; width: 54px; height: 54px; font-size: 1.2rem; }
.contact-info-card h4 { font-size: 1.02rem; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { color: var(--gray-500); font-size: 0.92rem; display: block; }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; color: var(--navy-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.94rem;
  background: var(--gray-50);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); background: var(--white); }
.form-group { margin-bottom: 18px; }
.form-note { font-size: 0.82rem; color: var(--gray-500); margin-top: 10px; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Fare table */
.fare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.fare-table th, .fare-table td { padding: 16px 20px; text-align: left; font-size: 0.92rem; }
.fare-table thead { background: var(--navy); color: var(--white); }
.fare-table tbody tr:nth-child(even) { background: var(--gray-50); }
.fare-table tbody tr:hover { background: #fdeee6; }

/* Destination detail page */
.dd-hero {
  position: relative;
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  background:
    linear-gradient(135deg, rgba(11,61,120,0.35) 0%, rgba(7,42,84,0.55) 100%),
    url('../images/tirumala-3.jpg') center/cover no-repeat;
}
.dd-hero .dd-hero-icon {
  position: absolute;
  right: 0; bottom: -30px;
  font-size: 16rem;
  color: rgba(255,255,255,0.14);
}
.dd-hero .dd-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,42,84,0.85), transparent 60%);
  display: flex; align-items: flex-end;
  padding: 36px;
}
.dd-hero .dd-hero-overlay h1 { color: var(--white); font-size: 2.2rem; }
.dd-hero .dd-hero-overlay p { color: #dbe6f5; }

.dd-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 44px; align-items: start; }
.dd-meta { display: flex; gap: 26px; flex-wrap: wrap; margin: 22px 0 30px; padding: 20px; background: var(--gray-50); border-radius: var(--radius); }
.dd-meta div strong { display: block; color: var(--navy); font-size: 0.95rem; }
.dd-meta div span { color: var(--gray-500); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }
.dd-meta i { color: var(--orange); margin-right: 6px; }

.dd-content h2 { font-size: 1.4rem; margin: 30px 0 14px; }
.dd-content p { color: var(--gray-700); margin-bottom: 16px; }
.dd-content ul { margin-bottom: 20px; }
.dd-content ul li { display: flex; gap: 10px; color: var(--gray-700); margin-bottom: 10px; }
.dd-content ul li i { color: var(--orange); margin-top: 4px; }

.dd-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0 10px; }
.dd-gallery .gallery-tile {
  height: 130px;
  width: 100%;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: rgba(255,255,255,0.85);
  font-size: 2rem;
}
.dd-gallery .gallery-tile:nth-child(2) { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }
.dd-gallery .gallery-tile:nth-child(3n) { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  margin-bottom: 24px;
}
.sidebar-card h4 { font-size: 1.05rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--gray-100); }
.sidebar-quote-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--gray-200); font-size: 0.9rem; color: var(--gray-700); }
.sidebar-quote-list li strong { color: var(--navy); }
.sidebar-related a {
  display: flex; gap: 12px; align-items: center; margin-bottom: 14px; font-size: 0.88rem; font-weight: 600; color: var(--navy-dark);
}
.sidebar-related .related-thumb {
  width: 60px; height: 50px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); border-color: rgba(255,255,255,0.2); }
.sidebar-cta p { color: #cfe0f7; font-size: 0.88rem; margin-bottom: 18px; }

/* FAQ accordion */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.accordion-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-dark);
}
.accordion-head i { color: var(--orange); transition: var(--transition); }
.accordion-item.open .accordion-head i { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
}
.accordion-item.open .accordion-body { max-height: 300px; padding: 0 22px 20px; }
.accordion-body p { color: var(--gray-500); font-size: 0.92rem; }

/* Footer */
.site-footer { background: var(--navy-dark); color: #b9cbe8; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 46px; }
.footer-col h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 20px; }
.footer-col p { font-size: 0.9rem; margin-bottom: 14px; color: #a9bddb; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.9rem; color: #a9bddb; }
.footer-links a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.88rem; color: #a9bddb; align-items: flex-start; }
.footer-contact i { color: var(--orange); margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #90a5c8;
}
.footer-bottom a { color: #90a5c8; }
.footer-bottom a:hover { color: var(--orange); }

/* Floating call button */
.float-call {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(241,90,36,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(241,90,36,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(241,90,36,0); }
  100% { box-shadow: 0 0 0 0 rgba(241,90,36,0); }
}

/* Back to top */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 300;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .dd-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quick-book form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-call { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .topbar-left { gap: 12px; }
  .navbar { flex-wrap: nowrap; gap: 10px; }
  .logo-text .l1 { font-size: 1.05rem; white-space: nowrap; }
  .logo-mark { width: 44px; height: 44px; font-size: 1.15rem; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn { padding: 10px 16px; font-size: 0.85rem; }
}

@media (max-width: 560px) {
  .topbar .container { flex-wrap: nowrap; overflow-x: auto; }
  .topbar-left { flex-wrap: nowrap; }
  .topbar-left span { display: none; }
  .topbar-right { flex-shrink: 0; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .quick-book form { grid-template-columns: 1fr; }
  .stats-band .grid-4 { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-badge { position: static; margin-top: -40px; display: inline-block; }
  .dd-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero { min-height: 540px; }
  .hero h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.6rem; }
  .cta-band { padding: 32px 22px; }
  .stats-band .grid-4 { grid-template-columns: 1fr 1fr; }
}
