/* ==========================================================================
   Partik Movers India Packers and Movers - Modern Design System
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary: #FF6500;
  --primary-hover: #E05300;
  --primary-light: #FFF0E6;
  --primary-glow: rgba(255, 101, 0, 0.25);
  
  --secondary: #0B192C;
  --secondary-light: #1E3E62;
  --secondary-dark: #060E18;
  
  --accent-blue: #2563EB;
  --accent-blue-light: #EFF6FF;
  --success: #10B981;
  --success-light: #ECFDF5;
  --warning: #F59E0B;
  
  /* Neutral Colors */
  --bg-main: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark: #0B192C;
  --bg-dark-card: #132238;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;
  
  --border-color: #E2E8F0;
  --border-dark: #1E293B;
  --border-glow: rgba(255, 101, 0, 0.4);
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-primary: 0 10px 25px -5px rgba(255, 101, 0, 0.35);
  --shadow-dark: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* Reset & Strict Zero Horizontal Overflow */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-subtle);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  max-width: 100%;
  box-sizing: border-box;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  box-sizing: border-box;
}

/* Section Header Utility */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
  padding-inline: 0.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--primary-light);
  color: var(--primary);
  margin-bottom: 0.75rem;
  box-shadow: 0 0 0 1px rgba(255, 101, 0, 0.15);
  max-width: 100%;
  box-sizing: border-box;
}

.section-badge.badge-white {
  background: rgba(255, 255, 255, 0.12);
  color: #FFB380;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.section-title.title-white {
  color: var(--text-white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-subtitle.subtitle-light {
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A00 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(255, 101, 0, 0.45);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 20px -3px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 1.85rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #060E18 0%, #0B192C 100%);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  font-size: 0.8rem;
}

.top-bar-item i {
  color: var(--primary);
  font-size: 0.85rem;
}

.top-bar-highlight {
  color: #FFB380;
  font-weight: 600;
}

.top-bar-link {
  color: var(--text-white);
  font-weight: 600;
}

.top-bar-link:hover {
  color: var(--primary);
}

.mobile-only {
  display: none !important;
}

/* ==========================================================================
   2. NAVBAR
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all var(--transition-normal);
  width: 100%;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.99);
}

.header .container {
  max-width: 1320px;
  position: relative;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--secondary) 0%, #1E3E62 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(11, 25, 44, 0.2);
  border: 1.5px solid rgba(255, 101, 0, 0.3);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--secondary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-name span {
  color: var(--primary);
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

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

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

.nav-icon-mobile {
  display: none;
}

.mobile-menu-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--secondary);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  white-space: nowrap;
}

.nav-phone-btn i {
  color: var(--primary);
  font-size: 0.95rem;
}

.nav-phone-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.mobile-toggle {
  display: none;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #060E18 0%, #0B192C 40%, #15273F 100%);
  color: var(--text-white);
  padding: 4.5rem 0 5.5rem 0;
  overflow: hidden;
  max-width: 100vw;
  width: 100%;
}

.hero-glow-bg {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  max-width: 100%;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.22) 0%, rgba(255, 101, 0, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-bottom {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 280px;
  height: 280px;
  max-width: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-content {
  width: 100%;
  max-width: 640px;
  min-width: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 101, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFB380;
  margin-bottom: 1.25rem;
  max-width: 100%;
  box-sizing: border-box;
  word-break: normal;
}

.hero-pill-badge {
  background: var(--primary);
  color: #FFFFFF;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
  max-width: 100%;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #FF9933 0%, #FF6500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 1.65;
  margin-bottom: 2rem;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
  max-width: 100%;
}

.hero-key-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  width: 100%;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: #E2E8F0;
  word-break: normal;
}

.hero-point i {
  color: var(--success);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-stars {
  color: #FBBF24;
  font-size: 0.95rem;
  display: flex;
  gap: 2px;
}

.rating-info {
  display: flex;
  flex-direction: column;
}

.rating-score {
  font-weight: 800;
  font-size: 1rem;
  color: #FFFFFF;
}

.rating-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.trust-shield {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #E2E8F0;
}

.trust-shield i {
  font-size: 1.5rem;
  color: #60A5FA;
}

/* Hero Quick Form Card */
.hero-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-form-card {
  background: rgba(19, 34, 56, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-dark), 0 0 0 1px rgba(255, 101, 0, 0.18);
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: var(--radius-full);
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-header-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #FFFFFF;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-control::placeholder {
  color: #94A3B8;
}

.form-control option {
  background-color: #0B192C;
  color: #FFFFFF;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  width: 100%;
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  text-align: center;
}

.form-security-note i {
  color: var(--success);
}

/* ==========================================================================
   4. STATS COUNTER STRIP
   ========================================================================== */
.stats-strip {
  background: #FFFFFF;
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
  margin-top: -1.5rem;
  border-radius: var(--radius-xl);
  max-width: 100%;
  box-sizing: border-box;
  margin-inline: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 1px;
  background-color: var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
}

.stat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   5. INTERACTIVE COST CALCULATOR SECTION
   ========================================================================== */
.calculator-section {
  padding: 5rem 0;
  background: var(--bg-subtle);
}

.calc-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
  padding: 2.5rem;
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
}

.calc-tabs {
  display: flex;
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: 0.35rem;
  gap: 0.35rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-inline: auto;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  width: 100%;
}

.calc-tab-btn {
  flex: 1;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-sizing: border-box;
}

.calc-tab-btn.active {
  background: #FFFFFF;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.calc-options-side {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-width: 0;
}

.calc-step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-num {
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Home Type Card Selector */
.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.size-option-card {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  background: #FFFFFF;
  transition: all var(--transition-normal);
  position: relative;
  box-sizing: border-box;
}

.size-option-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.size-option-card.selected {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 1px var(--primary);
}

.size-option-card i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 0.4rem;
  display: block;
}

.size-option-card.selected i {
  color: var(--primary);
}

.size-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
}

