/* ========================================
   URBANIA RENT CHENNAI - MAIN STYLESHEET
   Font: Poppins | Primary: #003f66 | Accent: #9AC426
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #003f66;
  --primary-dark: #002d4a;
  --primary-light: #e8f4fd;
  --accent: #9AC426;
  --accent-dark: #7a9d1e;
  --accent-light: #f0f7e0;
  --white: #ffffff;
  --text: #1a2535;
  --text-muted: #5a6a7a;
  --border: #dde5ee;
  --bg: #f7fafc;
  --shadow-sm: 0 2px 8px rgba(0,63,102,0.08);
  --shadow-md: 0 8px 32px rgba(0,63,102,0.12);
  --shadow-lg: 0 20px 60px rgba(0,63,102,0.16);
  --radius: 16px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
  padding: 0;
}
.nav-inner {
  max-width: 90%; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo {
  width: 44px; height: 44px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.nav-logo svg { width: 24px; height: 24px; }
.nav-brand-text strong { display: block; font-size: 1rem; color: var(--primary); font-weight: 700; line-height: 1.1; }
.nav-brand-text span { font-size: 0.68rem; color: var(--accent-dark); font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.86rem; font-weight: 500; transition: color 0.2s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--accent); transition:width 0.3s; border-radius:2px; }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width:100%; }
.nav-cta {
  background: #25D366; color: var(--white);
  border: none; padding: 9px 22px; border-radius: 30px;
  font-size: 0.84rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 0.2s; font-family: 'Poppins', sans-serif;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: #1fba5a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: white; padding: 20px 5%; border-bottom: 1px solid var(--border); z-index: 999; flex-direction: column; gap: 0; }
.mobile-menu a { text-decoration: none; color: var(--text); font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(0,21,40,0.72) 0%, rgba(0,63,102,0.65) 50%, rgba(0,60,100,0.70) 100%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
  display: flex; align-items: center;
  padding: 90px 5% 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}
.hero-inner {
  display: flex; align-items: center; gap: 4%;
  max-width: 90%; margin: 0 auto; width: 100%; position: relative; z-index: 1;
}
.hero-content { flex: 0 0 63%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(154,196,38,0.18); border: 1px solid rgba(154,196,38,0.4);
  color: #c8e86a; padding: 6px 16px; border-radius: 30px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800;
  color: var(--white); line-height: 1.18; margin-bottom: 18px; letter-spacing: -0.5px;
}
.hero h1 span { color: var(--accent); }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.82); margin-bottom: 30px; max-width: 530px; line-height: 1.8; font-weight: 400; }
.hero-stats { display: flex; gap: 28px; margin-bottom: 34px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--accent); }
.hero-stat span { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.hero-actions {
  display: flex; gap: 12px; flex-wrap: nowrap; align-items: center;
}
.hero-actions .btn-whatsapp,
.hero-actions .btn-primary {
  flex: 1; justify-content: center; min-width: 0; white-space: nowrap;
}
.hero-form-wrap { flex: 0 0 30%; }
.hero-form { background: var(--white); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-lg); }
.hero-form h3 { font-size: 1.2rem; color: var(--primary); font-weight: 700; margin-bottom: 4px; }
.hero-form p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; }

/* FORM ELEMENTS */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-group label .req { color: #e74c3c; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 13px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.86rem; font-family: 'Poppins', sans-serif;
  color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,63,102,0.08);
}
.form-group textarea { resize: vertical; }
.form-submit {
  width: 100%; background: var(--primary); color: var(--white);
  border: none; padding: 12px; border-radius: 30px;
  font-size: 0.92rem; font-weight: 600; cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: background 0.2s, transform 0.15s; margin-top: 4px;
}
.form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* BUTTONS */
.btn-primary {
  background: var(--accent); color: var(--white);
  padding: 13px 26px; border-radius: 30px; border: none;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  transition: all 0.2s; box-shadow: 0 5px 18px rgba(154,196,38,0.35); font-family: 'Poppins', sans-serif;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366; color: var(--white);
  padding: 13px 26px; border-radius: 30px; border: none;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  transition: all 0.2s; font-family: 'Poppins', sans-serif;
}
.btn-whatsapp:hover { background: #1fba5a; transform: translateY(-2px); }
.btn-card-wa {
  flex: 1; background: #25D366; color: white; border: none;
  padding: 10px 6px; border-radius: 30px; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: all 0.2s; text-decoration: none; font-family: 'Poppins', sans-serif;
}
.btn-card-wa:hover { background: #1fba5a; transform: translateY(-1px); }
.btn-card-enquiry {
  flex: 1; background: var(--primary); color: white; border: none;
  padding: 10px 6px; border-radius: 30px; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: all 0.2s; font-family: 'Poppins', sans-serif;
}
.btn-card-enquiry:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ===== SECTIONS ===== */
section { padding: 80px 5%; }
.section-inner { max-width: 90%; margin: 0 auto; }
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem); color: var(--primary);
  font-weight: 800; line-height: 1.22; margin-bottom: 12px; letter-spacing: -0.3px;
}
.section-desc { color: var(--text-muted); font-size: 0.95rem; max-width: 580px; line-height: 1.8; font-weight: 400; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ===== LOGO IMAGE ===== */
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ===== ABOUT SLIDER ===== */
.about-img {
  flex: 0 0 48%; border-radius: var(--radius); overflow: hidden;
  position: relative; min-height: 420px;
}
.about-slider {
  width: 100%; height: 420px; position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.about-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.65s ease-in-out;
}
.about-slide.active { opacity: 1; }
.about-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Mobile override applied via @media below */
/* Slider nav buttons */
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,63,102,0.7); color: white; border: none;
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s; line-height: 1;
}
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-prev:hover, .slider-next:hover { background: var(--primary); }
/* Dots */
.slider-dots {
  position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 10;
}
.slider-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  border: 2px solid rgba(255,255,255,0.8); transition: background 0.2s, transform 0.2s;
}
.slider-dot.active {
  background: var(--accent); border-color: var(--accent); transform: scale(1.25);
}


