/* ==========================================================================
   Shree Ashirwad Packers and Movers - Ranchi
   Design System & Color Palette matching Sacred Swastik (Red & Yellow/Gold)
   ========================================================================== */

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

:root {
  /* Brand Swastik Color Palette */
  --primary-color: #0b132b;        /* Deep Slate Dark Navy */
  --brand-red: #d32f2f;           /* Swastik Crimson Red */
  --brand-red-hover: #b71c1c;
  --brand-yellow: #f59e0b;        /* Swastik Golden Yellow */
  --brand-yellow-hover: #d97706;
  --brand-gradient: linear-gradient(135deg, #d32f2f 0%, #f59e0b 100%);
  --brand-gold-glow: rgba(245, 158, 11, 0.18);
  
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border-color: #e2e8f0;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 30px rgba(0,0,0,0.15);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  height: 100%;
}

body {
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Main Container */
.site-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Gradient Text Utility */
.text-gradient {
  background: linear-gradient(135deg, #ff5252 0%, #f59e0b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Top Information Bar
   ========================================================================== */
.top-bar {
  background-color: var(--primary-color);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  color: var(--brand-yellow);
  flex-shrink: 0;
}

/* ==========================================================================
   Header & Navigation Bar
   ========================================================================== */
.site-header {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--brand-yellow);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

/* Swastik Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0px 2px 4px rgba(211, 47, 47, 0.25));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-color);
  line-height: 1.15;
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-red);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--brand-yellow);
  transition: var(--transition);
}

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

/* Navigation Dropdown Submenus */
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1050;
  border-top: 3px solid var(--brand-yellow);
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.show .dropdown-menu,
.nav-item.dropdown.active-dropdown .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary-color);
  transition: var(--transition);
  white-space: nowrap;
}

.dropdown-item:hover, .dropdown-item.active {
  background-color: #fff8eb;
  color: var(--brand-red);
  padding-left: 22px;
}

@media (max-width: 768px) {
  .nav-item.dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--brand-yellow);
    background-color: transparent;
    padding: 0 0 0 12px;
    margin-top: 4px;
    min-width: 100%;
    transition: all 0.3s ease;
  }

  .nav-item.dropdown.show .dropdown-menu,
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 4px 0 4px 12px;
  }

  .dropdown-item {
    padding: 6px 12px;
    font-size: 0.86rem;
  }
}

/* Header Call Button (Red & Yellow theme) */
.header-call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff8eb;
  border: 1px solid #fde68a;
  padding: 4px 14px 4px 4px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.header-call-btn:hover {
  background-color: #fef3c7;
  transform: translateY(-1px);
}

.call-icon-circle {
  width: 36px;
  height: 36px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.35);
  flex-shrink: 0;
}

.call-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
  line-height: 1.1;
  white-space: nowrap;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   NEW HERO SECTION (Swastik Red & Yellow Theme)
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0b132b 0%, #1c1917 100%);
  color: var(--white);
  padding: 65px 0 75px 0;
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Ambient Swastik Red & Yellow Glows */
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--brand-yellow);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  white-space: nowrap;
}

.hero-badge svg {
  color: var(--brand-yellow);
}

/* Target Keyword H1: Packers and Movers in Ranchi */
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.85rem;
  line-height: 1.22;
  margin-bottom: 18px;
  color: #ffffff;
}

.hero-description {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 26px;
  max-width: 580px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
}

.feature-pill.gold svg {
  color: var(--brand-yellow);
}

.feature-pill.red svg {
  color: #ff5252;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 0.96rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--brand-gradient);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--brand-yellow);
  border: 1.5px solid var(--brand-yellow);
}

.btn-outline-gold:hover {
  background: rgba(245, 158, 11, 0.12);
  color: #ffffff;
}

/* Quick Quote Form Card with Golden Accent Border */
.hero-card {
  background: #ffffff;
  color: var(--text-dark);
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brand-yellow);
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* ==========================================================================
   Footer Section (Swastik Red & Yellow Accents)
   ========================================================================== */
