/* ==========================================================================
   GK All INDIA PACKERS & MOVERS - STYLESHEET
   Pure CSS3 Implementation without external frameworks
   Fully Responsive for Desktop, Laptop, Tablet, Mobile & Small Phones (320px)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --color-primary: #0B1F3A;        /* Deep Navy */
  --color-primary-light: #123B63;  /* Secondary Navy */
  --color-primary-dark: #071426;   /* Darker Navy */
  --color-accent: #F59E0B;         /* Warm Amber */
  --color-cta: #EA580C;            /* Vibrant Warm Orange */
  --color-cta-hover: #C2410C;      /* Hover State Orange */
  --color-whatsapp: #25D366;       /* WhatsApp Green */
  --color-whatsapp-hover: #1EBE57;

  /* Neutrals */
  --color-bg: #F8FAFC;             /* Light Gray Background */
  --color-card-bg: #FFFFFF;        /* White Card Background */
  --color-text: #172033;           /* Dark Charcoal Text */
  --color-text-muted: #64748B;     /* Muted Slate Gray */
  --color-border: #E2E8F0;         /* Border Light Gray */
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(11, 31, 58, 0.08), 0 2px 4px -1px rgba(11, 31, 58, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(11, 31, 58, 0.12), 0 8px 10px -6px rgba(11, 31, 58, 0.05);
  --shadow-xl: 0 20px 30px -10px rgba(11, 31, 58, 0.18);

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --max-width: 1200px;
  --header-height: 115px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 60px; /* Space for fixed mobile bottom bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }
}

.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.text-accent { color: var(--color-accent) !important; }
.full-width { width: 100%; }

.icon-xs { width: 16px; height: 16px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-sm { width: 20px; height: 20px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-md { width: 24px; height: 24px; display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* Section Standard Layout */
.section {
  padding: 4.5rem 0;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-cta);
  background-color: rgba(234, 88, 12, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.65rem;
  }
}

@media (max-width: 360px) {
  .section-title {
    font-size: 1.45rem;
  }
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  overflow-wrap: break-word;
}

@media (max-width: 576px) {
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }
}

.section-header {
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

/* --------------------------------------------------------------------------
   3. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  min-height: 48px; /* Touch target size */
  max-width: 100%;
  box-sizing: border-box;
}

.btn-primary {
  background-color: var(--color-cta);
  color: var(--color-white);
  border-color: var(--color-cta);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.35);
}

.btn-cta {
  background-color: var(--color-cta);
  color: var(--color-white);
  font-size: 1.05rem;
  padding: 0.9rem 1.75rem;
}

.btn-cta:hover {
  background-color: var(--color-cta-hover);
  transform: translateY(-2px);
}

.btn-cta-light {
  background-color: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
}

.btn-cta-light:hover {
  background-color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
}

.btn-accent:hover {
  background-color: #D97706;
  color: var(--color-white);
}

.btn-lg {
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   4. TOP BAR & STICKY HEADER
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--color-primary-dark);
  color: #94A3B8;
  font-size: 0.85rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-contact {
  display: flex;
  gap: 1.25rem;
}

.top-link {
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.top-link:hover {
  color: var(--color-white);
}

.top-whatsapp:hover {
  color: var(--color-whatsapp);
}

@media (max-width: 768px) {
  .top-bar {
    display: none; /* Hide top bar on mobile for compact header */
  }
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-normal), background-color var(--transition-normal);
  box-sizing: border-box;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  width: 100%;
  max-width: var(--max-width);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .header-container {
    height: 88px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.logo-img {
  height: 98px;
  width: auto;
  max-width: 440px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 85px;
  max-width: 380px;
  background-color: var(--color-white);
  padding: 8px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .logo-img {
    height: 74px;
    max-width: 310px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 64px;
    max-width: calc(100vw - 80px);
  }
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-shrink: 1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-cta);
  letter-spacing: 0.2px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 576px) {
  .brand-name {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
  }
  .brand-tagline {
    font-size: 0.6rem;
    max-width: 180px;
  }
  .logo-icon {
    width: 34px;
    height: 34px;
    padding: 5px;
  }
}

@media (max-width: 360px) {
  .brand-name {
    font-size: 1.15rem;
  }
  .brand-tagline {
    font-size: 0.56rem;
    max-width: 155px;
  }
}

/* Desktop Navigation */
.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 0.5rem 0;
  position: relative;
}

