/*
 * PMV Packers and Movers Vadodara - Premium CSS Stylesheet
 * Brand Style: Corporate, Luxury, Professional, Modern, Trustworthy
 */

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

/* --- Theme Tokens --- */
:root {
  /* Light Theme Colors (Default) */
  --primary-color: #0057FF;
  --primary-dark: #0046CC;
  --primary-light: rgba(0, 87, 255, 0.1);
  --secondary-color: #0A2540;
  --secondary-light: #1A365D;
  --accent-color: #FF9F1C;
  --accent-hover: #E08A12;
  
  --bg-color: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-tertiary: #F1F3F5;
  --text-color: #1A2530;
  --text-muted: #627282;
  --border-color: #E2E8F0;
  
  /* Glassmorphism & UI Shadows */
  --shadow-sm: 0 2px 4px rgba(10, 37, 64, 0.05);
  --shadow-md: 0 8px 20px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 16px 40px rgba(10, 37, 64, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(10, 37, 64, 0.08);
  
  /* Fonts & Spacing */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Layout */
  --header-height: 80px;
}

[data-theme="dark"] {
  /* Dark Theme Colors */
  --bg-color: #050E18;
  --bg-secondary: #0A1626;
  --bg-tertiary: #102138;
  --text-color: #F8F9FA;
  --text-muted: #A0AEC0;
  --border-color: #1E2D42;
  
  --glass-bg: rgba(10, 22, 38, 0.85);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.35);
  
  --primary-light: rgba(0, 87, 255, 0.2);
}

/* --- Base & Reset Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary-color);
  transition: color var(--transition-normal);
}

[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3, 
[data-theme="dark"] h4, 
[data-theme="dark"] h5, 
[data-theme="dark"] h6 {
  color: #FFFFFF;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

/* --- Premium Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-dark);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal) ease-in-out;
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-accent {
  background-color: var(--accent-color);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(255, 159, 28, 0.45);
  transform: translateY(-2px);
}

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

[data-theme="dark"] .btn-secondary {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: #FFFFFF;
}

[data-theme="dark"] .btn-secondary:hover {
  background-color: #FFFFFF;
  color: var(--secondary-color);
}

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

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

/* --- Scroll Progress Bar --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--accent-color);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* --- Loader Spinner --- */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity var(--transition-slow) ease, visibility var(--transition-slow) ease;
}

.loader {
  width: 60px;
  height: 60px;
  border: 5px solid var(--border-color);
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- Sticky Header / Navigation --- */
.top-bar {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 8px 0;
  font-family: var(--font-body);
}

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

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-info a:hover {
  color: var(--accent-color);
}

.top-bar-socials {
  display: flex;
  gap: 15px;
}

.top-bar-socials a:hover {
  color: var(--accent-color);
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  z-index: 999;
  height: var(--header-height);
  transition: all var(--transition-normal);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--secondary-color);
}

[data-theme="dark"] .logo {
  color: #FFFFFF;
}

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

.logo img {
  height: 76px;
  max-height: 100%;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary-color);
  padding: 8px 0;
  position: relative;
}

[data-theme="dark"] .nav-link {
  color: var(--text-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast) ease-in-out;
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-btn-call {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #FFFFFF !important;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-btn-whatsapp {
  padding: 10px 20px;
  background-color: #25D366;
  color: #FFFFFF !important;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-btn-whatsapp:hover {
  background-color: #20BA56;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--secondary-color);
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

[data-theme="dark"] .theme-toggle {
  color: #FFFFFF;
}

.theme-toggle:hover {
  background-color: var(--bg-tertiary);
}

/* --- Mobile Menu Burger --- */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  transition: all var(--transition-normal);
}

[data-theme="dark"] .mobile-nav-toggle span {
  background-color: #FFFFFF;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 36px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 80px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.9) 30%, rgba(0, 87, 255, 0.5) 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--accent-color);
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-badges-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge-item i {
  color: var(--accent-color);
}

/* --- Hero Lead Quote Form --- */
.hero-quote-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-md);
  padding: 30px;
  color: var(--text-color);
}

.quote-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: center;
}

.quote-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

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

.form-group input, 
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  transition: all var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.quote-card-btn {
  width: 100%;
  margin-top: 10px;
}

/* --- Trust Badges Section --- */
.trust-badges-bar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 25px 0;
  transition: background-color var(--transition-normal);
}

.trust-badges-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge-card {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 1rem;
}

[data-theme="dark"] .trust-badge-card {
  color: #FFFFFF;
}

.trust-badge-card i {
  color: var(--primary-color);
  font-size: 1.4rem;
}