.site-footer {
  background-color: #070d19;
  color: #94a3b8;
  padding: 44px 0 20px 0;
  border-top: 2px solid var(--brand-yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-heading {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--brand-gradient);
  margin-top: 6px;
  border-radius: 2px;
}

.footer-address-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-address-item svg {
  color: var(--brand-yellow);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--brand-yellow);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-section {
    padding: 30px 0 36px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }
  
  .hero-title {
    font-size: 2.1rem;
    text-align: center;
  }

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

  .hero-features {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .hero-cta-group {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .navbar {
    height: 62px;
  }

  /* REMOVE COMPANY NAME TEXT ON MOBILE HEADER */
  .brand-text {
    display: none !important;
  }

  .brand-logo img {
    height: 40px;
  }

  .header-call-btn {
    padding: 3px 8px 3px 3px;
    gap: 6px;
  }

  .call-icon-circle {
    width: 32px;
    height: 32px;
  }

  .call-number {
    font-size: 0.82rem;
  }

  .nav-menu {
    position: fixed;
    top: 62px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 62px);
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    font-size: 0.74rem;
    padding: 5px 14px;
    white-space: nowrap;
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .hero-badge svg {
    display: inline-block;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
    margin-bottom: 14px;
    text-align: center;
  }

  .hero-description {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 18px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .feature-pill {
    padding: 6px 12px;
    font-size: 0.8rem;
    justify-content: center;
  }

  .hero-cta-group {
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
  }

  .hero-cta-group .btn {
    padding: 12px 20px;
    font-size: 0.92rem;
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact Page Styles (Unified Swastik Red & Golden Yellow Theme)
   ========================================================================== */
.page-banner {
  background: linear-gradient(135deg, #0b132b 0%, #1c1917 100%);
  color: var(--white);
  padding: 50px 0 40px 0;
  text-align: center;
  border-bottom: 3px solid var(--brand-yellow);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.28) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.28) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.page-title span {
  background: linear-gradient(135deg, #d32f2f 0%, #f59e0b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-subtitle {
  font-size: 1.02rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-section {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(180deg, #0b132b 0%, #16203b 100%);
  color: var(--white);
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: #111a36;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 4px solid var(--brand-yellow);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.25);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--brand-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.info-content {
  flex: 1;
  min-width: 0;
}

.info-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.info-content p {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.45;
  word-break: break-word;
}

.info-content p a {
  color: var(--brand-yellow);
  font-weight: 600;
}

.info-content p a:hover {
  text-decoration: underline;
}

.info-tag {
  display: inline-block;
  font-size: 0.78rem;
  color: #f59e0b;
  font-weight: 600;
  margin-top: 4px;
}

.contact-form-card {
  background: #ffffff;
  color: var(--text-dark);
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--brand-yellow);
}

.contact-form-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.contact-form-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.map-section {
  padding: 40px 0 60px 0;
  background: #0b132b;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.map-header {
  text-align: center;
  margin-bottom: 24px;
}

.map-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.map-header p {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(245, 158, 11, 0.25);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    padding: 32px 0 24px 0;
  }

  .page-title {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .page-subtitle {
    font-size: 0.88rem;
  }

  .contact-section {
    padding: 30px 0;
  }

  .info-card {
    padding: 15px 16px;
    gap: 12px;
  }

  .info-icon {
    width: 38px;
    height: 38px;
  }

  .info-icon svg {
    width: 20px;
    height: 20px;
  }

  .info-content h3 {
    font-size: 0.96rem;
  }

  .info-content p {
    font-size: 0.86rem;
  }

  .contact-form-card {
    padding: 20px 18px;
  }

  .contact-form-card h2 {
    font-size: 1.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .map-section {
    padding: 30px 0 40px 0;
  }

  .map-header h2 {
    font-size: 1.25rem;
  }

  .map-header p {
    font-size: 0.82rem;
  }

  .map-container iframe {
    height: 260px;
  }
}

/* ==========================================================================
   Section 12: Final Call-to-Action (CTA) Banner & Conversion Box
   ========================================================================== */
.cta-banner-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #16203b 0%, #0b132b 100%);
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  overflow: hidden;
}

.cta-banner-card {
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.3) 0%, rgba(245, 158, 11, 0.2) 50%, rgba(11, 19, 43, 0.95) 100%), #111a36;
  border: 2px solid rgba(245, 158, 11, 0.5);
  border-top: 5px solid var(--brand-red);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(245, 158, 11, 0.2);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cta-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-yellow);
  background: rgba(245, 158, 11, 0.15);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 20px;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.cta-description {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 760px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.cta-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-whatsapp-green {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-whatsapp-green:hover {
  background: #1ebc57;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.cta-trust-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  padding-top: 24px;
  margin-top: 10px;
}

.cta-trust-item {
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.cta-trust-item svg {
  color: var(--brand-yellow);
}

@media (max-width: 768px) {
  .cta-banner-section {
    padding: 50px 0;
  }

  .cta-banner-card {
    padding: 35px 20px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-description {
    font-size: 0.92rem;
  }

  .cta-trust-highlights {
    gap: 14px;
  }

  .cta-trust-item {
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   Section 11: Frequently Asked Questions (FAQ) Accordion Grid
   ========================================================================== */
.faq-section {
  position: relative;
  padding: 70px 0;
  background: #0b132b;
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 15%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.faq-grid {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: linear-gradient(145deg, #182342 0%, #0d142b 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.faq-item[open] {
  background: linear-gradient(145deg, #22325c 0%, #111a36 100%);
  border-color: var(--brand-yellow);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.3);
}

.faq-summary {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #ffffff;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: var(--transition);
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:hover {
  color: var(--brand-yellow);
  background: rgba(245, 158, 11, 0.06);
}

.faq-icon-toggle {
  width: 30px;
  height: 30px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--brand-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.faq-item[open] .faq-icon-toggle {
  transform: rotate(180deg);
  background: var(--brand-yellow);
  color: #0b132b;
}

.faq-answer {
  padding: 0 24px 22px 24px;
  font-size: 0.93rem;
  color: #cbd5e1;
  line-height: 1.7;
  border-top: 1px dashed rgba(245, 158, 11, 0.15);
  margin-top: 4px;
  padding-top: 16px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 45px 0;
  }

  .faq-summary {
    font-size: 0.98rem;
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 0 18px 18px 18px;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   Section 10: Moving Tips, Relocation Guides & Blog
   ========================================================================== */
.tips-section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, #16203b 0%, #0b132b 100%);
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.tips-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tips-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.tip-card {
  background: linear-gradient(145deg, #2b1c1b 0%, #10162b 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-top: 4px solid var(--brand-yellow);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tip-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #382423 0%, #151e38 100%);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.35);
  border-color: var(--brand-yellow);
  border-top-color: var(--brand-red);
}

.tip-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tip-category {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-yellow);
  background: rgba(245, 158, 11, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.tip-read-time {
  font-size: 0.78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tip-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.45;
}

.tip-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .tips-section {
    padding: 45px 0;
  }

  .tip-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Section 9: Coverage Areas & Service Map Network
   ========================================================================== */
.coverage-section {
  position: relative;
  padding: 70px 0;
  background: #0b132b;
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.coverage-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.coverage-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.coverage-card {
  background: linear-gradient(145deg, #0e2447 0%, #09132e 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.coverage-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #15325c 0%, #0d1b3b 100%);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.35);
  border-color: var(--brand-yellow);
}

.coverage-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.coverage-icon {
  width: 46px;
  height: 46px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--brand-yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  flex-shrink: 0;
}

.coverage-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.coverage-pills-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.locality-pill {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #cbd5e1;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.locality-pill:hover {
  background: rgba(245, 158, 11, 0.2);
  color: #ffffff;
  border-color: var(--brand-yellow);
}

.locality-pill svg {
  color: var(--brand-yellow);
}

@media (max-width: 992px) {
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .coverage-section {
    padding: 45px 0;
  }

  .coverage-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Section 8: Customer Testimonials & Client Reviews
   ========================================================================== */
.testimonials-section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, #16203b 0%, #0b132b 100%);
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: linear-gradient(145deg, #2b1736 0%, #10152b 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-top: 4px solid var(--brand-yellow);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #371e47 0%, #161c3b 100%);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.35);
  border-color: var(--brand-yellow);
  border-top-color: var(--brand-red);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.avatar-badge {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d32f2f 0%, #f59e0b 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
  border: 2px solid #0b132b;
  flex-shrink: 0;
}

.client-meta h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2px 0;
}

.client-meta span {
  font-size: 0.8rem;
  color: var(--brand-yellow);
  font-weight: 600;
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: var(--brand-yellow);
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 45px 0;
  }

  .testimonial-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Section 7: Our Process Gallery & Operational Fleet
   ========================================================================== */
.gallery-section {
  position: relative;
  padding: 70px 0;
  background: #0b132b;
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gallery-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.gallery-card {
  background: linear-gradient(145deg, #172a54 0%, #0d1736 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #203666 0%, #111e47 100%);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.35);
  border-color: var(--brand-yellow);
  border-top-color: var(--brand-yellow);
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--brand-yellow);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 16px;
  width: fit-content;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.gallery-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(211, 47, 47, 0.15);
  color: var(--brand-yellow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  transition: var(--transition);
}

.gallery-card:hover .gallery-icon-box {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.gallery-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 45px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-card {
    padding: 22px 18px;
  }
}

/* ==========================================================================
   Section 6: Pricing Estimate Breakdown & Factors
   ========================================================================== */
.pricing-section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, #16203b 0%, #0b132b 100%);
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-factors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: linear-gradient(145deg, #2b1f13 0%, #0f1526 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-top: 4px solid var(--brand-yellow);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #38291a 0%, #151d33 100%);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.35);
  border-color: var(--brand-yellow);
  border-top-color: var(--brand-red);
}

.pricing-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(211, 47, 47, 0.15);
  color: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1.5px solid rgba(211, 47, 47, 0.35);
}

.pricing-card:hover .pricing-icon-box {
  background: var(--brand-red);
  color: #ffffff;
}

.pricing-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.pricing-card-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.pricing-guarantee-box {
  background: linear-gradient(135deg, #2e1d0f 0%, #161226 100%);
  border: 1.5px solid var(--brand-yellow);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--radius-lg);
  padding: 32px 38px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}

.pricing-guarantee-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-yellow);
  margin-bottom: 10px;
}

.pricing-guarantee-content p {
  font-size: 0.94rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing-highlights-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.pricing-highlights-list li {
  font-size: 0.88rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-highlights-list li svg {
  color: var(--brand-yellow);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .pricing-factors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pricing-highlights-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 45px 0;
  }

  .pricing-factors-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-guarantee-box {
    padding: 24px 20px;
  }

  .pricing-highlights-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   Section 5: 4-Step Simple Relocation Process
   ========================================================================== */
.process-section {
  position: relative;
  padding: 70px 0;
  background: #0b132b;
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.process-card {
  background: linear-gradient(145deg, #0e292d 0%, #081628 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.process-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #153a40 0%, #0c2038 100%);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.35);
  border-color: var(--brand-yellow);
  border-top-color: var(--brand-yellow);
}

.step-number-badge {
  position: absolute;
  top: -16px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #d32f2f 0%, #f59e0b 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  border: 2px solid #0b132b;
}

.process-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--brand-yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1.5px solid rgba(245, 158, 11, 0.35);
}

.process-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 45px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Section 4: Why Choose Us / Value Proposition
   ========================================================================== */
.why-choose-section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, #16203b 0%, #0b132b 100%);
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: linear-gradient(145deg, #1b2042 0%, #0d122b 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-top: 4px solid var(--brand-yellow);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #242b58 0%, #11173b 100%);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.35);
  border-color: var(--brand-yellow);
  border-top-color: var(--brand-red);
}

.why-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--brand-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  transition: var(--transition);
}

.why-card:hover .why-icon-box {
  background: var(--brand-yellow);
  color: #0b132b;
  border-color: var(--brand-yellow);
}

.why-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 45px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 22px 18px;
  }
}

/* ==========================================================================
   Section 3: Comprehensive Relocation Services
   ========================================================================== */
.services-section {
  position: relative;
  padding: 70px 0;
  background: #0b132b;
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.16) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: linear-gradient(145deg, #1c1429 0%, #0d162d 100%);
  border: 1.5px solid rgba(211, 47, 47, 0.35);
  border-top: 4px solid var(--brand-red);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #271a38 0%, #121d3b 100%);
  box-shadow: 0 16px 36px rgba(211, 47, 47, 0.35);
  border-color: var(--brand-yellow);
  border-top-color: var(--brand-yellow);
}

.service-icon-box {
  width: 58px;
  height: 58px;
  background: rgba(211, 47, 47, 0.15);
  color: var(--brand-yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red);
}

.service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features-list li {
  font-size: 0.85rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li svg {
  color: var(--brand-yellow);
  flex-shrink: 0;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 45px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Section 2: Trusted By & Achievement Stats Counter
   ========================================================================== */
.stats-section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, #16203b 0%, #0b132b 100%);
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-header {
  margin-bottom: 44px;
}

.section-header.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--brand-yellow);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 14px;
}

.section-description {
  font-size: 1.02rem;
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: linear-gradient(135deg, #1b2847 0%, #0f1833 100%);
  color: #ffffff;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-top: 4px solid var(--brand-yellow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #23335a 0%, #131e40 100%);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.3);
  border-color: var(--brand-yellow);
  border-top-color: var(--brand-red);
}

.stat-icon {
  width: 54px;
  height: 54px;
  background: rgba(245, 158, 11, 0.16);
  color: var(--brand-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  border: 1.5px solid rgba(245, 158, 11, 0.4);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--brand-yellow);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.trust-highlight-box {
  background: linear-gradient(135deg, #2b1810 0%, #150f1d 100%);
  border: 1.5px solid var(--brand-yellow);
  border-left: 6px solid var(--brand-red);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}

.trust-highlight-content {
  flex: 1;
}

.trust-highlight-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.trust-highlight-content p {
  font-size: 0.94rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.trust-highlight-cta {
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .trust-highlight-box {
    flex-direction: column;
    text-align: center;
    padding: 26px 24px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 45px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 22px 18px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.98rem;
  }

  .trust-highlight-content h3 {
    font-size: 1.12rem;
  }

  .trust-highlight-content p {
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   About Us Page Styles (about.php)
   ========================================================================== */
.about-story-section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, #0b132b 0%, #16203b 100%);
  color: var(--white);
  overflow: hidden;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.about-paragraph {
  font-size: 0.96rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 18px;
}

.story-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.story-highlight-item {
  background: linear-gradient(135deg, #1b2647 0%, #0f1833 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.story-highlight-icon {
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--brand-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.story-highlight-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.story-highlight-text p {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.4;
}

.about-trust-card {
  background: linear-gradient(135deg, #241624 0%, #10152b 100%);
  border: 1.5px solid var(--brand-yellow);
  border-top: 5px solid var(--brand-red);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  position: relative;
}

.trust-badge-circle {
  width: 105px;
  height: 105px;
  background: linear-gradient(135deg, #d32f2f 0%, #f59e0b 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  border: 3px solid #0b132b;
}

.trust-years {
  font-family: 'Poppins', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}

.trust-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.15;
  max-width: 80px;
  text-align: center;
}

.trust-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.trust-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-features-list li {
  font-size: 0.88rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-features-list li svg {
  color: var(--brand-yellow);
  flex-shrink: 0;
}

.trust-cta-box {
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  padding-top: 18px;
  text-align: center;
}

.trust-cta-box p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 12px;
}

/* Mission, Vision & Policy Cards */
.about-mv-section {
  position: relative;
  padding: 70px 0;
  background: #0b132b;
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.mv-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.3);
}

.mission-card {
  background: linear-gradient(145deg, #271427 0%, #0c152d 100%);
  border: 1.5px solid rgba(211, 47, 47, 0.4);
  border-top: 4px solid var(--brand-red);
}

.vision-card {
  background: linear-gradient(145deg, #2b1f13 0%, #0d1730 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  border-top: 4px solid var(--brand-yellow);
}

.policy-card {
  background: linear-gradient(145deg, #0f2930 0%, #081628 100%);
  border: 1.5px solid rgba(14, 165, 233, 0.35);
  border-top: 4px solid #0ea5e9;
}

.mv-icon-box {
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-yellow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mv-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.mv-card-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
}

/* Core Pillars Section */
.about-pillars-section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, #16203b 0%, #0b132b 100%);
  color: var(--white);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.pillar-card {
  background: linear-gradient(145deg, #1a2444 0%, #0e162f 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #223058 0%, #121c3b 100%);
  border-color: var(--brand-yellow);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.3);
}

.pillar-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.35);
  line-height: 1;
  margin-bottom: 14px;
}

.pillar-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-mv-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .about-story-section, .about-mv-section, .about-pillars-section {
    padding: 45px 0;
  }

  .story-highlights-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-trust-card {
    padding: 26px 20px;
  }
}

/* ==========================================================================
   Section 4 & Gallery Page Styles (gallery.php & Homepage Scroll)
   ========================================================================== */
.home-gallery-section {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, #0b132b 0%, #16203b 100%);
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.gallery-scroll-container {
  width: 100%;
  overflow-x: auto;
  padding: 10px 4px 24px 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--brand-yellow) #0b132b;
  -webkit-overflow-scrolling: touch;
}

.gallery-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll-container::-webkit-scrollbar-track {
  background: #0b132b;
  border-radius: 4px;
}

.gallery-scroll-container::-webkit-scrollbar-thumb {
  background: var(--brand-yellow);
  border-radius: 4px;
}

.gallery-scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.gallery-btn-wrapper {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

/* Uniform Box Size for All Photos - ZERO CROPPING */
.gallery-photo-card {
  width: 320px;
  height: 240px;
  flex-shrink: 0;
  perspective: 1000px;
}

.photo-box {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #172a54 0%, #0d1736 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-box:hover {
  transform: translateY(-6px);
  border-color: var(--brand-yellow);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.35);
}

/* ZERO CROPPING: Full uncropped image fits cleanly inside container */
.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  background-color: #091024;
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(11, 19, 43, 0.95) 0%, rgba(11, 19, 43, 0) 100%);
  padding: 16px 14px 10px 14px;
  text-align: center;
  transition: var(--transition);
}

.photo-overlay span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Dedicated Gallery Page (gallery.php) Grid */
.gallery-page-section {
  position: relative;
  padding: 70px 0;
  background: #0b132b;
  color: var(--white);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-card-item {
  background: linear-gradient(145deg, #172a54 0%, #0d1736 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--brand-yellow);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.35);
}

/* Uniform Box Size for Gallery Page - ZERO CROPPING */
.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  background: #080f21;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.gallery-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-gradient);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.gallery-card-info {
  padding: 18px 20px;
}

.gallery-card-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.gallery-card-info p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.4;
}

/* Lightbox Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content-wrapper {
  max-width: 900px;
  width: 100%;
  text-align: center;
  position: relative;
}

.modal-content-wrapper img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 2px solid var(--brand-yellow);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

#modalCaption {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 14px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--brand-yellow);
}

@media (max-width: 992px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .home-gallery-section, .gallery-page-section {
    padding: 40px 0;
  }

  .gallery-scroll-container {
    scroll-snap-type: x mandatory;
    padding: 10px 12px 20px 12px;
  }

  .gallery-scroll-track {
    gap: 16px;
  }

  .gallery-photo-card {
    width: 82vw;
    max-width: 290px;
    height: 210px;
    scroll-snap-align: center;
  }

  .gallery-btn-wrapper {
    margin-top: 24px;
    padding: 0 15px;
  }

  .gallery-btn-wrapper .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-img-wrapper {
    height: 210px;
  }

  .gallery-card-info {
    padding: 16px 18px;
    text-align: left;
  }

  .gallery-card-info h3 {
    font-size: 1rem;
  }

  .modal-close {
    top: 15px;
    right: 20px;
    font-size: 2.4rem;
  }

  #modalCaption {
    font-size: 0.95rem;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .gallery-photo-card {
    width: 88vw;
    max-width: 280px;
    height: 200px;
  }

  .gallery-img-wrapper {
    height: 195px;
  }
}

/* ==========================================================================
   Services Page Styles (services.php)
   ========================================================================== */
.services-page-section {
  position: relative;
  padding: 75px 0;
  background: #0b132b;
  color: var(--white);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-detail-card {
  background: linear-gradient(145deg, #172a54 0%, #0d1736 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, #1d3264 0%, #101c40 100%);
  border-color: var(--brand-yellow);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.35);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-detail-icon {
  width: 54px;
  height: 54px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-yellow);
}

.service-type-tag {
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #fca5a5;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.service-detail-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.service-detail-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-highlights-box {
  background: rgba(11, 19, 43, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 15px;
}

.service-highlights-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-yellow);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-highlights-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-highlights-box li {
  font-size: 0.85rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.service-highlights-box li:last-child {
  margin-bottom: 0;
}

.service-highlights-box li svg {
  color: var(--brand-yellow);
  flex-shrink: 0;
}

/* Service Process Section */
.service-process-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #16203b 0%, #0b132b 100%);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
  color: var(--white);
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step-card {
  background: linear-gradient(145deg, #1a274c 0%, #0e1733 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
  position: relative;
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-yellow);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.3);
}

.step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-yellow);
  line-height: 1;
  margin-bottom: 12px;
}

.process-step-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.process-step-card p {
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .service-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .services-page-section, .service-process-section {
    padding: 45px 0;
  }

  .services-detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-detail-card {
    padding: 24px 20px;
  }

  .service-detail-title {
    font-size: 1.15rem;
  }
}

/* ==========================================================================
   Visual Breadcrumb Navigation & SEO Utility Classes
   ========================================================================== */
.breadcrumb-wrapper {
  background-color: var(--primary-color);
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.breadcrumb-item a {
  color: #cbd5e1;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--brand-yellow);
}

.breadcrumb-separator {
  color: var(--brand-yellow);
  font-size: 0.8rem;
}

.breadcrumb-item.active {
  color: var(--brand-yellow);
  font-weight: 600;
}

/* ==========================================================================
   Global Universal Mobile Responsiveness Overrides
   ========================================================================== */
@media (max-width: 768px) {
  /* 1. Header & Navigation Mobile Alignment */
  .navbar {
    gap: 8px !important;
  }

  .brand-logo {
    gap: 8px !important;
  }

  .brand-title {
    font-size: 0.95rem !important;
  }

  .brand-subtitle {
    font-size: 0.62rem !important;
  }

  .header-call-btn {
    padding: 6px 10px !important;
  }

  .call-number {
    font-size: 0.78rem !important;
  }

  /* 2. Hero Section 2-Column Grid & Heading Overrides */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .hero-text h1,
  .hero-section h1 {
    font-size: 1.65rem !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
  }

  .hero-text p,
  .hero-section p {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
  }

  .hero-form-card {
    padding: 20px 16px !important;
  }

  /* 3. Universal Inline Grid Overrides Across All Landing Pages */
  .site-main section div[style*="grid-template-columns"],
  .stats-section div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* 4. Flex Row Overrides (Stats, Badges & Highlights) */
  .hero-text div[style*="display: flex"],
  .hero-section div[style*="display: flex"] {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  /* 5. Section Titles & Descriptions */
  .site-main h2,
  .section-title {
    font-size: 1.5rem !important;
    line-height: 1.35 !important;
  }

  .site-main h3 {
    font-size: 1.15rem !important;
  }

  /* 6. Form Field Responsive Full Width */
  .form-control,
  input[type="text"],
  input[type="tel"],
  textarea {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .brand-text {
    display: none !important;
  }

  .header-call-btn {
    padding: 6px 8px !important;
  }

  .call-number {
    font-size: 0.75rem !important;
  }

  .hero-text h1,
  .hero-section h1 {
    font-size: 1.45rem !important;
  }
}