.size-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Distance Slider */
.slider-container {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.slider-val-badge {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  background: #FFFFFF;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

.custom-range {
  width: 100%;
  height: 8px;
  background: #CBD5E1;
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
  accent-color: var(--primary);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Packing Tier Options */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.tier-card {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  background: #FFFFFF;
  box-sizing: border-box;
}

.tier-card:hover {
  border-color: var(--primary);
}

.tier-card.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}

.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.tier-title {
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--secondary);
}

.tier-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Calculator Summary Result Side */
.calc-summary-card {
  background: linear-gradient(135deg, #0B192C 0%, #15273F 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  min-width: 0;
}

.calc-summary-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 101, 0, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.summary-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.summary-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFB380;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.summary-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
}

.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #CBD5E1;
  gap: 0.5rem;
}

.breakdown-row.highlight-row {
  color: #34D399;
  font-weight: 600;
}

.breakdown-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.price-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 101, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}

.price-title {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.35rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  word-break: normal;
  white-space: nowrap;
}

.price-amount span {
  color: #FF9933;
}

.price-sub {
  font-size: 0.72rem;
  color: #34D399;
  margin-top: 0.35rem;
  font-weight: 600;
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   6. HYDERABAD LOCAL COVERAGE SECTION
   ========================================================================== */
.coverage-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.coverage-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-sizing: border-box;
}

.coverage-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.25rem;
}

.coverage-stats-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--success-light);
  color: #065F46;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  max-width: 100%;
}

.hubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.hub-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  box-sizing: border-box;
}

.hub-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hub-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}

.hub-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
}

.hub-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.hub-eta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hub-eta i {
  color: var(--primary);
}

.hub-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--border-color);
  padding-top: 0.65rem;
  font-size: 0.78rem;
}

.hub-rate {
  font-weight: 700;
  color: var(--text-main);
}

.hub-book-link {
  color: var(--primary);
  font-weight: 700;
}

/* Intercity Routes Banner */
.intercity-strip {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, var(--secondary) 0%, #15273F 100%);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-sizing: border-box;
}

.intercity-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.intercity-info p {
  font-size: 0.85rem;
  color: #CBD5E1;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 100%;
}

.route-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  max-width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   7. SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 5rem 0;
  background: var(--bg-subtle);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 101, 0, 0.4);
  box-shadow: var(--shadow-xl);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.service-card:hover .service-icon-box {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-primary);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-main);
}

.service-feature-item i {
  color: var(--success);
  font-size: 0.9rem;
}

.service-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.service-rate-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.service-rate-hint strong {
  color: var(--secondary);
  font-weight: 800;
}

/* ==========================================================================
   8. PACKING MASTERY
   ========================================================================== */
.packaging-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.packaging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.packaging-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.packaging-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.packaging-image-wrapper:hover .packaging-img {
  transform: scale(1.03);
}

.pack-float-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(11, 25, 44, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
}

.pack-float-badge i {
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
}

.pack-badge-title {
  font-weight: 800;
  font-size: 0.95rem;
}