.about { background: var(--bg); }
.about-inner { display: flex; align-items: center; gap: 60px; }
/* ===== ABOUT CONTENT ===== */
.about-img-badge {
  position: absolute; bottom: 22px; left: 22px;
  background: var(--primary); color: var(--white); padding: 14px 18px;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
}
.about-img-badge strong { display: block; font-size: 1.5rem; font-weight: 800; }
.about-img-badge span { font-size: 0.72rem; opacity: 0.8; font-weight: 500; }
.about-content { flex: 1; }
.about-features { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 11px;
  background: var(--white); padding: 14px; border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}
.about-feature-icon { width: 34px; height: 34px; border-radius: 7px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.about-feature-text strong { display: block; font-size: 0.84rem; font-weight: 700; color: var(--primary); }
.about-feature-text span { font-size: 0.74rem; color: var(--text-muted); }

/* ===== SERVICES TABLE ===== */
.services { background: var(--white); }
.services-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.services-table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
}
.services-table thead tr {
  background: var(--primary); color: white;
}
.services-table thead th {
  padding: 16px 18px; text-align: left; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase;
  white-space: nowrap;
}
.services-table thead th:first-child { border-radius: 0; padding-left: 24px; }
.services-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.2s; }
.services-table tbody tr:last-child { border-bottom: none; }
.services-table tbody tr:nth-child(even) { background: #f8fbff; }
.services-table tbody tr:hover { background: var(--primary-light); }
.services-table td { padding: 18px 18px; vertical-align: middle; color: var(--text); }
.services-table td:first-child { padding-left: 24px; }
.service-name-cell { display: flex; align-items: center; gap: 12px; }
.service-icon-box {
  width: 46px; height: 46px; background: var(--primary-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem;
}
.service-name-cell strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--primary); }
.service-name-cell span { font-size: 0.75rem; color: var(--text-muted); }
.badge-pill {
  display: inline-block; padding: 3px 10px; border-radius: 30px;
  font-size: 0.72rem; font-weight: 700;
}
.badge-ac { background: #e0f7fa; color: #00838f; }
.badge-nonac { background: #fff3e0; color: #e65100; }
.fare-cell { font-weight: 700; color: var(--accent-dark); font-size: 1rem; }
.fare-cell small { display: block; font-size: 0.7rem; color: var(--text-muted); font-weight: 400; }
.table-actions { display: flex; gap: 8px; flex-wrap: nowrap; }
.tbl-btn-wa {
  background: #25D366; color: white; border: none; padding: 8px 14px;
  border-radius: 30px; font-size: 0.74rem; font-weight: 600; cursor: pointer;
  white-space: nowrap; display: flex; align-items: center; gap: 5px;
  font-family: 'Poppins', sans-serif; transition: all 0.2s; text-decoration: none;
}
.tbl-btn-wa:hover { background: #1fba5a; transform: translateY(-1px); }
.tbl-btn-enq {
  background: var(--primary); color: white; border: none; padding: 8px 14px;
  border-radius: 30px; font-size: 0.74rem; font-weight: 600; cursor: pointer;
  white-space: nowrap; display: flex; align-items: center; gap: 5px;
  font-family: 'Poppins', sans-serif; transition: all 0.2s;
}
.tbl-btn-enq:hover { background: var(--primary-dark); transform: translateY(-1px); }
.facility-list { display: flex; flex-wrap: wrap; gap: 4px; }
.facility-tag {
  background: var(--accent-light); color: var(--accent-dark);
  font-size: 0.68rem; font-weight: 600; padding: 3px 8px; border-radius: 4px;
}

/* ===== SERVICE CARDS (new design) ===== */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card-img {
  width: 100%; height: 210px; overflow: hidden; background: #eef2f7;
}
.svc-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body { padding: 18px 18px 10px; flex: 1; }
.svc-card-title {
  font-size: 1rem; font-weight: 700; color: var(--primary);
  text-align: center; margin-bottom: 14px; line-height: 1.35;
  padding-bottom: 12px; border-bottom: 2px solid var(--border);
}
.svc-info-list { list-style: none; margin: 0; padding: 0; }
.svc-info-list li {
  display: flex; align-items: baseline; gap: 6px;
  padding: 5px 0; border-bottom: 1px solid #f0f4f8;
  font-size: 0.82rem; line-height: 1.5;
}
.svc-info-list li:last-child { border-bottom: none; }
.svc-info-label {
  font-weight: 700; color: var(--primary); white-space: nowrap;
  min-width: 90px; font-size: 0.79rem;
}
.svc-info-label::after { content: ' :'; }
.svc-info-val { color: var(--text-muted); }
.svc-card-actions {
  display: flex; gap: 0; border-top: 1px solid var(--border);
}
.svc-btn-wa {
  flex: 1; background: #25D366; color: white; border: none;
  padding: 13px 8px; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'Poppins', sans-serif; transition: background 0.2s;
  text-decoration: none; letter-spacing: 0.03em;
  border-radius: 0 0 0 var(--radius);
}
.svc-btn-wa:hover { background: #1fba5a; }
.svc-btn-enq {
  flex: 1; background: var(--primary); color: white; border: none;
  padding: 13px 8px; font-size: 0.78rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'Poppins', sans-serif; transition: background 0.2s;
  letter-spacing: 0.03em; border-radius: 0 0 var(--radius) 0;
}
.svc-btn-enq:hover { background: var(--primary-dark); }

@media (max-width: 1100px) {
  .svc-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-cards-grid { grid-template-columns: 1fr; }
}

/* ===== TOUR PACKAGES ===== */
.tours { background: var(--bg); }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.tour-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { position: relative; height: 195px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.tour-card:hover .card-img img { transform: scale(1.06); }
.card-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: white; font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: 30px; letter-spacing: 0.04em; }
.card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.card-content { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 14px; }
.card-actions { display: flex; gap: 8px; }
.tour-route { background: var(--primary-light); color: var(--primary); font-size: 0.7rem; font-weight: 600; padding: 8px 18px; display: flex; align-items: center; gap: 6px; border-top: 1px solid rgba(0,63,102,0.1); }

/* ===== WHY CHOOSE US ===== */
.why { background: var(--primary); overflow: hidden; position: relative; }
.why::before { content:''; position:absolute; top:-80px; right:-80px; width:450px; height:450px; border-radius:50%; background:rgba(154,196,38,0.07); }
.why::after { content:''; position:absolute; bottom:-120px; left:-60px; width:350px; height:350px; border-radius:50%; background:rgba(255,255,255,0.04); }
.why .section-title { color: var(--white); }
.why .section-label { color: var(--accent); }
.why .section-desc { color: rgba(255,255,255,0.68); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 1; }
.why-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11); border-radius: var(--radius); padding: 26px; transition: background 0.25s, transform 0.25s; }
.why-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.why-icon { width: 50px; height: 50px; background: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.why-card h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.62); font-size: 0.82rem; line-height: 1.75; }

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.masonry { columns: 4; column-gap: 14px; }
.masonry-item { break-inside: avoid; margin-bottom: 14px; border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; }
.masonry-item img { width: 100%; display: block; transition: transform 0.4s; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,63,102,0.7) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 12px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay span { color: white; font-size: 0.74rem; font-weight: 600; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2500; background: rgba(0,15,30,0.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 10px; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.12); border: none; color: white; font-size: 1.4rem; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: white; font-size: 1.3rem; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 500; }

/* ===== CONTACT ===== */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 30px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-item h4 { font-size: 0.74rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.88rem; color: var(--text); text-decoration: none; line-height: 1.65; display: block; }
.contact-item a:hover { color: var(--primary); }
.contact-hours span { display: block; font-size: 0.84rem; color: var(--text-muted); }
.contact-hours strong { color: var(--accent-dark); font-size: 0.78rem; font-weight: 700; }
.map-frame { border-radius: var(--radius); overflow: hidden; height: 400px; border: 2px solid var(--border); }
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
footer { background: var(--primary-dark); color: rgba(255,255,255,0.75); padding: 50px 5% 24px; }
.footer-inner { max-width: 90%; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 38px; }
.footer-brand p { font-size: 0.82rem; margin-top: 10px; line-height: 1.75; opacity: 0.65; }
.footer-brand-name { font-size: 1.15rem; font-weight: 800; color: white; }
.footer-brand-sub { font-size: 0.67rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.footer-col h5 { color: var(--white); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.82rem; margin-bottom: 7px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.77rem; opacity: 0.45; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); text-decoration: none; transition: background 0.2s; }
.footer-social a:hover { background: var(--accent); color: white; }

/* ===== STICKY WHATSAPP ===== */
.sticky-wa {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  background: #25D366; color: white; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: floatWa 3s ease-in-out infinite;
}
@keyframes floatWa { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.sticky-wa svg { width: 28px; height: 28px; }

/* ===== POPUP ===== */
.popup-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,20,40,0.72); backdrop-filter: blur(5px);
  align-items: center; justify-content: center; padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-box {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  max-width: 480px; width: 100%; box-shadow: var(--shadow-lg);
  position: relative; animation: popIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn { from{opacity:0;transform:scale(0.88)} to{opacity:1;transform:scale(1)} }
.popup-close { position: absolute; top: 14px; right: 14px; background: var(--bg); border: none; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 1rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.popup-close:hover { background: #fce; color: #e74c3c; }
.popup-box h3 { font-size: 1.3rem; color: var(--primary); font-weight: 700; margin-bottom: 3px; }
.popup-box > p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 18px; }
.popup-vehicle-tag { background: var(--primary-light); border-left: 3px solid var(--primary); padding: 8px 13px; border-radius: 0 6px 6px 0; font-size: 0.82rem; color: var(--primary); font-weight: 600; margin-bottom: 18px; }
.hidden-vehicle-input { display: none; }

/* ===== TOAST ===== */
.toast { display: none; position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 12px 26px; border-radius: 30px; font-size: 0.88rem; font-weight: 600; z-index: 3000; box-shadow: var(--shadow-md); }
.toast.show { display: block; animation: toastIn 0.3s ease; }
@keyframes toastIn { from{opacity:0;transform:translate(-50%,20px)} to{opacity:1;transform:translate(-50%,0)} }

/* Flash messages */
.flash { padding: 12px 20px; border-radius: 8px; margin-bottom: 16px; font-size: 0.88rem; font-weight: 500; }
.flash.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Field validation errors */
.field-error {
  display: none; color: #e74c3c; font-size: 0.74rem;
  font-weight: 600; margin-top: 4px; display: block;
}
.input-error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.12) !important;
}
.input-error:focus { border-color: #e74c3c !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 3; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; }
  .hero-content, .hero-form-wrap { flex: unset; width: 100%; }
  .about-inner { flex-direction: column; }
  /* About slider: full bleed edge-to-edge on mobile */
  .about-img {
    flex: unset;
    width: 100vw;
    margin-left: calc(-5vw);
    margin-right: calc(-5vw);
    min-height: unset;
    border-radius: 0;
    overflow: visible;
  }
  .about-slider {
    height: auto !important;
    min-height: unset;
    position: relative;
    border-radius: 0;
    overflow: hidden;
  }
  /* Stack slides — only active shown */
  .about-slide {
    position: relative !important;
    inset: unset !important;
    display: none;
    opacity: 1 !important;
    transition: none;
  }
  .about-slide.active {
    display: block;
  }
  .about-slide img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover !important;
    background: #eef2f7;
    display: block;
  }
  .about-img-badge { display: none; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .slider-dots { bottom: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 80px; }
  .services-table { font-size: 0.8rem; }
  .services-table td, .services-table th { padding: 12px 12px; }
}
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .table-actions { flex-direction: column; }
  /* Hero buttons: one row, with breathing space below */
  .hero-actions {
    gap: 8px;
    margin-bottom: 24px;
  }
  .hero-actions .btn-whatsapp,
  .hero-actions .btn-primary {
    padding: 11px 10px;
    font-size: 0.78rem;
  }
}

