/* ==========================================================================
   ANGEL'S DELIVERY & MOVING - MODERN DESIGN SYSTEM & STYLES
   ========================================================================== */

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

:root {
  /* Color Palette */
  --color-primary-navy: #0B192C;
  --color-primary-dark: #060D17;
  --color-primary-blue: #1E3E62;
  --color-primary-light: #2D5888;
  
  --color-accent-gold: #F5A623;
  --color-accent-amber: #FFB22C;
  --color-accent-warm: #E65100;
  
  --color-call-red: #E53935;
  --color-call-hover: #D32F2F;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1EBE5D;

  --color-bg-light: #F8FAFC;
  --color-bg-white: #FFFFFF;
  --color-bg-card: #FFFFFF;
  --color-bg-card-alt: #F1F5F9;

  --color-text-main: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #94A3B8;
  --color-text-white: #FFFFFF;

  --color-border-light: #E2E8F0;
  --color-border-dark: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(11, 25, 44, 0.04);
  --shadow-md: 0 6px 18px rgba(11, 25, 44, 0.08);
  --shadow-lg: 0 16px 36px rgba(11, 25, 44, 0.12);
  --shadow-xl: 0 24px 54px rgba(11, 25, 44, 0.16);
  --shadow-gold: 0 8px 24px rgba(245, 166, 35, 0.35);
  --shadow-red: 0 8px 24px rgba(229, 57, 53, 0.35);

  /* Transitions & Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}



/* ==========================================================================
   STICKY HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 25, 44, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(6, 13, 23, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  gap: 2rem;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform var(--transition-fast);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.03);
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-text-white);
  letter-spacing: 0.03em;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-title span {
  color: var(--color-accent-gold);
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  color: #E2E8F0;
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-gold);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

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

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: #94A3B8;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--color-accent-gold);
  color: var(--color-primary-navy);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Header Buttons */
.btn-header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--color-call-red), var(--color-call-hover));
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.48rem 0.95rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-red);
  white-space: nowrap;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.5);
  color: #FFFFFF;
}

.btn-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.btn-mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-accent-gold);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

.btn-mobile-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.btn-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.btn-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION WITH VIDEO BACKGROUND
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--color-primary-dark);
  color: #FFFFFF;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.65;
  filter: saturate(1.15) brightness(0.95);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 13, 23, 0.78) 0%,
    rgba(11, 25, 44, 0.62) 50%,
    rgba(6, 13, 23, 0.82) 100%
  );
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--color-accent-amber);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-shadow: 0 3px 12px rgba(0,0,0,0.5);
}

.hero-main-title span {
  color: var(--color-accent-gold);
  background: linear-gradient(135deg, #FFB22C, #F5A623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 600;
  color: #F1F5F9;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #CBD5E1;
  line-height: 1.7;
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.btn-primary-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--color-call-red), #C62828);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 1.1rem 2.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(229, 57, 53, 0.45);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary-call:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 38px rgba(229, 57, 53, 0.6);
  color: #FFFFFF;
}

.btn-secondary-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.btn-secondary-contact:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFFFFF;
  transform: translateY(-3px);
  color: #FFFFFF;
}

/* Hero Stats Counter Bar */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-accent-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background: #FFFFFF;
}

.section-dark {
  background: var(--color-primary-navy);
  color: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 166, 35, 0.12);
  color: #D97706;
  font-size: 0.825rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-dark .section-badge {
  background: rgba(245, 166, 35, 0.2);
  color: var(--color-accent-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--color-primary-navy);
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: #FFFFFF;
}

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

.section-dark .section-subtitle {
  color: #CBD5E1;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-gold), var(--color-accent-amber));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #0B192C, #1E3E62);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-gold);
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 14px rgba(11, 25, 44, 0.15);
}

.service-card-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #EFF6FF;
  color: var(--color-primary-blue);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary-blue);
}

.service-card-link:hover {
  color: var(--color-accent-warm);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-normal);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(245, 166, 35, 0.3);
}

.why-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(245, 166, 35, 0.15);
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.why-card-desc {
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.6;
}

/* ==========================================================================
   FLEET & CREW SECTION (VIDEOS & REAL PHOTOS)
   ========================================================================== */
.fleet-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.fleet-video-card {
  background: #000000;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  border: 1px solid var(--color-border-light);
}

.fleet-video-player {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.fleet-video-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fleet-video-info h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-primary-navy);
  line-height: 1.2;
}

.fleet-video-info p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.fleet-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.fleet-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary-navy);
}

.fleet-feature-item svg {
  color: #10B981;
  flex-shrink: 0;
}

/* Real Photos Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

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

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

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-card-body {
  padding: 1.5rem;
}

.gallery-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin-bottom: 0.5rem;
}

.gallery-card-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   PROCESS SECTION (HOW IT WORKS)
   ========================================================================== */
.process-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

.process-step-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-normal);
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-gold);
}

.step-num-badge {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #E2E8F0;
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color var(--transition-fast);
}

.process-step-card:hover .step-num-badge {
  color: var(--color-accent-gold);
}

.step-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

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

/* ==========================================================================
   SERVICE AREAS SECTION
   ========================================================================== */
.areas-wrapper {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.area-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary-navy);
  transition: all var(--transition-fast);
}

.area-pill:hover {
  background: #EFF6FF;
  border-color: var(--color-primary-blue);
  color: var(--color-primary-blue);
  transform: translateX(3px);
}

