/* =============================================
   AGARWAL PACKERS AND MOVERS - MAIN STYLESHEET
   Premium Red, Yellow, White Theme
   ============================================= */

:root {
  --red: #C0392B;
  --red-dark: #96281B;
  --red-light: #E74C3C;
  --yellow: #F39C12;
  --yellow-light: #F9C74F;
  --yellow-dark: #D68910;
  --white: #FFFFFF;
  --off-white: #FDF9F0;
  --light-gray: #F5F5F5;
  --mid-gray: #E0E0E0;
  --text-dark: #1A1A1A;
  --text-medium: #444444;
  --text-light: #777777;
  --border: #E5E5E5;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s ease;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--text-medium); }

/* ---- UTILITY CLASSES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 70px 0; }
.section-pad-sm { padding: 45px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-yellow { color: var(--yellow); }
.bg-red { background: var(--red); }
.bg-yellow { background: var(--yellow); }
.bg-light { background: var(--light-gray); }
.bg-off-white { background: var(--off-white); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 45px; }
.section-header .badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.section-header h2 { color: var(--text-dark); margin-bottom: 12px; }
.section-header h2 span { color: var(--red); }
.section-header p { color: var(--text-medium); max-width: 600px; font-size: 1.05rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.divider {
  width: 55px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 2px;
  margin: 14px 0 18px;
}
.divider.center { margin: 14px auto 18px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(192,57,43,0.35);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.45); }
.btn-secondary {
  background: var(--yellow);
  color: var(--text-dark);
  box-shadow: 0 4px 14px rgba(243,156,18,0.35);
}
.btn-secondary:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--red); }
.btn-white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
.btn-white:hover { background: var(--off-white); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* ---- FLOATING BUTTONS ---- */
.float-btns {
  position: fixed;
  bottom: 24px; right: 20px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 9999;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); }
.float-wa { background: #25D366; color: white; }
.float-call { background: var(--red); color: white; }

/* ====== HEADER ====== */
.site-header {
  position: sticky; top: 0;
  z-index: 9000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--red);
}
.header-top {
  background: var(--red);
  color: white;
  padding: 7px 0;
  font-size: 0.82rem;
}
.header-top .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.header-top a { color: white; display: inline-flex; align-items: center; gap: 5px; }
.header-top a:hover { color: var(--yellow-light); }
.header-top .ht-left, .header-top .ht-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.header-main .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.logo-icon .logo-truck { font-size: 1.6rem; }
.logo-text { line-height: 1.1; }
.logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.03em;
  display: block;
}
.logo-text .brand-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-main ul { display: flex; align-items: center; gap: 4px; }
.nav-main ul li { position: relative; }
.nav-main ul li a {
  display: block;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-main ul li a:hover, .nav-main ul li a.active {
  background: var(--red);
  color: var(--white);
}
.nav-main ul li.has-drop:hover > ul { display: block; }
.nav-main ul li > ul {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: white;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--red);
  z-index: 100;
  padding: 8px 0;
}
.nav-main ul li > ul li a {
  padding: 8px 18px;
  border-radius: 0;
  font-size: 0.88rem;
  color: var(--text-medium);
}
.nav-main ul li > ul li a:hover { background: var(--off-white); color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta a.btn { font-size: 0.88rem; padding: 10px 20px; }
.hamburger {
  display: none;
  background: none;
  border: 2px solid var(--red);
  border-radius: 6px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--red); transition: all 0.3s; }
.mobile-nav {
  display: none;
  background: var(--white);
  padding: 0 20px 20px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-dark);
}
.mobile-nav ul li a:hover { color: var(--red); }
.mobile-nav .mob-cta { display: flex; gap: 10px; margin-top: 14px; }
.mobile-nav .mob-cta a { flex: 1; text-align: center; }

/* ====== HERO SECTION ====== */
.hero {
  background: linear-gradient(135deg, #1a0000 0%, var(--red-dark) 40%, var(--red) 70%, #8B0000 100%);
  position: relative; overflow: hidden;
  padding: 60px 0 0;
  min-height: 560px;
}
.hero::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.03'%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");
}
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 50px; align-items: start; position: relative; z-index: 2; }
.hero-content { padding: 10px 0 50px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--yellow-light);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero h1 .highlight { color: var(--yellow-light); }
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 500px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-bottom: 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem; font-weight: 500;
}
.trust-item .icon { font-size: 1.2rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  display: flex; gap: 30px; flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 800;
  color: var(--yellow-light);
  line-height: 1;
}
.hero-stat .lbl { color: rgba(255,255,255,0.75); font-size: 0.8rem; margin-top: 4px; }