.desktop-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-cta);
  transition: width var(--transition-fast);
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
  color: var(--color-cta);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .header-actions .header-call-btn,
  .header-actions .header-quote-btn {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }
}

@media (max-width: 480px) {
  .mobile-actions {
    gap: 0.25rem;
  }
  /* Hide top header icon buttons on narrow mobile screens since .mobile-bottom-bar provides fixed Call & WhatsApp buttons */
  .mobile-actions .mobile-icon-btn {
    display: none;
  }
}

.mobile-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background-color: var(--color-bg);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.mobile-icon-btn.mobile-wa {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--color-whatsapp);
  border-color: rgba(37, 211, 102, 0.2);
}

.mobile-icon-btn svg {
  width: 18px;
  height: 18px;
}

.hamburger-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 6px;
  flex-shrink: 0;
}

.hamburger-line {
  width: 22px;
  height: 2.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Mobile Drawer Menu */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 1000;
  box-shadow: var(--shadow-xl);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
  overflow-y: auto;
  box-sizing: border-box;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.25rem;
}

.close-drawer-btn {
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.close-drawer-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.7rem 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-md);
}

.mobile-nav-link:hover {
  background-color: var(--color-bg);
  color: var(--color-cta);
}

.mobile-drawer-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 31, 58, 0.5);
  backdrop-filter: blur(2px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-drawer-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg) 100%);
  padding: 3rem 0 4.5rem 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0 3.5rem 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(18, 59, 99, 0.08);
  color: var(--color-primary-light);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(18, 59, 99, 0.15);
  max-width: 100%;
  box-sizing: border-box;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  overflow-wrap: break-word;
}

.text-gradient {
  color: var(--color-cta);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
}

.hero-description {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 580px;
  overflow-wrap: break-word;
}

@media (max-width: 576px) {
  .hero-description {
    font-size: 0.95rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 576px) {
  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }
}

/* Hero Image & Floating Cards */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.hero-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden; /* Prevent floating badges overflow on mobile */
  box-shadow: var(--shadow-xl);
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-video-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background-color: var(--color-primary-dark);
}

.hero-video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .hero-img, .hero-video {
    height: 270px;
  }
}

.video-live-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background-color: rgba(11, 31, 58, 0.88);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-dot-anim 1.5s infinite;
}

@keyframes pulse-dot-anim {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.video-sound-toggle {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 5;
  background-color: rgba(11, 31, 58, 0.88);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.video-sound-toggle:hover {
  background-color: var(--color-cta);
  border-color: var(--color-cta);
  transform: scale(1.05);
}

.trust-floating-card {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--color-border);
  z-index: 2;
}

.trust-floating-card.card-1 {
  top: 12px;
  left: 12px;
}

.trust-floating-card.card-2 {
  bottom: 12px;
  left: 12px;
}

.trust-floating-card.card-3 {
  bottom: 12px;
  right: 12px;
}

@media (max-width: 600px) {
  .trust-floating-card.card-2 { display: none; }
  .trust-floating-card {
    padding: 0.45rem 0.65rem;
  }
  .trust-text strong {
    font-size: 0.78rem;
  }
  .trust-text small {
    font-size: 0.68rem;
  }
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--color-primary);
  line-height: 1.2;
}

.trust-text small {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   6. HERO QUICK ENQUIRY CARD SECTION
   -------------------------------------------------------------------------- */
.enquiry-card-section {
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  padding-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.enquiry-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .enquiry-card {
    padding: 1.25rem;
    border-radius: var(--radius-md);
  }
}

.enquiry-header {
  margin-bottom: 1.5rem;
}

.enquiry-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
  overflow-wrap: break-word;
}

@media (max-width: 576px) {
  .enquiry-title {
    font-size: 1.4rem;
  }
}