.pack-badge-sub {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Layers List */
.layers-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.layer-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.layer-item:hover {
  background: #FFFFFF;
  border-color: var(--primary);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.layer-num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.layer-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.layer-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   9. 4-STEP PROCESS SECTION
   ========================================================================== */
.process-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #060E18 0%, #0B192C 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.process-step-card {
  background: rgba(19, 34, 56, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.process-step-card:hover {
  background: rgba(19, 34, 56, 0.95);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.step-indicator {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary) 0%, #FF8A00 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-primary);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

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

/* ==========================================================================
   10. WHY CHOOSE US - 6 PILLARS
   ========================================================================== */
.why-section {
  padding: 5rem 0;
  background: var(--bg-subtle);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 2rem;
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   11. REAL WORK GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 5rem 0;
  background: #FFFFFF;
  position: relative;
}

.gallery-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.75rem;
}

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.gallery-filter-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 101, 0, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hide {
  display: none;
}

.gallery-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.gallery-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0B192C;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 14, 24, 0.2) 0%, rgba(6, 14, 24, 0.88) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: opacity var(--transition-normal);
  box-sizing: border-box;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #FFFFFF;
  transform: translateY(10px);
  transition: transform var(--transition-normal);
}

.gallery-card:hover .gallery-overlay-content {
  transform: translateY(0);
}

.gallery-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--primary);
  color: #FFFFFF;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

.gallery-item-desc {
  font-size: 0.75rem;
  color: #E2E8F0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFB380;
  margin-top: 0.25rem;
}

