/* ===================================================
   SHREE BALAJI PACKERS AND MOVERS - MAIN STYLESHEET
   Colors: Navy Blue #0a1628, Red #c41e1e, Gold #f5a623
   =================================================== */

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

:root {
  --navy: #0a1628;
  --navy-light: #152038;
  --navy-dark: #060d1a;
  --red: #c41e1e;
  --red-hover: #a51818;
  --gold: #f5a623;
  --gold-light: #fcc05a;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --light-gray: #f0eff0;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

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

/* ===== TYPOGRAPHY HELPERS ===== */
.section-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(196, 30, 30, 0.08);
  border: 1px solid rgba(196, 30, 30, 0.2);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span {
  color: var(--red);
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

.text-gold {
  color: var(--gold);
}
.text-red {
  color: var(--red);
}
.text-navy {
  color: var(--navy);
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--red);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary-custom:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 30, 0.35);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-custom:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.btn-white-custom:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar a {
  color: rgba(255, 255, 255, 0.75);
}
.top-bar a:hover {
  color: var(--gold);
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item i {
  color: var(--gold);
  font-size: 12px;
}

/* ===== HEADER / NAVBAR ===== */
.main-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10, 22, 40, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(10, 22, 40, 0.18);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
}
.navbar-brand-wrap img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav .nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  position: relative;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--red);
  background: rgba(196, 30, 30, 0.06);
}

.dropdown-menu-custom {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  padding: 8px 0;
}
.nav-item-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu-custom a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
}
.dropdown-menu-custom a:hover {
  background: rgba(196, 30, 30, 0.05);
  color: var(--red);
  padding-left: 24px;
}

.header-cta {
  background: var(--red);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.header-cta:hover {
  background: var(--red-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 30, 30, 0.3);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  cursor: pointer;
  padding: 0;
  border: 2px solid var(--navy);
  border-radius: 4px;
  background: var(--white);
  color: var(--navy);
  font-size: 20px;
  transition: var(--transition);
}
.hamburger.open {
  background: var(--navy);
  color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy) 50%,
    #1a2d4e 100%
  );
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-section::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(196, 30, 30, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .accent {
  color: var(--gold);
}
.hero-title .accent-red {
  color: var(--red);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.hero-stat-item {
  text-align: center;
}
.hero-stat-number {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-form-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.short-enquiry-section {
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.02), rgba(10, 22, 40, 0));
}

.short-enquiry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.short-enquiry-copy {
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.98), rgba(21, 34, 58, 0.96));
  color: var(--white);
  padding: 36px 32px;
}
.short-enquiry-copy .section-label {
  color: rgba(255, 255, 255, 0.75);
}
.short-enquiry-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}
.short-enquiry-context {
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.short-enquiry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.short-enquiry-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}
.short-enquiry-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.short-enquiry-form-wrap {
  padding: 0;
}
.short-enquiry-form-card {
  height: 100%;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.short-enquiry-form-card p {
  margin-bottom: 22px;
}

.short-enquiry-section {
  background: var(--white);
  padding: 28px 0 8px;
}
.short-enquiry-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(135deg, var(--navy), #13243d);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(10, 22, 40, 0.16);
  padding: 22px;
  overflow: visible;
}
.short-enquiry-copy {
  background: transparent;
  color: var(--white);
  padding: 0;
}
.short-enquiry-copy .section-label {
  color: var(--gold);
  margin-bottom: 6px;
}
.short-enquiry-fields {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(140px, 1fr) minmax(150px, 1.1fr) minmax(170px, 1.25fr) auto;
  gap: 10px;
  align-items: end;
}
.short-enquiry-fields .form-group-custom {
  margin-bottom: 0;
}
.short-enquiry-fields .form-group-custom label {
  color: rgba(255, 255, 255, 0.82);
}
.short-enquiry-fields .form-group-custom input {
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.short-enquiry-submit {
  min-height: 45px;
  padding: 11px 18px;
  white-space: nowrap;
  justify-content: center;
}
.short-enquiry-form .form-status {
  margin-top: 12px;
}

.form-group-custom {
  margin-bottom: 14px;
}
.form-group-custom label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196, 30, 30, 0.08);
}
.form-group-custom select {
  cursor: pointer;
}

/* ===== SECTION LAYOUT ===== */
.section-pad {
  padding: 90px 0;
}
.section-pad-sm {
  padding: 60px 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--off-white);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 30, 30, 0.15);
}
.service-card-img {
  display: block;
  position: relative;
  height: 200px;
  text-decoration: none;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
}
.service-card-icon {
  position: absolute;
  bottom: -22px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(196, 30, 30, 0.4);
  border: 3px solid var(--white);
}
.service-card-body {
  padding: 28px 24px 24px;
}
.service-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.3px;
}
.service-link:hover {
  gap: 10px;
  color: var(--red-hover);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--white);
}