.enquiry-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 992px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
}

.required {
  color: var(--color-cta);
}

.form-control {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--color-text);
  background-color: #FAFAFA;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(18, 59, 99, 0.12);
  background-color: var(--color-white);
}

.form-control.error {
  border-color: #EF4444;
  background-color: #FEF2F2;
}

.error-message {
  font-size: 0.75rem;
  color: #EF4444;
  display: none;
  margin-top: 0.1rem;
}

.error-message.visible {
  display: block;
}

.form-action {
  margin-bottom: 0.85rem;
}

.form-notice {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #92400E;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
}

.form-notice.visible {
  display: flex;
}

/* --------------------------------------------------------------------------
   7. TRUST / VALUE STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 2.25rem 0;
  border-bottom: 4px solid var(--color-accent);
  width: 100%;
  box-sizing: border-box;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  position: relative;
}

.trust-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.trust-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.trust-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.trust-content p {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   8. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.paragraph {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  overflow-wrap: break-word;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
}

@media (max-width: 576px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

.about-feature-card {
  background-color: var(--color-white);
  padding: 1.1rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.feature-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.6rem auto;
  border-radius: var(--radius-sm);
  background-color: rgba(18, 59, 99, 0.08);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}

.about-feature-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.about-feature-card p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  width: 100%;
}

.about-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .about-img {
    height: 250px;
  }
}

.about-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background-color: rgba(11, 31, 58, 0.92);
  backdrop-filter: blur(6px);
  color: var(--color-white);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 700;
  font-size: 0.85rem;
}

.badge-icon {
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. TRUST DESIGN SECTION (YOUR BELONGINGS DESERVE CARE)
   -------------------------------------------------------------------------- */
.trust-design-section {
  background-color: var(--color-white);
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 992px) {
  .trust-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.trust-photo-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.trust-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.photo-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.trust-photo-card:hover .photo-box img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.25rem;
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.card-content p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   10. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-section {
  background-color: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.service-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(18, 59, 99, 0.2);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: rgba(18, 59, 99, 0.08);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 1.1rem;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}

.service-card:hover .service-icon-box {
  background-color: var(--color-cta);
  color: var(--color-white);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--color-cta);
}

.service-link:hover {
  color: var(--color-cta-hover);
  gap: 0.55rem;
}

/* --------------------------------------------------------------------------
   11. WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.why-choose-section {
  background-color: var(--color-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.benefit-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(18, 59, 99, 0.08);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12. HOW IT WORKS SECTION
   -------------------------------------------------------------------------- */
.process-section {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  box-sizing: border-box;
}

.process-section .section-title {
  color: var(--color-white);
}

.process-section .section-subtitle {
  color: #94A3B8;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
  margin-top: 1.5rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

@media (max-width: 992px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 26px;
    right: auto;
    width: 3px;
    height: 100%;
  }
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

@media (max-width: 992px) {
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
  }
}

.step-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-accent), var(--color-cta));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .step-badge {
    margin: 0;
  }
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-white);
}

.step-content p {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. REAL PHOTO GALLERY & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-section {
  background-color: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background-color: var(--color-white);
  position: relative;
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

@media (max-width: 576px) {
  .gallery-img-wrapper {
    height: 200px;
  }
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.1) 0%, rgba(11, 31, 58, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  padding: 1.25rem;
  text-align: center;
  color: var(--color-white);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  margin-bottom: 0.6rem;
}

.gallery-caption {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 20, 38, 0.92);
  backdrop-filter: blur(5px);
}

.lightbox-container {
  position: relative;
  z-index: 2001;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content {
  background-color: var(--color-primary-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  padding: 0.85rem;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.4);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background-color: var(--color-cta);
}

.lightbox-close {
  top: -45px;
  right: 0;
  width: 40px;
  height: 40px;
}

.lightbox-prev {
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
}

.lightbox-next {
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
}

@media (max-width: 768px) {
  .lightbox-prev { left: 5px; top: auto; bottom: -50px; transform: none; }
  .lightbox-next { right: 5px; top: auto; bottom: -50px; transform: none; }
  .lightbox-close { top: -45px; right: 5px; }
}

/* --------------------------------------------------------------------------
   14. CALL TO ACTION SECTION (PRE-FAQ)
   -------------------------------------------------------------------------- */
.cta-banner-section {
  padding: 1.5rem 0 3.5rem 0;
  width: 100%;
  box-sizing: border-box;
}

.cta-banner-box {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .cta-banner-box {
    padding: 2rem 1.25rem;
  }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  overflow-wrap: break-word;
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.6rem;
  }
}

.cta-text {
  font-size: 1.05rem;
  color: #CBD5E1;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   15. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: var(--color-white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  box-sizing: border-box;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-bg);
  transition: border-color var(--transition-fast);
  width: 100%;
  box-sizing: border-box;
}

.faq-item.active {
  border-color: var(--color-primary-light);
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .faq-trigger {
    padding: 0.9rem 1rem;
    font-size: 0.92rem;
  }
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--color-cta);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 1.25rem;
  box-sizing: border-box;
}

