/* ============================================================
   BALAJI TOURS AND TRAVELS — bttrentacar.com
   Main Stylesheet | Premium Corporate Transport
   Theme: Black / Yellow #FFC300 / White
   ============================================================ */

/* --- Google Fonts loaded in HTML --- */

:root {
  --black:       #0A0A0A;
  --black-soft:  #111111;
  --black-card:  #181818;
  --yellow:      #FFC300;
  --yellow-dark: #E6B000;
  --white:       #FFFFFF;
  --off-white:   #F7F7F5;
  --gray-light:  #F2F2F2;
  --gray-mid:    #D0D0D0;
  --gray-text:   #888888;
  --body-text:   #2A2A2A;
  --section-pad: 90px 0;
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Inter', sans-serif;
  --radius:      6px;
  --shadow-card: 0 2px 20px rgba(0,0,0,0.07);
  --shadow-lift: 0 8px 32px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--black);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: #555; line-height: 1.8; }
.lead { font-size: 1.1rem; color: #444; }

/* ── UTILITY CLASSES ─────────────────────── */
.section-pad      { padding: var(--section-pad); }
.section-pad-sm   { padding: 60px 0; }
.bg-black         { background: var(--black); }
.bg-off-white     { background: var(--off-white); }
.bg-yellow        { background: var(--yellow); }
.text-yellow      { color: var(--yellow) !important; }
.text-white       { color: var(--white) !important; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.eyebrow-white { color: var(--white); }

.section-title { margin-bottom: 14px; }
.section-sub   { color: #666; font-size: 1.05rem; max-width: 640px; }
.divider-yellow {
  width: 48px; height: 3px;
  background: var(--yellow);
  margin: 18px 0 32px;
}
.divider-yellow.center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ─────────────────────────────── */
.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--yellow);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.18s;
  white-space: nowrap;
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--black);
  transform: translateY(-1px);
}
.btn-black {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.18s;
  white-space: nowrap;
}
.btn-black:hover {
  background: var(--black-soft);
  color: var(--yellow);
  transform: translateY(-1px);
}
.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.65);
  cursor: pointer;
  transition: all 0.22s;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-outline-yellow {
  display: inline-block;
  background: transparent;
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--yellow);
  cursor: pointer;
  transition: all 0.22s;
}
.btn-outline-yellow:hover {
  background: var(--yellow);
  color: var(--black);
}

/* ── TOP BAR ─────────────────────────────── */
#top-bar {
  background: var(--black);
  padding: 8px 0;
  font-size: 0.78rem;
  color: #bbb;
  border-bottom: 1px solid #222;
}
#top-bar a { color: #bbb; transition: color 0.2s; }
#top-bar a:hover { color: var(--yellow); }
#top-bar .top-contact span { margin-right: 22px; }
#top-bar .top-contact i { color: var(--yellow); margin-right: 5px; }
#top-bar .top-social a { margin-left: 14px; font-size: 0.85rem; }

/* ── NAVBAR ──────────────────────────────── */
#main-nav {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
#main-nav.scrolled {
  box-shadow: 0 3px 20px rgba(0,0,0,0.12);
}
.navbar-brand { display: flex; align-items: center; gap: 12px; padding: 14px 0; }
.brand-logo-img { height: 48px; width: auto; }
.brand-text-wrap .brand-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand-text-wrap .brand-name span { color: var(--yellow); }
.brand-text-wrap .brand-tagline {
  font-size: 0.68rem;
  color: var(--gray-text);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.navbar-nav .nav-item { margin: 0 2px; }
.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black) !important;
  padding: 26px 12px !important;
  transition: color 0.2s;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.22s;
}
.navbar-nav .nav-link:hover { color: var(--black) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .dropdown-menu {
  border: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  padding: 12px 0;
  min-width: 220px;
  margin-top: 0;
}
.navbar-nav .dropdown-item {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  padding: 9px 22px;
  transition: background 0.18s, color 0.18s;
}
.navbar-nav .dropdown-item:hover {
  background: var(--yellow);
  color: var(--black);
}
.nav-cta-btn {
  background: var(--yellow);
  color: var(--black) !important;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 20px !important;
  border-radius: var(--radius);
  margin-left: 8px;
  transition: background 0.2s, transform 0.18s !important;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover {
  background: var(--yellow-dark) !important;
  transform: translateY(-1px);
  color: var(--black) !important;
}
.navbar-toggler {
  border: 2px solid var(--black);
  padding: 6px 10px;
  border-radius: 4px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230A0A0A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO SLIDER — IMAGE FOCUSED ─────────── */
#hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  position: relative;
  height: 90vh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.30) 45%,
    rgba(0,0,0,0.08) 100%
  );
  z-index: 1;
}
.hero-slide .container { position: relative; z-index: 2; padding-bottom: 56px; }
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,195,0,0.18);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  border: 1px solid rgba(255,195,0,0.4);
  margin-bottom: 14px;
}
/* Hero tagline — image-focused minimal */
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}
.hero-trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-trust-item i { color: var(--yellow); font-size: 0.9rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 1;
  margin: 0 16px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--yellow); }
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 18px; height: 18px; }
.carousel-indicators button {
  width: 30px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 4px;
}
.carousel-indicators button.active { background: var(--yellow); width: 48px; }