.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.about-badge-box {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 4px solid var(--gold);
  min-width: 200px;
}
.about-badge-box .badge-number {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.about-badge-box .badge-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-feature-list {
  margin-top: 24px;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.about-feature-item:last-child {
  border-bottom: none;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(196, 30, 30, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 16px;
}
.about-feature-text h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.about-feature-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}

/* ===== STATS / NUMBERS SECTION ===== */
.stats-section {
  background: var(--navy);
  padding: 70px 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  overflow: hidden;
  word-wrap: break-word;
}
.stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  letter-spacing: 0.5px;
}
.stat-border {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--white);
}

.process-step {
  position: relative;
  text-align: center;
  padding: 10px 20px;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  z-index: 0;
}
.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  transition: var(--transition);
}
.process-step:hover .process-number {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: scale(1.1);
}
.process-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--off-white);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--red);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.why-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(196, 30, 30, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 22px;
  margin-bottom: 16px;
}
.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

/* ===== LOCALITIES SECTION ===== */
.localities-section {
  background: var(--white);
}

.locality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.locality-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.locality-link i {
  color: var(--red);
  font-size: 12px;
}
.locality-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateX(4px);
}
.locality-link:hover i {
  color: var(--white);
}
.locality-link-sm {
  font-size: 12px;
  padding: 7px 12px;
}

/* ===== ROUTES SECTION ===== */
.routes-section {
  background: var(--off-white);
}

.route-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}
.route-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: var(--red);
}
.route-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(196, 30, 30, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 16px;
}
.route-text {
  flex: 1;
}
.route-text span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}
.route-text strong {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.route-card:hover .route-text strong {
  color: var(--red);
}
.route-arrow {
  color: var(--red);
  font-size: 12px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--navy);
}
.testimonials-section .section-title {
  color: var(--white);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 166, 35, 0.3);
}
.testimonial-quote {
  font-size: 60px;
  color: var(--red);
  line-height: 1;
  font-family: "Lora", serif;
  font-style: italic;
  margin-bottom: 8px;
  opacity: 0.8;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.testimonial-name {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-role {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  margin-top: 4px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--off-white);
}

.faq-accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-accordion-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
}
.faq-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: rgba(196, 30, 30, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 14px;
  transition: var(--transition);
}
.faq-accordion-item.open .faq-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s ease;
}
.faq-accordion-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.faq-answer p + p {
  margin-top: 8px;
}