.area-pill svg {
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

.areas-cta-banner {
  background: linear-gradient(135deg, var(--color-primary-navy), var(--color-primary-blue));
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: #FFFFFF;
}

.areas-cta-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: #E2E8F0;
  line-height: 1.5;
}

.areas-cta-banner .btn-primary-call {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   TESTIMONIALS & GOOGLE REVIEWS SECTION
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.review-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 166, 35, 0.4);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #FBBC04; /* Google Star Yellow */
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1A73E8;
  background: #E8F0FE;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.review-text {
  font-size: 1rem;
  color: var(--color-text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.75rem;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary-navy), var(--color-accent-warm));
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info h3, .author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary-navy);
}

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

.google-cta-container {
  text-align: center;
}

.btn-google-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  border: 1px solid #DADCE0;
  color: #3C4043;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(60, 64, 67, 0.15);
  transition: all var(--transition-fast);
}

.btn-google-maps:hover {
  background: #F8F9FA;
  box-shadow: 0 4px 12px rgba(60, 64, 67, 0.25);
  transform: translateY(-2px);
}

/* ==========================================================================
   CONTACT SECTION (DIRECT CALL FOCUS & NO-PRICE FORM)
   ========================================================================== */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-direct-card {
  background: linear-gradient(135deg, var(--color-primary-navy), #060D17);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-direct-card h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.contact-direct-card p {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
  min-width: 0;
  max-width: 100%;
}

.contact-channel-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(245, 166, 35, 0.2);
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon.red {
  background: rgba(229, 57, 53, 0.25);
  color: #FF5252;
}

.channel-icon.green {
  background: rgba(37, 211, 102, 0.25);
  color: #25D366;
}

.channel-text {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.channel-label, .channel-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
  margin-bottom: 0.15rem;
  display: block;
}

.channel-text a, .channel-text span {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  word-break: break-word;
  overflow-wrap: anywhere;
  display: block;
}

/* Contact Form */
.contact-form-container {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
}

.contact-form-container h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary-navy);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary-navy);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border-light);
  background: #F8FAFC;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--color-primary-navy), var(--color-primary-blue));
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
  margin-top: 0.5rem;
}

.btn-form-submit:hover {
  background: linear-gradient(135deg, var(--color-call-red), var(--color-call-hover));
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.form-alert-success {
  display: none;
  padding: 1.25rem;
  background: #ECFDF5;
  border: 1px solid #10B981;
  border-radius: var(--radius-md);
  color: #065F46;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-primary-dark);
  color: #94A3B8;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

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

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

.footer-link:hover {
  color: var(--color-accent-gold);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.footer-contact-item svg {
  color: var(--color-accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

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

/* ==========================================================================
   FLOATING ACTION BUTTONS (CALL & WHATSAPP)
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

.btn-floating {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.btn-floating.call {
  background: linear-gradient(135deg, var(--color-call-red), var(--color-call-hover));
}

.btn-floating.call:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(229, 57, 53, 0.6);
}

.btn-floating.whatsapp {
  background: linear-gradient(135deg, var(--color-whatsapp), var(--color-whatsapp-dark));
}

.btn-floating.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-call-red);
  animation: pulse-ring 2s infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .fleet-showcase-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-section-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .nav-container {
    padding: 0.65rem 1.25rem;
    gap: 1rem;
    width: 100%;
    max-width: 100vw;
  }
  .top-bar {
    display: none;
  }
  .btn-mobile-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(6, 13, 23, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    text-align: center;
  }
  .nav-link {
    font-size: 1.2rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .areas-wrapper {
    padding: 2rem;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .areas-cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0.5rem 0.85rem;
    gap: 0.5rem;
  }
  .brand-logo-img {
    height: 38px;
  }
  .brand-title {
    font-size: 0.95rem;
  }
  .brand-tagline {
    font-size: 0.6rem;
  }
  .header-actions {
    gap: 0.5rem;
  }
  .btn-header-call span {
    display: none;
  }
  .btn-header-call {
    padding: 0.45rem;
    width: 36px;
    height: 36px;
    justify-content: center;
    border-radius: 50%;
  }
  .contact-direct-card {
    padding: 1.5rem 1.15rem;
  }
  .contact-form-container {
    padding: 1.75rem 1.15rem;
  }
  .footer-contact-item a, .footer-contact-item span {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .floating-actions-container {
    bottom: 1.25rem;
    right: 1.25rem;
    gap: 0.65rem;
  }
  .btn-floating {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 580px) {
  .section {
    padding: 3.5rem 0;
  }
  .container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100vw;
  }
  .nav-container {
    padding: 0.45rem 0.75rem;
  }
  .brand-logo-img {
    height: 34px;
  }
  .brand-title {
    font-size: 0.86rem;
  }
  .brand-tagline {
    font-size: 0.52rem;
    letter-spacing: 0.02em;
  }
  .lang-btn {
    padding: 0.2rem 0.45rem;
    font-size: 0.72rem;
  }
  .hero-main-title {
    font-size: 2rem;
    line-height: 1.15;
  }
  .hero-tagline {
    font-size: 1.05rem;
  }
  .hero-actions-cluster {
    flex-direction: column;
    width: 100%;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .contact-direct-card {
    padding: 1.25rem 0.85rem;
  }
  .contact-form-container {
    padding: 1.5rem 0.85rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .btn-primary-call, .btn-secondary-contact {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