/* ── ENQUIRY FORM BAR ────────────────────── */
#enquiry-bar {
  background: var(--black);
  padding: 38px 0;
  border-bottom: 3px solid var(--yellow);
}
#enquiry-bar .form-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}
#enquiry-bar .form-control,
#enquiry-bar .form-select {
  background: #1C1C1C;
  border: 1px solid #333;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.88rem;
  padding: 10px 13px;
  transition: border-color 0.2s;
}
#enquiry-bar .form-control:focus,
#enquiry-bar .form-select:focus {
  background: #1C1C1C;
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(255,195,0,0.15);
  color: var(--white);
}
#enquiry-bar .form-control::placeholder { color: #555; }
#enquiry-bar .form-select option { background: #1C1C1C; color: var(--white); }
#enquiry-bar textarea.form-control { resize: none; }
.enquiry-heading {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.enquiry-heading span { color: var(--yellow); }

/* ── ABOUT SECTION ───────────────────────── */
.about-stat-box {
  text-align: center;
  padding: 24px 20px;
  border: 1px solid #eee;
  border-radius: var(--radius);
}
.about-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.about-stat-num sup { font-size: 1rem; }
.about-stat-label {
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
  font-weight: 600;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
  height: 460px;
}
.about-badge {
  position: absolute;
  bottom: -18px; right: 24px;
  background: var(--yellow);
  color: var(--black);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lift);
}
.about-badge .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.about-badge .lbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── SERVICES SECTION ────────────────────── */
.service-card {
  border: 1px solid #EBEBEB;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.26s, transform 0.26s;
  background: var(--white);
  height: 100%;
}
.service-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.service-card-body {
  padding: 24px 22px 22px;
}
.service-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--black);
}
.service-card-body p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 18px;
  line-height: 1.7;
}
.service-card-link {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.service-card-link:hover { color: var(--yellow); gap: 10px; }
.service-card-link i { font-size: 0.75rem; }
.service-icon-bar {
  height: 3px;
  background: #eee;
  position: relative;
  margin-bottom: 0;
}
.service-icon-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 3px;
  width: 40px;
  background: var(--yellow);
  border-radius: 2px;
}

/* ── FLEET SECTION ───────────────────────── */
#fleet-section { background: var(--off-white); }
.fleet-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.fleet-filter-btn {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border: 1.5px solid #ddd;
  border-radius: 30px;
  background: var(--white);
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}
.fleet-filter-btn:hover,
.fleet-filter-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow 0.24s, transform 0.24s;
}
.fleet-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}
.fleet-card-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  background: #f5f5f5;
}
.fleet-card-body { padding: 18px 18px 16px; }
.fleet-card-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.fleet-specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: #666;
  font-weight: 500;
}
.fleet-spec i { color: var(--yellow); font-size: 0.8rem; }
.fleet-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── CORPORATE / EMP TRANSPORT SECTIONS ──── */
.feature-split-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.feature-list { margin: 20px 0 28px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.92rem;
  color: #444;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i {
  color: var(--yellow);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.feature-highlight-box {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  margin-top: 28px;
}
.feature-highlight-box p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 18px; }

/* ── WHY CHOOSE US ───────────────────────── */
#why-us { background: var(--black); }
#why-us h2 { color: var(--white); }
#why-us .section-sub { color: rgba(255,255,255,0.65); }
.why-card {
  padding: 30px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  height: 100%;
  transition: border-color 0.24s, background 0.24s;
}
.why-card:hover {
  border-color: var(--yellow);
  background: rgba(255,195,0,0.04);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(255,195,0,0.1);
  border: 1px solid rgba(255,195,0,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon i { font-size: 1.4rem; color: var(--yellow); }
.why-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.87rem; line-height: 1.7; margin: 0; }

/* ── SAFETY SECTION ──────────────────────── */
.safety-card {
  padding: 28px 24px;
  border: 1px solid #eee;
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  height: 100%;
}
.safety-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  min-width: 36px;
}
.safety-card h4 { font-size: 0.95rem; color: var(--black); margin-bottom: 7px; }
.safety-card p { font-size: 0.84rem; color: #666; margin: 0; line-height: 1.65; }

/* ── INDUSTRIES ──────────────────────────── */
#industries-section { background: var(--off-white); }
.industry-tile {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
  height: 100%;
}
.industry-tile:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.industry-tile-img-wrap {
  width: 100%;
  height: 80px;
  overflow: hidden;
}
.industry-tile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.industry-tile:hover .industry-tile-img-wrap img { transform: scale(1.06); }
.industry-tile h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  padding: 10px 8px 12px;
}

/* ── STATS COUNTER BAR ───────────────────── */
#stats-bar { background: var(--yellow); }
.stat-item { text-align: center; padding: 36px 20px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(0,0,0,0.65);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 6px;
  display: block;
}
.stat-divider {
  width: 1px;
  background: rgba(0,0,0,0.15);
  align-self: stretch;
  margin: 28px 0;
}