/* Hero Form */
.hero-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 10px;
}
.hf-head {
  background: var(--yellow);
  padding: 16px 24px;
}
.hf-head h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.hf-head p { color: var(--text-medium); font-size: 0.82rem; margin: 0; }
.hf-body { padding: 22px 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-medium); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-group.full { grid-column: 1/-1; }
.hf-body .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 14px; }
.honeypot { display: none !important; }

/* ====== TRUST STRIP ====== */
.trust-strip {
  background: var(--text-dark);
  padding: 18px 0;
}
.trust-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.ts-item {
  display: flex; align-items: center; gap: 10px;
  color: white; font-size: 0.9rem; font-weight: 500;
}
.ts-item .ico {
  width: 36px; height: 36px; background: var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ts-divider { height: 30px; width: 1px; background: rgba(255,255,255,0.15); }

/* ====== SERVICES ====== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--red); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px;
  color: white;
  box-shadow: 0 4px 14px rgba(192,57,43,0.3);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; margin: 0; }
.service-card a.more-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--red); font-weight: 600; font-size: 0.88rem;
  margin-top: 14px;
}
.service-card a.more-link:hover { gap: 8px; }

/* ====== WHY CHOOSE US ====== */
.why-us { background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why-img { position: relative; }
.why-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
}
.why-img-placeholder { font-size: 8rem; opacity: 0.3; }
.why-badge-float {
  position: absolute; bottom: -15px; right: -15px;
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.why-badge-float .num {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 800;
  color: var(--text-dark); line-height: 1;
}
.why-badge-float .lbl { font-size: 0.78rem; color: var(--text-medium); font-weight: 600; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--red);
  box-shadow: var(--shadow-sm);
}
.why-item .wi-icon {
  font-size: 1.5rem; min-width: 32px;
  color: var(--red);
  margin-top: 2px;
}
.why-item h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; margin: 0; }

/* ====== PROCESS ====== */
.process-wrap { position: relative; }
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(10% + 20px); right: calc(10% + 20px);
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  z-index: 0;
}
.p-step { text-align: center; position: relative; z-index: 1; padding: 0 10px; }
.p-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 800;
  color: var(--red);
  margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}
.p-step.active .p-step-num { background: var(--red); color: white; border-color: var(--red); }
.p-step-ico { font-size: 1.6rem; margin-bottom: 8px; }
.p-step h4 { font-size: 0.95rem; margin-bottom: 6px; }
.p-step p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ====== LOCATIONS ====== */
.location-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.loc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  transition: all var(--transition);
  display: flex; flex-direction: column; gap: 10px;
}
.loc-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.loc-card .city-name {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-dark);
  display: flex; align-items: center; gap: 8px;
}
.loc-card .city-name::before { content: '📍'; font-size: 1rem; }
.loc-card p { font-size: 0.84rem; color: var(--text-light); margin: 0; }
.loc-card a.loc-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--red); font-weight: 600; font-size: 0.85rem;
  margin-top: auto;
}

/* ====== TESTIMONIALS ====== */
.testimonials { background: var(--red); }
.testimonials .section-header h2 { color: white; }
.testimonials .section-header h2 span { color: var(--yellow-light); }
.testimonials .section-header .badge { background: rgba(255,255,255,0.2); color: white; }
.testimonials .divider { background: linear-gradient(90deg, var(--yellow), white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.testi-stars { color: var(--yellow-light); font-size: 1.1rem; margin-bottom: 14px; }
.testi-text {
  color: rgba(255,255,255,0.9);
  font-size: 0.93rem; line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 800;
  color: var(--text-dark);
}
.testi-info .name { font-weight: 700; color: white; font-size: 0.92rem; }
.testi-info .city { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

/* ====== FAQ ====== */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
  font-weight: 600; font-size: 0.97rem;
}
.faq-q:hover { background: var(--off-white); }
.faq-item.open .faq-q { background: var(--red); color: white; border-color: var(--red); }
.faq-toggle { font-size: 1.2rem; font-weight: 300; min-width: 20px; text-align: center; }
.faq-a {
  display: none;
  padding: 16px 22px;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  font-size: 0.92rem; color: var(--text-medium);
  line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

/* ====== CTA BANNER ====== */
.cta-banner {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2c0000 50%, var(--red-dark) 100%);
  padding: 60px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(243,156,18,0.05) 100%);
}
.cta-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.cta-text h2 { color: white; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.75); margin: 0; max-width: 500px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ====== LOCATION PAGE ====== */
.loc-hero {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 50px 0 40px;
  position: relative;
}
.loc-hero-inner { display: grid; grid-template-columns: 1fr 400px; gap: 40px; }
.loc-hero h1 { color: white; margin-bottom: 14px; }
.loc-hero p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.loc-contact-box {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 22px;
}
.lcb-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 14px;
  color: white;
}
.lcb-item:last-child { margin-bottom: 0; }
.lcb-icon { font-size: 1.2rem; min-width: 24px; margin-top: 2px; }
.lcb-text { font-size: 0.88rem; line-height: 1.5; }
.lcb-text strong { display: block; margin-bottom: 2px; color: var(--yellow-light); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  margin-bottom: 16px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--yellow-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }
.loc-content { padding: 50px 0; }
.loc-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); margin: 30px 0; }
.loc-map iframe { width: 100%; border: none; display: block; }
.loc-services-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 24px 0; }
.lsl-item {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600;
  border-left: 3px solid var(--red);
}
.lsl-item .ico { font-size: 1.3rem; }
.nearby-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.nearby-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition);
}
.nearby-link:hover { background: var(--red); color: white; border-color: var(--red); }
.loc-enquiry-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.loc-enquiry-form h3 { margin-bottom: 22px; }