/* ===== THANK YOU PAGE ===== */
.thankyou-page {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0,21,40,0.85) 0%, rgba(0,63,102,0.80) 100%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 5%; font-family: 'Poppins', sans-serif;
}
.thankyou-card {
  background: white; border-radius: 20px; padding: 56px 48px;
  max-width: 560px; width: 100%; text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.thankyou-icon {
  width: 80px; height: 80px; background: var(--accent-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 2.2rem;
}
.thankyou-card h1 {
  font-size: 1.9rem; font-weight: 800; color: var(--primary);
  margin-bottom: 10px; line-height: 1.2;
}
.thankyou-card .ty-sub {
  font-size: 1rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7;
}
.thankyou-details {
  background: var(--primary-light); border-radius: 12px;
  padding: 20px 24px; margin-bottom: 28px; text-align: left;
}
.thankyou-details p {
  font-size: 0.87rem; color: var(--text); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.thankyou-details p:last-child { margin-bottom: 0; }
.thankyou-details strong { color: var(--primary); }
.ty-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ty-actions a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 24px; border-radius: 30px; font-weight: 600;
  font-size: 0.9rem; text-decoration: none; transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.ty-btn-home { background: var(--primary); color: white; }
.ty-btn-home:hover { background: var(--primary-dark); transform: translateY(-2px); }
.ty-btn-wa { background: #25D366; color: white; }
.ty-btn-wa:hover { background: #1fba5a; transform: translateY(-2px); }
.ty-divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
.ty-contact { font-size: 0.82rem; color: var(--text-muted); }
.ty-contact a { color: var(--primary); text-decoration: none; font-weight: 600; }
@media (max-width: 500px) {
  .thankyou-card { padding: 36px 24px; }
  .thankyou-card h1 { font-size: 1.5rem; }
  .ty-actions { flex-direction: column; }
  .ty-actions a { justify-content: center; }
}