/* ===== BLOGS SECTION ===== */
.blogs-section {
  background: var(--white);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 30, 30, 0.12);
}
.blog-card-img {
  display: block;
  height: 200px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.blog-card-body {
  padding: 24px 22px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-meta i {
  color: var(--red);
}
.blog-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-body h3:hover {
  color: var(--red);
}
.blog-card-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}
.blog-read-more:hover {
  gap: 10px;
  color: var(--red-hover);
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--navy-dark);
  padding-top: 70px;
}
.footer-brand img {
  height: 65px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 3px;
  min-width: 16px;
}
.footer-contact-item span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-title {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links a::before {
  content: "›";
  color: var(--gold);
  font-weight: 700;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  margin-top: 50px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.footer-bottom a {
  color: var(--gold);
}
.footer-bottom a:hover {
  color: var(--gold-light);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-3px);
}

/* ===== FLOATING BUTTONS ===== */
.float-whatsapp {
  position: fixed !important;
  bottom: 24px;
  right: 24px;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.float-whatsapp:hover {
  background: #1ebe5d;
  color: var(--white);
  transform: scale(1.1);
  animation: none;
}
.float-call {
  position: fixed !important;
  bottom: 92px;
  right: 24px;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(196, 30, 30, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.float-call:hover {
  background: var(--red-hover);
  color: var(--white);
  transform: scale(1.1);
}
.float-call i {
  transform: scaleX(-1);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7);
  }
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.breadcrumb-section h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-nav a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
.breadcrumb-nav a:hover {
  color: var(--gold);
}
.breadcrumb-nav span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
.breadcrumb-nav .current {
  font-size: 13.5px;
  color: var(--gold);
  font-weight: 600;
}

/* ===== PAGE-SPECIFIC STYLES ===== */
.content-page {
  padding: 70px 0;
}
.content-page h2 {
  margin-bottom: 16px;
  color: var(--navy);
}
.content-page h3 {
  font-size: 18px;
  margin: 24px 0 10px;
  color: var(--navy);
}
.content-page p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-page ul,
.content-page ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.content-page li {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}
.seo-content-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0;
}
.seo-content-block h3:first-child {
  margin-top: 0;
}

/* Sidebar */
.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}
.sidebar-service-link:last-child {
  border-bottom: none;
}
.sidebar-service-link i {
  color: var(--red);
  font-size: 12px;
}
.sidebar-service-link:hover {
  color: var(--red);
  padding-left: 6px;
}

.contact-sidebar-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-sidebar-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-sidebar-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.contact-sidebar-card a.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: var(--transition);
}
.contact-sidebar-card a.phone-link:hover {
  background: var(--red-hover);
  transform: translateX(4px);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay i {
  color: var(--white);
  font-size: 36px;
}

/* ===== GALLERY LIGHTBOX ===== */
.gallery-modal-content {
  background: rgba(10, 22, 40, 0.95) !important;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}
.gallery-modal-image {
  max-width: 95%;
  max-height: 95vh;
  object-fit: contain;
  animation: zoomIn 0.3s ease-out;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.gallery-modal-close {
  position: fixed !important;
  top: 30px !important;
  right: 40px !important;
  background: rgba(255, 255, 255, 0.25) !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1100 !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
}
.gallery-modal-close:hover,
.gallery-modal-close:focus {
  background: rgba(255, 255, 255, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  transform: rotate(90deg);
}
.gallery-modal-close::after {
  content: "✕" !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 28px !important;
  font-weight: bold !important;
  line-height: 1 !important;
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(196, 30, 30, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
}
.contact-info-item h5 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}
.contact-info-item a:hover {
  color: var(--gold);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-form-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ===== 404 PAGE ===== */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.page-404 .error-number {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.page-404 .error-content {
  position: relative;
  z-index: 1;
}

/* ===== BLOG DETAIL ===== */
.blog-detail-content h2 {
  font-size: 22px;
  margin: 32px 0 14px;
}
.blog-detail-content h3 {
  font-size: 18px;
  margin: 24px 0 10px;
  color: var(--red);
}
.blog-detail-content p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #374151;
  margin-bottom: 18px;
}
.blog-detail-content ul {
  padding-left: 20px;
  margin-bottom: 18px;
}
.blog-detail-content li {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}
.blog-detail-img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  margin-bottom: 32px;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 {
  transition-delay: 0.1s;
}
.animate-delay-2 {
  transition-delay: 0.2s;
}
.animate-delay-3 {
  transition-delay: 0.3s;
}
.animate-delay-4 {
  transition-delay: 0.4s;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 1199.98px){
  .short-enquiry-card{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .header-cta {
    font-size: 12px;
    padding: 9px 16px;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
    flex-direction: column;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-menu-header img {
    height: 50px;
  }
  .mobile-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    border: none;
  }
  .mobile-nav-link {
    display: block;
    padding: 14px 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: var(--transition);
  }
  .mobile-nav-link:hover {
    color: var(--gold);
    padding-left: 24px;
  }
  .mobile-submenu {
    padding-left: 16px;
  }
  .mobile-submenu .mobile-nav-link {
    font-size: 13.5px;
    font-weight: 500;
  }

  .hero-stats {
    gap: 18px;
  }
  .hero-stat-number {
    font-size: 1.6rem;
  }
  .about-badge-box {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 20px;
    display: inline-flex;
  }
  .process-step::after {
    display: none;
  }
  .locality-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .short-enquiry-card {
    grid-template-columns: 1fr;
  }
  .short-enquiry-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .short-enquiry-submit {
    width: 100%;
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 60px 0;
  }
  .top-bar .d-flex {
    flex-direction: column;
    gap: 6px;
  }
  .hero-section {
    padding: 60px 0 40px;
    min-height: auto;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
  .hero-form-card {
    margin-top: 32px;
  }
  .stat-border {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 12px;
  }
  .stats-section {
    padding: 50px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 28px 20px;
  }
  .short-enquiry-section {
    padding: 20px 0 0;
  }
  .short-enquiry-card {
    padding: 18px;
  }
  .short-enquiry-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .float-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .float-call {
    bottom: 78px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .stat-item {
    padding: 16px 12px;
  }
  .stat-number {
    font-size: 1.75rem;
  }
  .stat-label {
    font-size: 11px;
    margin-top: 4px;
  }
  .stats-section {
    padding: 40px 0;
  }
  .locality-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