/* ====== ABOUT PAGE ====== */
.about-hero { background: linear-gradient(135deg, var(--red-dark), var(--red)); padding: 50px 0; }
.about-hero h1 { color: white; }
.about-hero p { color: rgba(255,255,255,0.85); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.milestone-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 30px; }
.milestone {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  flex: 1; min-width: 150px;
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.milestone .num {
  font-family: var(--font-heading);
  font-size: 2.4rem; font-weight: 800;
  color: var(--red); line-height: 1;
}
.milestone .lbl { font-size: 0.82rem; color: var(--text-medium); margin-top: 4px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.value-item:hover { border-color: var(--yellow); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2.5rem; margin-bottom: 14px; }
.value-item h4 { margin-bottom: 8px; }
.value-item p { font-size: 0.88rem; margin: 0; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 800; color: white;
  margin: 0 auto 14px;
}
.team-card h4 { margin-bottom: 4px; font-size: 1rem; }
.team-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ====== CONTACT PAGE ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; }
.contact-info-box { display: flex; flex-direction: column; gap: 24px; }
.cib-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.cib-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--red);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white;
}
.cib-text h4 { margin-bottom: 5px; font-size: 1rem; }
.cib-text p, .cib-text a { font-size: 0.9rem; margin: 0; color: var(--text-medium); }
.cib-text a:hover { color: var(--red); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.cfc-head { background: var(--red); padding: 22px 28px; }
.cfc-head h3 { color: white; margin-bottom: 4px; }
.cfc-head p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.88rem; }
.cfc-body { padding: 28px; }
.cfc-body .form-row { margin-bottom: 14px; }
.cfc-body .form-group { margin-bottom: 0; }

/* ====== SERVICES PAGE ====== */
.svc-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail.alt { direction: rtl; }
.svc-detail.alt > * { direction: ltr; }
.svc-img {
  border-radius: var(--radius-md); overflow: hidden;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; opacity: 0.7;
}
.svc-info h2 { margin-bottom: 14px; }
.svc-info p { margin-bottom: 14px; }
.svc-features { margin-top: 20px; }
.svc-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.svc-features li::before { content: '✓'; color: var(--red); font-weight: 700; }

/* ====== FOOTER ====== */
.footer-main {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-about .footer-logo { margin-bottom: 16px; }
.footer-about .footer-logo .brand-name { color: white; }
.footer-about .footer-logo .brand-sub { color: rgba(255,255,255,0.5); }
.footer-about p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.65); }
.footer-contact li {
  display: flex; gap: 8px; align-items: flex-start;
  margin-bottom: 12px; font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact li .ico { min-width: 18px; color: var(--yellow); margin-top: 2px; }
.footer-contact li a { color: rgba(255,255,255,0.7); }
.footer-contact li a:hover { color: var(--yellow); }
.footer-col h4 { color: white; margin-bottom: 18px; font-size: 1rem; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--yellow); border-radius: 1px; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer-links li a:hover { color: var(--yellow); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.soc-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: white;
  transition: all var(--transition);
}
.soc-btn:hover { background: var(--red); transform: translateY(-2px); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { margin: 0; font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.6); font-size: 0.83rem; }
.footer-bottom a:hover { color: var(--yellow); }

/* ====== THANK YOU PAGE ====== */
.thankyou-section {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white);
  padding: 60px 20px;
}
.ty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 50px 44px;
  max-width: 560px; width: 100%;
  text-align: center;
}
.ty-icon {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; margin: 0 auto 24px;
}
.ty-card h1 { color: var(--red); margin-bottom: 14px; }
.ty-card p { margin-bottom: 10px; color: var(--text-medium); }

