/* Custom CSS for Nisa Nakliyat Landing Page */

/* ==========================================
   1. CSS VARIABLES & SYSTEM DESIGN
   ========================================== */
:root {
  /* Color Palette */
  --primary-navy: #002D62;       /* Exact Royal Navy Blue from Truck */
  --primary-light: #0d1e3d;      /* Dark Accent Blue */
  --accent-gold: #E5A93B;       /* Exact Gold from Truck Logo */
  --accent-gold-hover: #c88f28; /* Darker Gold for hover states */
  --accent-blue: #3b82f6;       /* Blue 500 */
  
  --text-dark: #0f172a;         /* Body Text Dark */
  --text-muted: #475569;        /* Body Text Slate Muted */
  --text-light: #f8fafc;        /* Off-white */
  
  --bg-white: #ffffff;
  --bg-light: #f8fafc;          /* Light Gray-Blue background */
  --bg-navy-gradient: linear-gradient(135deg, #002D62 0%, #0d1e3d 100%);
  --bg-gold-gradient: linear-gradient(135deg, #E5A93B 0%, #c88f28 100%);
  
  /* Status Colors */
  --color-green: #25d366;       /* WhatsApp Green */
  --color-green-hover: #128c7e;
  
  /* Typography */
  --font-headline: 'Hanken Grotesk', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.15);
  
  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Spacing Constraints */
  --container-max-width: 1200px;
}

/* ==========================================
   2. GLOBAL RESETS & STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary-navy);
}

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

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

ul {
  list-style: none;
}

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

.scroll-smooth {
  scroll-behavior: smooth;
}

/* ==========================================
   3. LAYOUT UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 576px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

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

.col-span-5 { grid-column: span 12; }
.col-span-7 { grid-column: span 12; }

@media (min-width: 992px) {
  .col-span-5 { grid-column: span 5; }
  .col-span-7 { grid-column: span 7; }
}

.flex { display: flex; }
.flex-column { flex-direction: column; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.gap-xs { gap: 4px; }
.gap-small { gap: 16px; }
.gap-medium { gap: 32px; }

.py-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bg-light { background-color: var(--bg-light); }
.bg-navy { background: var(--bg-navy-gradient); }
.text-light { color: var(--text-light); }
.text-light h1, .text-light h2, .text-light h3, .text-light h4 { color: var(--text-light); }
.text-center { text-align: center; }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.mt-4 { margin-top: 16px; }
.mt-medium { margin-top: 40px; }

.icon-small { font-size: 18px !important; vertical-align: middle; }
.icon-sm { font-size: 20px !important; vertical-align: middle; }
.icon-align { vertical-align: middle; margin-right: 6px; }

/* ==========================================
   4. BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--bg-gold-gradient);
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-navy);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
}

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

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: var(--bg-white);
}

.btn-outline.btn-white {
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline.btn-white:hover {
  background-color: var(--text-light);
  color: var(--primary-navy);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-header {
  padding: 10px 20px;
  font-size: 14px;
}

/* ==========================================
   5. TOP CONTACT STRIP
   ========================================== */
.top-bar {
  background-color: var(--primary-navy);
  color: rgba(248, 250, 252, 0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(248, 250, 252, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 576px) {
  .top-bar-content {
    flex-direction: row;
    gap: 0;
  }
}

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

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

.top-separator {
  color: rgba(248, 250, 252, 0.2);
}

.top-tagline {
  font-weight: 600;
  color: var(--accent-gold);
}

/* ==========================================
   6. HEADER & NAVIGATION
   ========================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.logo-img {
  height: 52px;
  width: auto;
}

.menu-toggle {
  display: block;
  font-size: 32px;
  color: var(--primary-navy);
  cursor: pointer;
}

.nav-menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid #e2e8f0;
}

.nav-menu.active {
  display: flex;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-link {
  font-weight: 600;
  color: var(--primary-light);
  padding: 8px 0;
  position: relative;
}

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

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
  
  .nav-menu {
    position: static;
    width: auto;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    border-top: none;
  }
  
  .nav-list {
    flex-direction: row;
    gap: 32px;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width var(--transition-normal);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
}

/* ==========================================
   7. HERO SECTION
   ========================================== */
.hero {
  position: relative;
  background-color: var(--bg-light);
  padding: 60px 0 80px 0;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold-hover);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

@media (min-width: 576px) {
  .hero h1 { font-size: 42px; }
}

@media (min-width: 992px) {
  .hero h1 { font-size: 48px; }
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
    width: auto;
  }
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid #e2e8f0;
  padding-top: 24px;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-light);
}

.text-gold {
  color: var(--accent-gold);
}

/* Hero Gallery Container */
.hero-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
  aspect-ratio: 4 / 3;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-cover: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.gallery-wrapper:hover .hero-main-img {
  transform: scale(1.03);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
  padding: 24px 20px 16px 20px;
  color: var(--text-light);
}

.overlay-text {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumb-btn {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-btn:hover {
  transform: translateY(-2px);
}

.thumb-btn.active {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

/* ==========================================
   8. SECTION TITLES
   ========================================== */
.section-title {
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .section-title h2 { font-size: 36px; }
}

.section-title p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.title-line {
  width: 60px;
  height: 4px;
  background-color: var(--accent-gold);
  margin: 16px auto 0 auto;
  border-radius: var(--radius-full);
}

/* ==========================================
   9. SERVICES SECTION
   ========================================== */
.services {
  background-color: var(--bg-white);
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon span {
  font-size: 30px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.card-features li {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-green { color: #10b981; }

/* ==========================================
   10. TRUCK DETAILS SECTION
   ========================================== */
.truck-details {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.truck-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.truck-content h2 {
  font-size: 30px;
  margin-top: 12px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .truck-content h2 { font-size: 34px; }
}

.lead-text {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.spec-item {
  display: flex;
  gap: 16px;
}

.spec-icon {
  color: var(--accent-gold);
  font-size: 28px !important;
  flex-shrink: 0;
  margin-top: 4px;
}

.spec-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.spec-item p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Truck Showcase Grid */
.truck-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.grid-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--bg-white);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

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

.grid-img-card img:hover {
  transform: scale(1.04);
}

.grid-img-card.h-large {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

/* ==========================================
   11. SERVICE REGIONS SECTION
   ========================================== */
.regions {
  background-color: var(--bg-white);
}

.regions-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .regions-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.region-box {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.region-box h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary-navy);
}

.region-box p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 15px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background-color: var(--bg-white);
  color: var(--text-muted);
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.tag:hover {
  border-color: var(--accent-gold);
  color: var(--primary-navy);
}

.tag-primary {
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold-hover);
  border-color: rgba(245, 158, 11, 0.2);
}

.tag-primary:hover {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
}

.tag-secondary {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--accent-blue);
  border-color: rgba(59, 130, 246, 0.15);
}

.tag-secondary:hover {
  background-color: var(--accent-blue);
  color: var(--bg-white);
}

/* ==========================================
   12. ABOUT SECTION
   ========================================== */
.about {
  position: relative;
  overflow: hidden;
}

.about-image {
  position: relative;
  padding: 10px;
}

.about-image img {
  border: 4px solid rgba(255, 255, 255, 0.15);
}

.experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--bg-gold-gradient);
  color: var(--primary-navy);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.experience-badge .number {
  font-size: 26px;
  font-weight: 900;
  font-family: var(--font-headline);
  line-height: 1;
}

.experience-badge .text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-accent {
  background-color: rgba(245, 158, 11, 0.2) !important;
  color: var(--accent-gold) !important;
}

.about-content h2 {
  font-size: 30px;
  margin-top: 12px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .about-content h2 { font-size: 34px; }
}

.about-content p {
  color: rgba(248, 250, 252, 0.8);
  margin-bottom: 20px;
  font-size: 15px;
}

.about-content strong {
  color: var(--accent-gold);
}

.icon-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

.icon-feature-item {
  display: flex;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-gold);
}

.feature-icon {
  color: var(--accent-gold);
  font-size: 28px !important;
  flex-shrink: 0;
}

.icon-feature-item h5 {
  font-size: 16px;
  margin-bottom: 4px;
}

.icon-feature-item p {
  color: rgba(248, 250, 252, 0.7);
  margin-bottom: 0;
  font-size: 13px;
}

/* ==========================================
   13. CONTACT SECTION
   ========================================== */
.contact {
  background-color: var(--bg-white);
}

.contact-card {
  background-color: var(--bg-light);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all var(--transition-fast);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px !important;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-card-icon.text-green {
  color: var(--color-green);
  background-color: rgba(37, 211, 102, 0.08);
}

.contact-card-icon.text-blue {
  color: var(--accent-blue);
  background-color: rgba(59, 130, 246, 0.08);
}

.contact-card-info {
  display: flex;
  flex-direction: column;
}

.contact-card-info .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.contact-card-info .value {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-headline);
  margin: 2px 0;
}

.contact-card-info .value-text {
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  margin: 2px 0;
}

.contact-card-info .desc {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-form-wrapper {
  background-color: var(--bg-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.form-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.wp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  font-size: 14px;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Google Map Container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.map-placeholder {
  position: absolute;
  inset: 0;
  background: var(--bg-navy-gradient);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding: 24px;
}

.map-icon {
  font-size: 40px !important;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.map-placeholder h3 {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 6px;
}

.map-placeholder p {
  color: rgba(248, 250, 252, 0.8);
  font-size: 13px;
  margin-bottom: 16px;
}

/* ==========================================
   14. FOOTER
   ========================================== */
.main-footer {
  background-color: var(--primary-navy);
  color: rgba(248, 250, 252, 0.85);
  font-size: 14px;
  border-top: 3px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 40px;
}

@media (min-width: 576px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.footer-about {
  font-size: 13px;
  line-height: 1.6;
}

.footer-grid h4 {
  color: var(--accent-gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-grid h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links ul, .footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover, .footer-services a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-links a, .footer-services a {
  transition: all var(--transition-fast);
}

.footer-contact p {
  margin-bottom: 12px;
}

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

/* Footer Bottom */
.footer-bottom {
  background-color: #0b1329;
  padding: 24px 0;
  border-top: 1px solid rgba(248, 250, 252, 0.05);
  font-size: 12px;
  color: rgba(248, 250, 252, 0.5);
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ==========================================
   15. FLOATING ACTIONS & MOBILES
   ========================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--bg-white);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.08) translateY(-2px);
}

.float-wa {
  background-color: var(--color-green);
}

.float-wa:hover {
  background-color: var(--color-green-hover);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

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

.float-phone:hover {
  background-color: #2563eb;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

/* Hide phone icon floating on large screens if needed, but useful on mobile */
@media (min-width: 768px) {
  /* keep both as it's quick contact */
}

/* ==========================================
   16. SCROLL ANIMATION SYSTEM
   ========================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