/* --- Services Cards Grid --- */
.services-section {
  background-color: var(--bg-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.service-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  align-self: flex-start;
}

.service-btn i {
  transition: transform var(--transition-fast);
}

.service-card:hover .service-btn i {
  transform: translateX(5px);
}

/* --- Why Choose Us Section --- */
.why-us {
  background-color: var(--bg-secondary);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.why-us-img {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-us-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.why-us-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--primary-color);
  color: #FFFFFF;
  padding: 15px 25px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  box-shadow: var(--shadow-lg);
}

.why-us-badge span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.why-us-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.why-point-card {
  display: flex;
  gap: 15px;
}

.why-point-card i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 3px;
}

.why-point-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.why-point-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --- Interactive Timeline Process --- */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 40px 40px;
  box-sizing: border-box;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  top: 0;
  border-radius: 50%;
  background-color: var(--bg-color);
  border: 4px solid var(--primary-color);
  z-index: 1;
  transition: background-color var(--transition-normal);
}

.timeline-left {
  left: 0;
  text-align: right;
}

.timeline-right {
  left: 50%;
  padding-left: 40px;
}

.timeline-right::after {
  left: -10px;
}

.timeline-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.timeline-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Statistics Counters --- */
.stats-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  color: #FFFFFF;
  padding: 60px 0;
}

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

.stat-item h2 {
  font-size: 3.5rem;
  color: var(--accent-color);
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-item p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Service Area Map Section --- */
.map-section {
  background-color: var(--bg-color);
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.map-cities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.map-city-tag {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.map-city-tag i {
  color: var(--primary-color);
}

.map-city-tag:hover, .map-city-tag.active {
  background-color: var(--primary-color);
  color: #FFFFFF;
  border-color: var(--primary-color);
}

.map-city-tag:hover i, .map-city-tag.active i {
  color: #FFFFFF;
}

.map-viz-container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  background-color: var(--bg-secondary);
  position: relative;
}

/* SVG map representation */
.india-map-svg {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.map-marker {
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.map-marker circle {
  fill: var(--primary-color);
  stroke: #FFFFFF;
  stroke-width: 2px;
}

.map-marker.active circle {
  fill: var(--accent-color);
  stroke: var(--secondary-color);
  stroke-width: 3px;
  animation: pulse-marker 1.5s infinite;
}

.map-marker text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 10px;
  fill: var(--secondary-color);
  transform: translateY(-8px);
  text-anchor: middle;
}

[data-theme="dark"] .map-marker text {
  fill: #FFFFFF;
}

@keyframes pulse-marker {
  0% { r: 6px; }
  50% { r: 10px; }
  100% { r: 6px; }
}

/* --- Testimonials Premium Slider --- */
.testimonials-section {
  background-color: var(--bg-secondary);
}

.testimonials-slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
}

.testimonial-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 8rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

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

[data-theme="dark"] .author-name {
  color: #FFFFFF;
}

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

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--secondary-color);
  transition: all var(--transition-fast);
}

[data-theme="dark"] .slider-btn {
  background-color: var(--bg-secondary);
  color: #FFFFFF;
}

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

/* --- FAQ Accordion --- */
.faq-section {
  background-color: var(--bg-color);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 8px 0;
}

.faq-question h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--secondary-color);
}

[data-theme="dark"] .faq-question h3 {
  color: #FFFFFF;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  transition: transform var(--transition-normal);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding-top: 15px;
}

/* --- CTA Large Banner Section --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #FFFFFF;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

/* --- Footer --- */
footer {
  background-color: #050E18;
  color: #A0AEC0;
  padding: 70px 0 30px 0;
  border-top: 1px solid #1E2D42;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-col p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-about-logo {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-about-logo span {
  color: var(--primary-color);
}

.footer-about-logo img {
  height: 60px;
  max-height: 100%;
  object-fit: contain;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.92rem;
  transition: color var(--transition-fast), padding var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.footer-contact-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid #1E2D42;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* --- Floating Widgets --- */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9998;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-call {
  background-color: var(--primary-color);
}

.float-email {
  background-color: var(--accent-color);
}

.float-back-to-top {
  background-color: var(--secondary-color);
  font-size: 1.2rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition-normal), visibility var(--transition-normal), transform var(--transition-fast);
}

.float-back-to-top.show {
  visibility: visible;
  opacity: 1;
}

/* --- Live Chat Simulated Widget --- */
.chat-widget-launcher {
  background-color: var(--primary-color);
}