.faq-item.active .faq-content {
  padding: 0 1.25rem 1.1rem 1.25rem;
}

.faq-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   16. LOCATION SECTION
   -------------------------------------------------------------------------- */
.location-section {
  background-color: var(--color-bg);
}

.location-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .location-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.loc-detail-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
  overflow-wrap: break-word;
}

.location-map-box {
  width: 100%;
}

.location-map-box iframe {
  width: 100%;
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   17. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  width: 100%;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info-card {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .contact-info-card {
    padding: 1.5rem;
  }
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  overflow-wrap: break-word;
}

.contact-info-card p {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color var(--transition-fast);
  overflow: hidden;
}

.contact-method-item:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.cm-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  flex-shrink: 0;
}

.cm-icon.wa-icon {
  color: var(--color-whatsapp);
}

.cm-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cm-text .label {
  font-size: 0.72rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cm-text strong {
  font-size: 0.95rem;
  color: var(--color-white);
  overflow-wrap: break-word;
  word-break: break-word;
}

.contact-form-card {
  background-color: var(--color-bg);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 1.25rem;
  }
}

.contact-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   18. FOOTER SECTION
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-primary-dark);
  color: #94A3B8;
  padding: 3.5rem 0 2rem 0;
  border-top: 4px solid var(--color-cta);
  width: 100%;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0.85rem 0;
  color: #94A3B8;
}

.footer-link-bold {
  color: var(--color-accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: #94A3B8;
}

.footer-links a:hover {
  color: var(--color-white);
  padding-left: 4px;
}

.footer-address p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.35rem;
  font-style: normal;
}

.footer-address a {
  color: var(--color-white);
  font-weight: 600;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.footer-sub-text a {
  color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   19. FLOATING ELEMENTS & MOBILE ACTION BAR
   -------------------------------------------------------------------------- */
.desktop-floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
}

@media (max-width: 768px) {
  .desktop-floating-actions {
    display: none; /* Hide floating button on mobile in favor of bottom action bar */
  }
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  color: var(--color-white);
  position: relative;
  transition: transform var(--transition-fast);
}

.floating-btn:hover {
  transform: scale(1.08);
}

.floating-wa {
  background-color: var(--color-whatsapp);
  animation: pulse-wa 2s infinite;
}

.floating-tooltip {
  position: absolute;
  right: 65px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Fixed Mobile Bottom Action Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 56px;
  background-color: var(--color-white);
  z-index: 990;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--color-border);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
  }
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0 4px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .mobile-bar-btn {
    font-size: 0.7rem;
    gap: 0.2rem;
  }
  .mobile-bar-btn svg {
    width: 14px;
    height: 14px;
  }
}

.bar-call {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.bar-call-secondary {
  background-color: #0369A1;
  color: var(--color-white);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.bar-wa {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 890;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 4.5rem;
    left: 1rem;
    width: 38px;
    height: 38px;
  }
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: var(--color-cta);
  color: var(--color-white);
  border-color: var(--color-cta);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   20. ACCESSIBILITY & PREFERS-REDUCED-MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