/* ── TESTIMONIALS ────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--yellow);
  line-height: 1;
  position: absolute;
  top: 14px; left: 22px;
  opacity: 0.4;
}
.testimonial-stars { color: var(--yellow); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.88rem; color: var(--black); }
.author-role { font-size: 0.78rem; color: #888; }

/* ── FAQ ─────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-question {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--yellow); }
.faq-question .faq-icon {
  width: 28px; height: 28px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.faq-question .faq-icon i { font-size: 0.7rem; color: #555; transition: transform 0.25s; }
.faq-item.open .faq-question .faq-icon { background: var(--yellow); }
.faq-item.open .faq-question .faq-icon i { transform: rotate(45deg); color: var(--black); }
.faq-answer {
  display: none;
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}
.faq-answer.open { display: block; }

/* ── CTA BANNER ──────────────────────────── */
/* CTA rules now live in index.html <style> block (yellow version) */
/* Keeping this comment so the section boundary is clear */

/* ── FOOTER ──────────────────────────────── */
#footer { background: var(--black-soft); border-top: 3px solid var(--yellow); }
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.5); margin: 14px 0 20px; line-height: 1.7; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-right: 6px;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.footer-heading {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 13px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item i { color: var(--yellow); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--yellow); }

/* ── INNER PAGE HERO ─────────────────────── */
.page-hero {
  background: var(--black);
  padding: 72px 0 54px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: -60px; bottom: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,195,0,0.05);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); }
.page-hero-sub { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-top: 10px; }
.page-hero-sub a { color: rgba(255,255,255,0.55); }
.page-hero-sub a:hover { color: var(--yellow); }
.page-hero-sub span { color: var(--yellow); }

/* ── WHATSAPP FLOAT ──────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float i { font-size: 1.5rem; color: #fff; }

/* ── GALLERY PAGE ────────────────────────── */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay i { color: var(--yellow); font-size: 1.5rem; }

/* ── CAREER PAGE ─────────────────────────── */
.job-card {
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  transition: box-shadow 0.22s, border-color 0.22s;
}
.job-card:hover { box-shadow: var(--shadow-card); border-color: var(--yellow); }
.job-tag {
  display: inline-block;
  background: #f5f5f5;
  color: #555;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 6px;
}
.job-tag.yellow { background: #FFF4B8; color: #9B7900; }

/* ── PARTNER PAGE ────────────────────────── */
.partner-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.partner-benefit:last-child { border-bottom: none; }
.partner-benefit-icon {
  width: 44px; height: 44px;
  background: #FFF4B8;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner-benefit-icon i { color: var(--yellow); font-size: 1.1rem; }
.partner-benefit h4 { font-size: 0.95rem; margin-bottom: 5px; }
.partner-benefit p { font-size: 0.85rem; color: #666; margin: 0; }

/* ── CONTACT PAGE ────────────────────────── */
.contact-info-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(255,195,0,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon i { color: var(--yellow); font-size: 1rem; }
.contact-detail p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; line-height: 1.6; }
.contact-detail a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.contact-detail a:hover { color: var(--yellow); }
.contact-form-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-form-card .form-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 0.9rem;
  padding: 11px 14px;
  transition: border-color 0.2s;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,195,0,0.12);
}

/* ── TERMS / PRIVACY PAGE ────────────────── */
.legal-content h2 { font-size: 1.35rem; margin: 36px 0 12px; }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.legal-content p,
.legal-content li {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 10px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-toc {
  background: var(--off-white);
  border-left: 3px solid var(--yellow);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
}
.legal-toc a { color: var(--black); font-size: 0.87rem; display: block; padding: 4px 0; transition: color 0.2s; }
.legal-toc a:hover { color: var(--yellow); }

/* ── ANIMATIONS ──────────────────────────── */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-aos="fade-right"].aos-animate { opacity: 1; transform: translateX(0); }
[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-aos="fade-left"].aos-animate { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 991.98px) {
  :root { --section-pad: 68px 0; }
  .hero-slide { height: 75vh; min-height: 480px; }
  .hero-slide::before { background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.05) 100%); }
  .hero-slide .container { padding-bottom: 36px; }
  .feature-split-img { height: 280px; margin-bottom: 28px; }
  .about-img-wrap img { height: 320px; }
  .about-badge { right: 12px; bottom: -14px; }
  .navbar-nav .nav-link { padding: 12px 0 !important; border-bottom: 1px solid #f0f0f0; }
  .navbar-nav .nav-link::after { display: none; }
  .nav-cta-btn { margin-left: 0; margin-top: 12px; display: inline-block; }
}
@media (max-width: 767.98px) {
  .hero-slide { height: 70vh; min-height: 420px; }
  .hero-content h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .stat-num { font-size: 2rem; }
  .cta-phone { font-size: 1.2rem; }
  .contact-form-card, .contact-info-card { padding: 24px 20px; }
  #enquiry-bar { padding: 28px 0; }
  .hero-trust-row { gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