.chat-widget-box {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 320px;
  height: 400px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.chat-widget-box.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.chat-header {
  background-color: var(--secondary-color);
  color: #FFFFFF;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}

.chat-body {
  flex-grow: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  max-width: 80%;
  font-size: 0.88rem;
}

.chat-msg-bot {
  background-color: var(--bg-secondary);
  color: var(--text-color);
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.chat-msg-user {
  background-color: var(--primary-color);
  color: #FFFFFF;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

.chat-footer {
  padding: 12px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 8px;
}

.chat-input {
  flex-grow: 1;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 8px 12px;
  font-size: 0.88rem;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.chat-send-btn {
  background-color: var(--primary-color);
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Mobile Sticky CTA Bottom Bar --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  z-index: 9997;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.mobile-cta-btn {
  text-align: center;
  padding: 15px 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #FFFFFF;
}

.mobile-cta-call {
  background-color: var(--primary-color);
}

.mobile-cta-whatsapp {
  background-color: #25D366;
}

/* --- Quote Popup Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 37, 64, 0.6);
  backdrop-filter: blur(8px);
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.modal-box {
  background-color: var(--bg-color);
  border-radius: var(--border-radius-md);
  width: 100%;
  max-width: 500px;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

/* --- Pricing Calculator (pricing.html) --- */
.calc-container {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 30px;
}

.calc-result-box {
  background-color: var(--primary-light);
  border: 2px dashed var(--primary-color);
  border-radius: var(--border-radius-md);
  padding: 25px;
  text-align: center;
}

.calc-result-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

[data-theme="dark"] .calc-result-title {
  color: #FFFFFF;
}

.calc-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.calc-breakdown {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Shipment Tracking (tracking.html) --- */
.tracking-dashboard {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.tracking-form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.tracking-form-row input {
  flex-grow: 1;
  padding: 14px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-color);
  color: var(--text-color);
}

.tracking-timeline-box {
  margin-top: 30px;
  display: none;
}

.tracking-timeline-box.show {
  display: block;
}

.tracking-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background-color: var(--bg-color);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 35px;
  border: 1px solid var(--border-color);
}

.tracking-meta-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tracking-meta-item strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--secondary-color);
}

[data-theme="dark"] .tracking-meta-item strong {
  color: #FFFFFF;
}

.tracking-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
}

.tracking-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--border-color);
  z-index: 1;
}

.tracking-step-line-progress {
  position: absolute;
  top: 25px;
  left: 0;
  height: 4px;
  background-color: var(--primary-color);
  z-index: 2;
  width: 0%;
  transition: width var(--transition-slow);
}

.tracking-step-node {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.tracking-node-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-color);
  border: 4px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--transition-normal);
}

.tracking-step-node.active .tracking-node-icon {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-light);
}

.tracking-step-node.completed .tracking-node-icon {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #FFFFFF;
}

.tracking-node-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
  color: var(--text-muted);
}

.tracking-step-node.active .tracking-node-label,
.tracking-step-node.completed .tracking-node-label {
  color: var(--secondary-color);
}

[data-theme="dark"] .tracking-step-node.active .tracking-node-label,
[data-theme="dark"] .tracking-step-node.completed .tracking-node-label {
  color: #FFFFFF;
}

.tracking-node-time {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --- Filterable Gallery (gallery.html) --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  padding: 10px 20px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary-color);
  transition: all var(--transition-fast);
}

[data-theme="dark"] .gallery-filter-btn {
  color: #FFFFFF;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 250px;
  position: relative;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 37, 64, 0.8) 0%, rgba(10, 37, 64, 0.1) 80%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-info h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
}

.gallery-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* --- Contact Us (contact.html) --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-panel {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.contact-detail-card {
  display: flex;
  gap: 15px;
}

.contact-detail-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 3px;
}

.contact-detail-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-detail-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.contact-form-panel {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.map-embed-container {
  height: 350px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
  border: 1px solid var(--border-color);
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Reviews Page Layout (reviews.html) --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.review-card-static {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

.review-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar-small {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.review-username {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

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

.review-rating-stars {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.review-body-text {
  font-size: 0.88rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-badges-horizontal {
    justify-content: center;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-color);
    flex-direction: column;
    padding: 40px 0;
    transition: left var(--transition-normal);
    z-index: 998;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.show {
    left: 0;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }
  .nav-cta {
    display: none;
  }
  .process-timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-left {
    text-align: left;
  }
  .timeline-right {
    left: 0;
  }
  .timeline-item::after {
    left: 10px;
    right: auto;
  }
  .timeline-right::after {
    left: 10px;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .tracking-meta {
    grid-template-columns: 1fr;
  }
  .tracking-steps {
    flex-direction: column;
    gap: 30px;
  }
  .tracking-steps::before {
    left: 25px;
    top: 0;
    width: 4px;
    height: 100%;
  }
  .tracking-step-line-progress {
    left: 25px;
    top: 0;
    width: 4px;
    height: 0%;
  }
  .tracking-step-node {
    flex-direction: row;
    width: 100%;
    gap: 20px;
  }
  .tracking-node-label {
    margin-top: 0;
    text-align: left;
  }
  .mobile-sticky-cta {
    display: grid;
  }
  body {
    padding-bottom: 50px; /* Space for mobile sticky footer cta */
  }
  .floating-widgets {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