.gallery-info {
  padding: 1rem 1.15rem;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gallery-tag {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.gallery-tag i {
  color: var(--primary);
  font-size: 0.75rem;
}

.gallery-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-bottom-cta {
  margin-top: 3.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.gallery-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
}

.gallery-trust-item i {
  font-size: 1.25rem;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(6, 14, 24, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-dialog {
  position: relative;
  max-width: 920px;
  width: 100%;
  background: #0B192C;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-dark), 0 0 0 1px rgba(255, 101, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.lightbox-overlay.active .lightbox-dialog {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-media-wrap {
  width: 100%;
  height: 480px;
  background: #060E18;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.lightbox-footer {
  padding: 1.25rem 1.75rem;
  background: #0B192C;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lightbox-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 600px;
}

.lightbox-counter {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFB380;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
}

.lightbox-caption {
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.5;
}

.lightbox-actions {
  flex-shrink: 0;
}

/* ==========================================================================
   12. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 5rem 0;
  background: #FFFFFF;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
  box-sizing: border-box;
}

.review-card:hover {
  border-color: rgba(255, 101, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: #FFFFFF;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.review-stars {
  color: #F59E0B;
  font-size: 0.9rem;
}

.route-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
  word-break: normal;
  overflow-wrap: break-word;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, #2563EB 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--secondary);
}

.author-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   12. FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-subtle);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  box-sizing: border-box;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--secondary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: #FFFFFF;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 260px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   13. CTA BANNER
   ========================================================================== */
.cta-section {
  padding: 4.5rem 0;
  background: #FFFFFF;
}

.cta-box {
  background: linear-gradient(135deg, #FF6500 0%, #FF8A00 50%, #E05300 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.cta-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.cta-desc {
  font-size: 1rem;
  color: #FFE6D5;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.footer {
  background: #060E18;
  color: #94A3B8;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 1.25rem 0 1.5rem 0;
  color: #94A3B8;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.88rem;
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================================================
   15. FLOATING QUICK ACTION BUTTONS
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.floating-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.08);
}

.floating-whatsapp {
  background: #25D366;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.floating-phone {
  background: var(--primary);
}

.floating-top {
  background: var(--secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.floating-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================================
   16. MODAL STYLES (Instant Booking & Detailed Quote)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 24, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
  box-sizing: border-box;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-subtle);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  gap: 0.5rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
}

.modal-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.modal-close-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.modal-body {
  padding: 1.5rem;
  box-sizing: border-box;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: calc(100vw - 3rem);
  pointer-events: none;
  overflow: hidden;
}

.toast {
  pointer-events: auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-xl);
  border-left: 5px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 260px;
  max-width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast-icon {
  font-size: 1.3rem;
  color: var(--success);
  flex-shrink: 0;
}

.toast-content h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
}

.toast-content p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   17. COMPREHENSIVE RESPONSIVE DESIGN (TABLET & MOBILE)
   ========================================================================== */

/* Tablets & Mobile Navigation (<= 1024px) */
@media (max-width: 1024px) {
  .header {
    overflow: visible !important;
  }

  .header .container {
    overflow: visible !important;
    position: relative;
  }

  .navbar {
    height: 68px;
    position: relative;
    overflow: visible !important;
  }

  .header-actions #nav-quote-btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    font-size: 1.3rem;
    color: var(--secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
  }

  .mobile-toggle:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.5rem 1.25rem;
    gap: 0.35rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 20px 40px rgba(11, 25, 44, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1001;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-sizing: border-box;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 0.98rem;
    font-weight: 600;
    width: 100%;
    padding: 0.75rem 0.85rem;
    border-bottom: 1px solid #F1F5F9;
    color: var(--secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-sizing: border-box;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover, .nav-link.active {
    background: var(--primary-light);
    color: var(--primary);
  }

  .nav-icon-mobile {
    display: inline-flex;
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    justify-content: center;
  }

  .mobile-menu-cta {
    display: block;
    margin-top: 0.75rem;
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 100%;
    gap: 2.75rem;
  }

  .hero-content {
    max-width: 100%;
  }
  
  .services-grid, .why-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .packaging-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .packaging-img {
    height: 380px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

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

/* Mobile & Small Tablets (<= 768px) */
@media (max-width: 768px) {
  .top-bar {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.75rem;
    background: #060E18;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .top-bar-inner {
    padding-inline: 1rem;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .top-bar-left, .top-bar-right {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .top-bar-item {
    font-size: 0.75rem;
    gap: 0.35rem;
    white-space: nowrap;
  }

  .top-bar-item i {
    font-size: 0.8rem;
    color: var(--primary);
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline !important;
  }

  .container {
    padding-inline: 1.25rem;
    max-width: 100%;
  }
  
  .navbar {
    height: 62px;
    padding-inline: 0;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.62rem;
  }

  .nav-phone-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-phone-btn span {
    display: none;
  }

  .nav-phone-btn i {
    font-size: 1rem;
    margin: 0;
  }

  .mobile-toggle {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .hero {
    padding: 2.25rem 0 3.25rem 0;
  }

  .hero-pill {
    font-size: 0.75rem;
    line-height: 1.4;
    padding: 0.35rem 0.65rem;
    gap: 0.4rem;
    max-width: 100%;
    word-break: normal;
  }

  .hero-title {
    font-size: clamp(1.45rem, 5.2vw, 2rem);
    line-height: 1.22;
    margin-bottom: 1rem;
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero-desc {
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .hero-key-points {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1.25rem;
  }

  .hero-form-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .stats-strip {
    margin-top: 0.5rem;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 0.75rem;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .calculator-section, .coverage-section, .services-section, 
  .packaging-section, .process-section, .why-section, 
  .testimonials-section, .faq-section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .calc-card {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
  }

  .calc-tabs {
    flex-direction: column;
    width: 100%;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .size-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .size-option-card {
    padding: 0.75rem 0.5rem;
  }

  .tier-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .calc-summary-card {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .coverage-box {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
  }

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

  .services-grid, .why-grid, .reviews-grid, .process-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-section {
    padding: 3.5rem 0;
  }

  .gallery-filter-bar {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .gallery-filter-btn {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .gallery-img-wrap {
    height: 160px;
  }

  .gallery-info {
    padding: 0.75rem 0.85rem;
  }

  .gallery-card-title {
    font-size: 0.85rem;
  }

  .gallery-bottom-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
    margin-top: 2.25rem;
  }

  .gallery-bottom-cta .btn {
    width: 100%;
  }

  .lightbox-overlay {
    padding: 0.75rem;
  }

  .lightbox-dialog {
    border-radius: var(--radius-lg);
  }

  .lightbox-media-wrap {
    height: 280px;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-footer {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .lightbox-actions {
    width: 100%;
  }

  .lightbox-actions .btn {
    width: 100%;
  }

  .packaging-img {
    height: 260px;
  }

  .pack-float-badge {
    position: static;
    margin-top: 1rem;
    width: 100%;
    padding: 0.85rem 1rem;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 2.25rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .cta-actions {
    justify-content: center;
    width: 100%;
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .floating-actions {
    bottom: 1rem;
    right: 1rem;
    gap: 0.5rem;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
}

/* Extra Small Phones (<= 480px) */
@media (max-width: 480px) {
  .top-bar {
    padding: 0.3rem 0;
    font-size: 0.7rem;
  }

  .top-bar-inner {
    padding-inline: 0.5rem;
  }

  .top-bar-item {
    font-size: 0.7rem;
    gap: 0.3rem;
  }

  .navbar {
    height: 60px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-sub {
    font-size: 0.58rem;
  }

  .hero-pill {
    font-size: 0.72rem;
    line-height: 1.35;
    padding: 0.3rem 0.55rem;
  }

  .hero-title {
    font-size: clamp(1.35rem, 4.8vw, 1.65rem);
    line-height: 1.25;
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: pretty;
  }

  .gallery-filter-btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

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

  .gallery-img-wrap {
    height: 200px;
  }

  .lightbox-media-wrap {
    height: 220px;
  }

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

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

  .stat-desc {
    font-size: 0.72rem;
  }

  .price-amount {
    font-size: 1.45rem;
  }

  .modal-box {
    margin: 0.5rem;
    border-radius: var(--radius-lg);
  }

  .modal-body {
    padding: 1.25rem 1rem;
  }

  .modal-header {
    padding: 1rem;
  }
}
