/* ==========================================================================
   Ziva Courier & Cargo - Main Stylesheet
   Theme: High-Trust White Background with Royal Blue & Express Orange Accents
   Google Ads Policy Optimized & Mobile Responsive
   ========================================================================== */

:root {
  --primary-color: #0b4f9c;
  --primary-dark: #073467;
  --primary-light: #eaf2fc;
  --secondary-color: #ff6a00;
  --secondary-hover: #e55c00;
  --accent-green: #10b981;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  --border-color: #e2e8f0;
  --border-light: #edf2f7;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(11, 79, 156, 0.08);
  --shadow-lg: 0 10px 25px rgba(11, 79, 156, 0.12);
  --shadow-hover: 0 14px 30px rgba(11, 79, 156, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

/* ==========================================================================
   Top Notification / Contact Bar
   ========================================================================== */
.top-bar {
  background: #072a53;
  color: #ffffff;
  font-size: 0.86rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 18px;
}

.top-bar a:hover {
  color: #ff9800;
}

.top-bar .badge-highlight {
  background: var(--secondary-color);
  color: #fff;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Main Navbar & Large Logo Styling
   ========================================================================== */
.navbar-custom {
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1030;
  border-bottom: 1px solid var(--border-color);
}

.navbar-brand-logo {
  height: 68px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .navbar-brand-logo {
    height: 52px;
    max-width: 240px;
  }
}

.navbar-custom .nav-link {
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 16px !important;
  font-size: 0.98rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.nav-cta-btn {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
  color: #ffffff !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 106, 0, 0.4);
  background: var(--secondary-hover) !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #edf4fc 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 79, 156, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid #c7dcf7;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.2;
  color: #072a53;
  margin-bottom: 18px;
}

.hero-title span {
  color: var(--secondary-color);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e3a8a;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  border: 1px solid var(--border-color);
}

.hero-feat-item i {
  color: var(--secondary-color);
}

/* Hero Quick Booking Card */
.hero-booking-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #dbeafe;
  position: relative;
}

.hero-booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px 4px 0 0;
}

.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: #374151;
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(11, 79, 156, 0.12);
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #ffffff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(11, 79, 156, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #073467, #041f3f);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 79, 156, 0.35);
}

.btn-secondary-custom {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
  color: #ffffff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary-custom:hover {
  background: var(--secondary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 106, 0, 0.35);
}

.btn-outline-custom {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  background: transparent;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--primary-color);
  color: #ffffff;
}

/* ==========================================================================
   Rate Cards Section (Styled matching reference image)
   ========================================================================== */
.rate-section {
  padding: 65px 0;
  background-color: #ffffff;
}

.section-tag {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 35px;
}

.rate-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px 16px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.rate-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #bfdbfe;
}

.country-flag-wrap {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 2px solid #ffffff;
}

.country-flag-wrap img,
.country-flag-wrap .flag-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rate-card .country-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 14px;
}

.rate-card .price-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.22rem;
  font-weight: 800;
  color: #0284c7;
  background: #f0f9ff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid #bae6fd;
}

.rate-card .price-row i {
  font-size: 1.05rem;
}

.rate-card .disclaimer-text {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 14px;
}

.rate-card .btn-card-quote {
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  color: var(--primary-color);
  border: 1px solid #cbd5e1;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.rate-card .btn-card-quote:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

/* Search Box on Rates */
.rates-search-box {
  max-width: 500px;
  margin: 0 auto 35px;
  position: relative;
}

.rates-search-box input {
  padding: 12px 20px 12px 48px;
  border-radius: var(--radius-full);
  border: 2px solid #cbd5e1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.rates-search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.1rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  padding: 70px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #93c5fd;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.service-badge-list span {
  font-size: 0.82rem;
  background: #f0f9ff;
  color: #0369a1;
  border: 1px solid #bae6fd;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.service-badge-list span i {
  color: #16a34a;
  font-size: 0.75rem;
}

/* ==========================================================================
   Why Choose Us & Process Section
   ========================================================================== */
.why-choose-section {
  padding: 70px 0;
  background: #ffffff;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #ecfdf5;
  color: #059669;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid #a7f3d0;
}

.feature-box h5 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Process steps */
.process-card {
  text-align: center;
  padding: 24px 18px;
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 10px rgba(11, 79, 156, 0.25);
}

.process-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ==========================================================================
   Vertical Storefront Showcase (Zero-Crop Display)
   ========================================================================== */
.storefront-feature-wrap {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #bfdbfe;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.storefront-vertical-box {
  background: #f8fafc;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.storefront-vertical-box img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  object-fit: contain; /* Ensures zero cropping */
}

/* ==========================================================================
   Office & Infrastructure Gallery
   ========================================================================== */
.gallery-section {
  padding: 65px 0;
  background: var(--bg-light);
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
}

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

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

.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.05);
}

.gallery-caption {
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #334155;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   Owner Profile Card
   ========================================================================== */
.owner-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid #bfdbfe;
  box-shadow: var(--shadow-md);
}

.owner-photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  margin: 0 auto 18px;
}

.owner-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Trust & Google Ads Transparency Badges
   ========================================================================== */
.trust-strip {
  background: #ffffff;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item i {
  font-size: 2rem;
  color: var(--primary-color);
}

.trust-item h6 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.98rem;
}

.trust-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Page Header (For Inner Pages)
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, #072a53 0%, #0b4f9c 100%);
  color: #ffffff;
  padding: 48px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.05rem;
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb-custom {
  display: inline-flex;
  gap: 8px;
  font-size: 0.85rem;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.breadcrumb-custom a {
  color: #e2e8f0;
}

.breadcrumb-custom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Contact Cards & Form
   ========================================================================== */
.contact-info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.contact-info-card.whatsapp-card .contact-icon {
  background: #dcfce7;
  color: #16a34a;
}

.contact-info-card.delivery-card .contact-icon {
  background: #ffedd5;
  color: #ea580c;
}

.contact-info-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card a {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-color);
}

.contact-info-card a:hover {
  color: var(--secondary-color);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Calculator Section
   ========================================================================== */
.calc-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #dbeafe;
}

.calc-result-box {
  background: #f0fdf4;
  border: 1.5px dashed #86efac;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.calc-result-box .estimated-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #15803d;
}

/* ==========================================================================
   Prohibited Items Section
   ========================================================================== */
.prohibited-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #991b1b;
  font-weight: 600;
  font-size: 0.92rem;
}

.prohibited-card i {
  font-size: 1.4rem;
  color: #dc2626;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-main {
  background: #072242;
  color: #cbd5e1;
  padding: 60px 0 25px;
  border-top: 4px solid var(--secondary-color);
}

.footer-main h5 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-main h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 45px;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-bottom a {
  color: #94a3b8;
  margin: 0 8px;
}

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

/* ==========================================================================
   Sticky Bottom CTA Bar for Mobile Conversions
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 8px 12px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1040;
  border-top: 1px solid #e2e8f0;
}

.mobile-sticky-btn {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-mobile-call {
  background: var(--primary-color);
  color: #ffffff;
}

.btn-mobile-whatsapp {
  background: #25d366;
  color: #ffffff;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    gap: 10px;
  }
  body {
    padding-bottom: 65px;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .top-bar {
    display: none;
  }
  .navbar-brand-logo {
    height: 46px;
    max-width: 220px;
  }
  .floating-whatsapp {
    bottom: 70px;
    right: 15px;
    width: 48px;
    height: 48px;
    font-size: 26px;
  }
}

/* Floating WhatsApp Quick Action Button */
.floating-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 25px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1025;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

/* Modal Styling */
.modal-content {
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 18px 24px;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}