/* ====== MISC ====== */
.page-hero {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 45px 0;
}
.page-hero h1 { color: white; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.highlight-box {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white; border-radius: var(--radius-md);
  padding: 30px; margin: 30px 0;
}
.highlight-box h3 { color: var(--yellow-light); margin-bottom: 10px; }
.highlight-box p { color: rgba(255,255,255,0.9); margin: 0; }
.alert-box {
  background: #FFF8E1; border-left: 4px solid var(--yellow);
  border-radius: var(--radius-sm); padding: 16px 20px;
  font-size: 0.92rem; color: var(--text-medium);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .grid-4, .location-cards { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3,1fr); }
  .process-steps { grid-template-columns: repeat(3,1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .nav-main, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { margin-top: 30px; }
  .grid-2, .why-grid, .about-grid, .loc-hero-inner,
  .contact-grid, .svc-detail, .svc-detail.alt { grid-template-columns: 1fr; direction: ltr; }
  .grid-3, .testi-grid, .values-grid, .loc-services-list { grid-template-columns: 1fr 1fr; }
  .grid-4, .location-cards, .team-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-inner { text-align: center; justify-content: center; }
  .trust-strip .container { justify-content: center; }
  .ts-divider { display: none; }
  .hero-stats { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .why-badge-float { position: static; margin-top: 16px; }
  .milestone-row { justify-content: center; }
}

@media (max-width: 480px) {
  .grid-3, .testi-grid, .values-grid, .loc-services-list,
  .grid-4, .location-cards, .team-grid { grid-template-columns: 1fr; }
  .ty-card { padding: 32px 22px; }
  .loc-enquiry-form { padding: 22px; }
  .cfc-body { padding: 20px; }
}

/* ====== LOCATION PAGE STYLES ====== */
.location-hero {
  background: linear-gradient(135deg, var(--red) 0%, #8B0000 100%);
  padding: 60px 0 50px;
  color: white;
}
.location-hero-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: start;
}
.location-hero-text h1 {
  font-size: 2.4rem;
  color: white;
  margin: 16px 0 16px;
  line-height: 1.2;
}
.location-hero-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.location-contact-info { margin-bottom: 20px; }
.contact-item {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-item a { color: var(--yellow-light); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.hero-badges span {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
}
.location-hero-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.location-hero-form h3 {
  color: var(--red);
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}
.info-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--red);
}
.info-card h3 { color: var(--red); margin-bottom: 10px; font-size: 1.05rem; }
.info-card p { color: var(--text-medium); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.area-grid span {
  background: white;
  border: 1px solid #E8E8E8;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.2s;
}
.area-grid span:hover {
  border-color: var(--red);
  color: var(--red);
  background: #FFF5F5;
}
.services-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
.service-item {
  display: flex;
  gap: 18px;
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.service-item span { font-size: 2rem; flex-shrink: 0; }
.service-item h3 { color: var(--text-dark); margin-bottom: 8px; font-size: 1rem; }
.service-item p { color: var(--text-medium); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--yellow);
}
.testimonial-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card strong { color: var(--text-dark); font-size: 0.9rem; }
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 20px;
}
.map-container iframe { display: block; width: 100%; }
.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.nearby-links a {
  background: white;
  border: 2px solid var(--red);
  color: var(--red);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.nearby-links a:hover {
  background: var(--red);
  color: white;
}
.breadcrumb {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow-light); }

/* ====== LOCATION PAGE RESPONSIVE ====== */
@media (max-width: 1024px) {
  .location-hero-content { grid-template-columns: 1fr; }
  .location-hero-form { max-width: 100%; }
  .three-col-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .location-hero-text h1 { font-size: 1.9rem; }
  .three-col-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .area-grid { grid-template-columns: 1fr 1fr; }
  .nearby-links { flex-direction: column; }
  .nearby-links a { text-align: center; }
}
.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.branch-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.branch-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ED3237;
}

.branch-card p {
  font-size: 0.9rem;
  margin: 5px 0;
}

.branch-card iframe {
  width: 100%;
  height: 180px;
  border: 0;
  margin-top: 10px;
  border-radius: 8px;
}