/*
Theme Name: Ferrari Laundry Kuwait
Theme URI: http://farrarilaundrykw.com
Author: Antigravity AI
Author URI: https://antigravity.ai
Description: Official Ferrari Laundry Kuwait theme - pixel-perfect match to brand reference design. Navy/Red/White scheme, hero with Kuwait skyline delivery van, 6 services, subscription plans.
Version: 3.0.0
Text Domain: ferrari-laundry
*/

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

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  --navy:       #031738;
  --navy-deep:  #020d22;
  --navy-mid:   #0a2550;
  --red:        #d90429;
  --red-hover:  #b5001e;
  --blue-light: #e8f4fd;
  --blue-sky:   #cce9ff;
  --white:      #ffffff;
  --gray-bg:    #f5f8fc;
  --gray-line:  #e2e8f0;
  --text-dark:  #0f172a;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 20px rgba(3,23,56,0.10);
  --shadow-lg:  0 12px 40px rgba(3,23,56,0.15);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:9999px;
  --transition: all 0.25s ease;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }

/* ========================================
   TOP BAR
======================================== */
.top-bar {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 0;
  letter-spacing: 0.02em;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.top-bar-left { display: flex; align-items: center; gap: 6px; }
.top-bar-left .flag-text { opacity: 0.95; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-right a {
  color: rgba(255,255,255,0.88);
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500;
  transition: var(--transition);
}
.top-bar-right a:hover { color: #fff; }
.top-bar-divider { color: rgba(255,255,255,0.3); }

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.12);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
}
.lang-btn {
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  line-height: 1;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(217,4,41,0.3);
}
.lang-sep {
  color: rgba(255,255,255,0.3);
  font-size: 10px;
}

/* RTL Support for Arabic Mode */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .site-header .header-inner,
[dir="rtl"] .top-bar .container {
  direction: rtl;
}
[dir="rtl"] .main-nav a.active::after {
  left: 14px; right: 14px;
}
[dir="rtl"] .hero-h1,
[dir="rtl"] .hero-sub,
[dir="rtl"] .section-head h2,
[dir="rtl"] .plan-card,
[dir="rtl"] .driver-card {
  text-align: right;
}
[dir="rtl"] .plan-features li::before {
  content: '✓';
  margin-left: 7px;
  margin-right: 0;
}

/* ========================================
   HEADER / NAVBAR
======================================== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  gap: 20px;
}
.site-logo img { height: 60px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: var(--red); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: 13px !important;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(217,4,41,0.35);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--red-hover) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(217,4,41,0.45);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px;
  font-size: 13px; font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer; transition: var(--transition);
  letter-spacing: 0.03em;
}
.btn-red {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 14px rgba(217,4,41,0.3);
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(217,4,41,0.4); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline-navy {
  background: var(--white); color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
  background: linear-gradient(160deg, #ddeeff 0%, #f0f7ff 45%, #ffffff 100%);
  padding: 50px 0 0;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.8;
}
.hero-h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.hero-h1 .red-line { color: var(--red); display: block; }
.hero-sub {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 420px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.hero-badge {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-line);
}
.hero-badge-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.hero-badge-text { font-size: 11px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.hero-cta { display: flex; align-items: center; gap: 12px; }
.hero-img-col {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-img-col img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(3,23,56,0.18));
}

/* ========================================
   SECTION COMMON
======================================== */
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: 32px; font-weight: 800; color: var(--navy); }
.underline-word {
  position: relative; display: inline-block;
}
.underline-word::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 3px; background: var(--red);
  border-radius: 2px;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
  padding: 70px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 24px 16px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #b3d4f5;
}
.service-img {
  width: 80px; height: 65px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.service-icon-box {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
}
.service-card h3 {
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 11px; color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}
.svc-link {
  font-size: 11px; font-weight: 700;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 3px;
}
.svc-link:hover { color: var(--red-hover); }

/* ========================================
   WHY CHOOSE US (NAVY BANNER)
======================================== */
.why-banner {
  background: var(--navy);
  padding: 42px 0;
}
.why-inner { display: flex; flex-direction: column; align-items: center; }
.why-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}
.why-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.10);
}
.why-item:last-child { border-right: none; }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 12px;
}
.why-item h4 {
  font-size: 12px; font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ========================================
   OFFER SECTION
======================================== */
.offer-section { padding: 60px 0; background: var(--gray-bg); }
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 36px 44px;
  overflow: hidden;
  position: relative;
}
.offer-text-col {}
.offer-badge {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy);
  display: block; margin-bottom: 8px;
}
.offer-amount {
  font-size: 52px; font-weight: 900;
  color: var(--red); line-height: 1;
  margin-bottom: 4px;
}
.offer-desc {
  font-size: 16px; font-weight: 700;
  color: var(--navy);
}
.offer-img-col {
  display: flex; align-items: center; justify-content: center;
}
.offer-img-col img {
  width: 160px; height: 130px; object-fit: contain;
}
.offer-action-col { text-align: center; }
.offer-code-label {
  font-size: 11px; font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}
.offer-code-box {
  background: var(--red);
  color: var(--white);
  font-size: 20px; font-weight: 900;
  letter-spacing: 0.06em;
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  display: inline-block;
}
.offer-valid { font-size: 11px; color: var(--text-light); margin-top: 8px; }

/* Service Filter Tabs */
.service-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}
.tab-btn {
  background: var(--gray-bg);
  border: 1.5px solid var(--gray-line);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217,4,41,0.3);
}

.tab-pane {
  display: none;
}
.tab-pane.active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.svc-item-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
}
.svc-item-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.svc-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.svc-item-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.svc-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.svc-item-desc {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}
.svc-item-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-line);
  padding-top: 10px;
}
.svc-price-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
}

/* FAQ Accordion Styles */
.faq-section { padding: 80px 0; background: var(--gray-bg); }
.faq-accordion { max-width: 840px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--navy); }
.faq-item.active { border-color: var(--red); box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 18px 24px;
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none;
}
.faq-toggle-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--navy);
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-toggle-icon {
  background: var(--red); color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-size: 13px; color: var(--text-mid); line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* Testimonial Cards */
.testimonials-section { padding: 80px 0; background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; }
.testimonial-quote { font-size: 13px; color: var(--text-dark); line-height: 1.65; font-style: italic; margin-bottom: 18px; }
.testimonial-user { display: flex; align-items: center; gap: 12px; }
.user-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.user-name { font-size: 14px; font-weight: 800; color: var(--navy); }
.user-area { font-size: 11px; color: var(--text-light); }

/* Location Section */
.location-section { padding: 80px 0; background: var(--gray-bg); }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: center; }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}

/* ========================================
   ABOUT US PAGE STYLES
======================================== */
.about-hero {
  background: linear-gradient(180deg, #031738 0%, #020d22 100%);
  color: var(--white);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,23,56,0.92) 0%, rgba(3,23,56,0.7) 100%);
}
.about-hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.about-hero-tag {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.about-hero-h1 {
  font-size: 42px; font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.about-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* Story Section */
.story-section { padding: 80px 0; background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.story-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-line);
}
.story-img-box img {
  width: 100%; height: 380px;
  object-fit: cover;
}
.story-content h2 {
  font-size: 28px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.story-content p {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.story-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.story-feature-pill {
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  transition: var(--transition);
}
.story-feature-pill:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}
.story-feature-icon {
  width: 36px; height: 36px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin: 0 auto 8px;
}
.story-feature-title { font-size: 11px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.story-feature-desc { font-size: 10px; color: var(--text-light); line-height: 1.3; }

/* Mission Vision Section */
.mission-section { padding: 80px 0; background: var(--gray-bg); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-line);
  padding: 36px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.mission-icon-box {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}
.mission-card h3 {
  font-size: 18px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.mission-card p {
  font-size: 12px; color: var(--text-mid);
  line-height: 1.65;
}

/* Meet The Team Section */
.team-section { padding: 80px 0; background: var(--white); }
.team-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 36px;
  align-items: center;
}
.team-intro p {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-line);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.team-card-img {
  width: 100%; height: 180px;
  object-fit: cover;
}
.team-card-body { padding: 14px 10px; }
.team-card-name { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.team-card-role { font-size: 10px; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.05em; }

/* Responsive About Us */
@media (max-width: 992px) {
  .story-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .team-wrapper { grid-template-columns: 1fr; }
  .story-features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .about-hero-h1 { font-size: 28px; }
  .story-features-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */
.steps-section { padding: 70px 0; background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gray-line) 0, var(--gray-line) 8px, transparent 8px, transparent 18px);
  z-index: 0;
}
.step-card {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(3,23,56,0.25);
}
.step-icon-wrap {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 14px;
}
.step-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-card p { font-size: 12px; color: var(--text-light); line-height: 1.55; }

/* ========================================
   SUBSCRIPTION PLANS
======================================== */
.plans-section { padding: 70px 0; background: var(--gray-bg); }
.plans-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.15fr;
  gap: 18px;
  align-items: stretch;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-line);
  padding: 30px 22px 24px;
  text-align: left;
  position: relative;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.plan-card.popular {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(217,4,41,0.13);
}
.plan-popular-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.plan-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.plan-card.popular .plan-icon { background: rgba(217,4,41,0.08); }
.plan-name {
  font-size: 13px; font-weight: 800;
  color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.plan-card.popular .plan-name { color: var(--red); }
.plan-price {
  font-size: 24px; font-weight: 900;
  color: var(--navy);
  margin: 8px 0;
}
.plan-price .per { font-size: 12px; font-weight: 500; color: var(--text-light); }
.plan-subtitle { font-size: 11px; color: var(--text-light); margin-bottom: 16px; }
.plan-features {
  font-size: 12px; color: var(--text-mid);
  margin-bottom: 20px;
  flex: 1;
}
.plan-features li {
  padding: 5px 0;
  display: flex; align-items: flex-start; gap: 7px;
  border-bottom: 1px solid var(--gray-line);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-btn {
  display: block; width: 100%;
  padding: 11px 10px;
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.04em; text-align: center;
  transition: var(--transition);
}
.plan-btn-outline {
  background: var(--white); color: var(--navy);
  border: 2px solid var(--navy);
}
.plan-btn-outline:hover { background: var(--navy); color: var(--white); }
.plan-btn-red {
  background: var(--red); color: var(--white);
  border: 2px solid var(--red);
  box-shadow: 0 4px 14px rgba(217,4,41,0.3);
}
.plan-btn-red:hover { background: var(--red-hover); }

/* Driver Card */
.driver-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.driver-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.driver-card-img {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--red);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.driver-card-logo {
  width: 80px; height: auto;
  background: white; padding: 6px; border-radius: 8px;
  margin: 0 auto 18px;
}
.driver-features {
  width: 100%;
  position: relative; z-index: 1;
}
.driver-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.driver-features li:last-child { border-bottom: none; }
.driver-features li .check-icon {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ========================================
   STATS BAR
======================================== */
.stats-bar {
  background: var(--navy);
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 28px; margin-bottom: 4px; }
.stat-value {
  font-size: 22px; font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ========================================
   AREAS SECTION
======================================== */
.areas-section { padding: 70px 0; background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr) 1fr;
  gap: 12px;
}
.area-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  min-height: 90px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-bg);
  border: 1px solid var(--gray-line);
}
.area-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.area-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: var(--transition);
}
.area-card:hover .area-card-img { opacity: 0.7; }
.area-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,23,56,0.7) 0%, transparent 55%);
}
.area-card-name {
  position: relative; z-index: 2;
  font-size: 12px; font-weight: 700;
  color: var(--white);
  text-align: center;
  padding: 10px 6px 10px;
  line-height: 1.3;
}
.area-card.area-red {
  background: var(--red);
  border-color: var(--red);
}
.area-card.area-red .area-card-name { color: var(--white); font-size: 13px; }
.area-card.area-red:hover { background: var(--red-hover); }

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1fr 1.2fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-col-title {
  font-size: 14px; font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.footer-logo img {
  height: 65px; width: auto;
  background: white;
  padding: 6px 10px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.footer-about-text { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.social-btn:hover { background: var(--red); color: white; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--red); font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer-contact li .fci { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.whatsapp-qr-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.whatsapp-qr-box .qr-code {
  width: 90px; height: 90px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--text-dark);
  margin: 0 auto 10px;
  padding: 8px;
}
.wa-scan-text { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.4);
}

/* ========================================
   MODALS
======================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(2,13,34,0.82);
  backdrop-filter: blur(6px);
  z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-head {
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--gray-line);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-head h3 { font-size: 18px; color: var(--navy); }
.modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-bg);
  font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  color: var(--text-mid);
}
.modal-close:hover { background: var(--red); color: white; }
.modal-body { padding: 24px 26px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-control {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-md);
  font-size: 13px; color: var(--text-dark);
  outline: none; font-family: inherit;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(217,4,41,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Mobile Menu Toggle Button */
.mobile-menu-btn {
  display: none;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 22px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-menu-btn:hover {
  background: var(--red);
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
======================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-col { display: none; }
  .hero-h1 { font-size: 34px; }
  .plans-wrapper { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .why-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 14px; }
  .offer-card { grid-template-columns: 1fr; text-align: center; gap: 20px; padding: 24px 20px; }
  .offer-img-col { display: none; }
}

@media (max-width: 768px) {
  /* Top Bar Mobile */
  .top-bar { font-size: 11px; padding: 6px 0; }
  .top-bar .container { flex-direction: column; gap: 6px; text-align: center; }
  .top-bar-left { justify-content: center; }
  .top-bar-right { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .top-bar-divider { display: none; }

  /* Header & Mobile Nav Drawer */
  .header-inner { height: 65px; }
  .site-logo img { height: 50px; }
  .mobile-menu-btn { display: flex; }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-top: 1px solid var(--gray-line);
    z-index: 1000;
  }
  .main-nav.mobile-active {
    display: flex;
  }
  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-line);
    font-size: 14px;
    width: 100%;
  }
  .main-nav a:last-child { border-bottom: none; }
  .nav-cta { padding: 8px 14px !important; font-size: 11px !important; }

  /* Hero Mobile */
  .hero-section { padding: 30px 0 0; }
  .hero-h1 { font-size: 26px; }
  .hero-sub { font-size: 12px; margin-bottom: 18px; }
  .hero-badges { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }

  /* Service Tabs Mobile */
  .service-tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .tab-btn { flex-shrink: 0; font-size: 12px; padding: 8px 16px; }
  .tab-pane.active { grid-template-columns: 1fr; }

  /* Why Us & Steps Mobile */
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .steps-grid::before { display: none; }

  /* Subscription Plans Mobile */
  .plans-wrapper { grid-template-columns: 1fr; }
  .plan-card { padding: 22px 18px; }
  .driver-card-img { width: 100px; height: 100px; }

  /* Stats & Areas Mobile */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 12px; }
  .stat-item:last-child { border-bottom: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Footer Mobile */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Booking Modal Mobile */
  .modal-box { max-width: 94%; border-radius: var(--radius-lg); }
  .modal-body { padding: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 24px; }
  .hero-badges { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}

/* ═══════════════════════════════════════════════════
   BLOG PAGES — GLOBAL STYLES
═══════════════════════════════════════════════════ */
.blog-hero-section { background: linear-gradient(135deg, #071B3A 0%, #0066CC 100%); padding: 70px 20px 48px; color: #fff; }
.blog-hero-inner { max-width: 880px; margin: 0 auto; }
.blog-breadcrumb { font-size: 0.84rem; margin-bottom: 20px; opacity: 0.8; }
.blog-breadcrumb a { color: #90c8f9; text-decoration: none; }
.blog-breadcrumb a:hover { text-decoration: underline; }
.blog-breadcrumb span { margin: 0 6px; }
.blog-meta-top { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; font-size: 0.83rem; }
.blog-category-tag { background: #E31B23; color: #fff; padding: 4px 14px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; }
.blog-date, .blog-read-time, .blog-words { background: rgba(255,255,255,0.14); padding: 4px 12px; border-radius: 20px; }
.blog-main-title { font-size: clamp(1.5rem, 3.8vw, 2.5rem); font-weight: 800; line-height: 1.25; margin: 0 0 18px; }
.blog-subtitle { font-size: 1.08rem; opacity: 0.88; line-height: 1.75; margin-bottom: 28px; }
.blog-author-bar { display: flex; align-items: center; gap: 14px; }
.blog-author-avatar { width: 44px; height: 44px; background: #E31B23; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 0.85rem; flex-shrink: 0; }
.blog-author-bar strong { display: block; font-size: 0.95rem; font-weight: 700; }
.blog-author-bar span { font-size: 0.78rem; opacity: 0.72; }
.blog-featured-image { width: 100%; max-height: 520px; overflow: hidden; display: block; background: #071B3A; }
.blog-featured-image img { width: 100%; height: 480px; object-fit: cover; display: block; }
.blog-img-caption { text-align: center; font-size: 0.82rem; color: #777; padding: 10px 24px; background: #f8f9fa; margin: 0; font-style: italic; border-top: 1px solid #e9ecef; }
.blog-article-wrapper { background: #fff; }
.blog-article-inner { max-width: 880px; margin: 0 auto; padding: 52px 28px 64px; }
.blog-toc-box { background: linear-gradient(135deg, #f0f7ff, #e8f4fd); border: 1px solid #bee3f8; border-left: 5px solid #0066CC; border-radius: 14px; padding: 28px 32px; margin-bottom: 44px; }
.blog-toc-title { font-size: 1.05rem; font-weight: 800; color: #071B3A; margin: 0 0 16px; }
.blog-toc-list { margin: 0; padding-left: 22px; }
.blog-toc-list li { margin-bottom: 8px; }
.blog-toc-list a { color: #0066CC; text-decoration: none; font-size: 0.93rem; }
.blog-toc-list a:hover { text-decoration: underline; }
.blog-section { margin-bottom: 52px; }
.blog-section h2 { font-size: 1.65rem; font-weight: 800; color: #071B3A; border-bottom: 3px solid #0066CC; padding-bottom: 12px; margin: 0 0 24px; line-height: 1.3; }
.blog-section h3 { font-size: 1.15rem; font-weight: 700; color: #0066CC; margin: 28px 0 12px; }
.blog-section p { font-size: 1.05rem; line-height: 1.88; color: #333; margin-bottom: 16px; }
.blog-lead { font-size: 1.12rem; font-weight: 500; color: #1a1a2e; border-left: 4px solid #E31B23; padding-left: 20px; line-height: 1.85; margin-bottom: 22px; }
.blog-list { padding-left: 24px; margin: 12px 0 22px; }
.blog-list li { font-size: 1.02rem; line-height: 1.78; color: #333; margin-bottom: 10px; }
.blog-numbered-list { padding-left: 24px; margin: 12px 0 22px; }
.blog-numbered-list li { font-size: 1.02rem; line-height: 1.78; color: #333; margin-bottom: 12px; }
.blog-inline-img { width: 100%; border-radius: 14px; margin: 28px 0 8px; display: block; box-shadow: 0 6px 28px rgba(0,0,0,0.13); }
.blog-key-point { background: #fff8e1; border: 1px solid #ffc107; border-left: 5px solid #ff9800; border-radius: 12px; padding: 18px 24px; margin: 28px 0; font-size: 0.97rem; color: #5f3700; line-height: 1.72; }
.blog-comparison-table { overflow-x: auto; margin: 22px 0; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.blog-comparison-table table { width: 100%; border-collapse: collapse; font-size: 0.93rem; min-width: 500px; }
.blog-comparison-table th { background: #071B3A; color: #fff; padding: 13px 16px; text-align: left; font-weight: 700; }
.blog-comparison-table td { padding: 12px 16px; border-bottom: 1px solid #e9ecef; vertical-align: top; line-height: 1.6; }
.blog-comparison-table tr:nth-child(even) td { background: #f8f9fa; }
.blog-comparison-table tr:last-child td { border-bottom: none; }
.blog-stain-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 26px; }
.stain-card { background: linear-gradient(135deg, #f8f9ff, #eef2ff); border: 1px solid #e0e7ff; border-radius: 16px; padding: 26px 22px; transition: transform 0.2s, box-shadow 0.2s; }
.stain-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,102,204,0.12); }
.stain-icon { font-size: 2.2rem; margin-bottom: 12px; }
.stain-card h3 { font-size: 1rem; font-weight: 700; color: #071B3A; margin: 0 0 10px; }
.stain-card p { font-size: 0.91rem; line-height: 1.72; color: #444; margin: 0; }
.blog-rules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; margin-top: 22px; }
.rule-card { background: #fff; border: 1px solid #e9ecef; border-radius: 14px; padding: 24px 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: box-shadow 0.2s; }
.rule-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.rule-num { font-size: 2.2rem; font-weight: 800; color: #e5e7eb; margin-bottom: 8px; line-height: 1; }
.rule-card h3 { font-size: 1rem; font-weight: 700; color: #071B3A; margin: 0 0 8px; }
.rule-card p { font-size: 0.88rem; color: #555; line-height: 1.68; margin: 0; }
.blog-mistakes-list { display: flex; flex-direction: column; gap: 16px; margin-top: 22px; }
.mistake-item { display: flex; gap: 18px; align-items: flex-start; background: #fff5f5; border: 1px solid #fed7d7; border-radius: 14px; padding: 20px 24px; }
.mistake-item:hover { border-color: #fc8181; }
.mistake-num { font-size: 1.15rem; font-weight: 800; color: #c0392b; flex-shrink: 0; margin-top: 2px; }
.mistake-item h3 { font-size: 1rem; font-weight: 700; color: #071B3A; margin: 0 0 6px; }
.mistake-item p { font-size: 0.91rem; line-height: 1.72; color: #444; margin: 0; }
.blog-health-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; margin-top: 26px; }
.health-card { background: #fff; border: 1px solid #e9ecef; border-radius: 16px; padding: 28px 22px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.health-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.health-icon { font-size: 2.2rem; margin-bottom: 12px; }
.health-card h3 { font-size: 1rem; font-weight: 700; color: #071B3A; margin: 0 0 12px; }
.health-card p { font-size: 0.9rem; line-height: 1.72; color: #444; margin-bottom: 10px; }
.health-card p:last-child { margin: 0; }
.blog-carpet-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; margin-top: 22px; }
.carpet-type-card { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 1px solid #86efac; border-radius: 14px; padding: 22px 20px; transition: transform 0.2s; }
.carpet-type-card:hover { transform: translateY(-2px); }
.carpet-type-card h3 { font-size: 0.98rem; font-weight: 700; color: #064e3b; margin: 0 0 10px; }
.carpet-type-card p { font-size: 0.88rem; line-height: 1.72; color: #1a5c2c; margin: 0; }
.blog-season-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 22px; }
.season-card { padding: 28px 24px; border-radius: 16px; }
.summer-card { background: linear-gradient(135deg, #fff3cd, #ffd980); border: 1px solid #ffc107; }
.winter-card { background: linear-gradient(135deg, #d1ecf1, #a8d8e8); border: 1px solid #0dcaf0; }
.season-card h3 { font-size: 1.08rem; font-weight: 800; margin: 0 0 12px; color: #071B3A; }
.season-card > p { font-size: 0.92rem; margin-bottom: 12px; color: #444; }
.season-card ul { padding-left: 18px; margin: 0; }
.season-card li { font-size: 0.9rem; line-height: 1.68; color: #333; margin-bottom: 7px; }
.blog-cta-box { background: linear-gradient(135deg, #071B3A, #0066CC); border-radius: 20px; padding: 40px 36px; text-align: center; margin: 36px 0; color: #fff; box-shadow: 0 8px 32px rgba(0,102,204,0.28); }
.blog-cta-box h3 { font-size: 1.45rem; font-weight: 800; margin: 0 0 10px; line-height: 1.3; color: #fff; }
.blog-cta-box p { opacity: 0.88; margin-bottom: 24px; font-size: 1rem; color: #fff; }
.blog-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.blog-cta-btn { background: #E31B23; color: #fff !important; padding: 14px 30px; border-radius: 30px; font-weight: 700; text-decoration: none; font-size: 0.97rem; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 14px rgba(227,27,35,0.35); }
.blog-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(227,27,35,0.45); color: #fff !important; }
.blog-cta-btn-outline { background: transparent !important; border: 2px solid rgba(255,255,255,0.7); box-shadow: none !important; }
.blog-cta-btn-outline:hover { background: rgba(255,255,255,0.12) !important; box-shadow: none !important; }
.blog-faq-list { margin-top: 12px; }
.blog-faq-item { border-bottom: 1px solid #e9ecef; padding: 24px 0; }
.blog-faq-item:last-child { border-bottom: none; }
.blog-faq-item h3 { font-size: 1.04rem; font-weight: 700; color: #071B3A; margin: 0 0 10px; line-height: 1.4; }
.blog-faq-item p { font-size: 0.97rem; line-height: 1.78; color: #444; margin: 0; }
.blog-conclusion { background: linear-gradient(135deg, #f8f9fa, #eef2ff); border-radius: 20px; padding: 40px; border: 1px solid #e0e7ff; }
.blog-conclusion h2 { border-bottom-color: #E31B23; }
.blog-related { margin-top: 52px; padding-top: 44px; border-top: 2px solid #e9ecef; }
.blog-related h2 { font-size: 1.5rem; font-weight: 800; color: #071B3A; margin: 0 0 26px; }
.related-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.related-post-card { background: linear-gradient(135deg, #f8f9ff, #eef2ff); border: 1px solid #e0e7ff; border-radius: 16px; padding: 26px 22px; text-decoration: none; transition: box-shadow 0.25s, transform 0.25s; display: block; }
.related-post-card:hover { box-shadow: 0 10px 28px rgba(0,102,204,0.14); transform: translateY(-4px); }
.related-post-icon { font-size: 2rem; margin-bottom: 14px; }
.related-post-card h3 { font-size: 0.96rem; font-weight: 700; color: #071B3A; margin: 0 0 8px; line-height: 1.45; }
.related-post-card p { font-size: 0.86rem; color: #0066CC; margin: 0; font-weight: 600; }
@media (max-width: 768px) {
  .blog-toc-list { columns: 1; }
  .blog-season-grid { grid-template-columns: 1fr; }
  .blog-article-inner { padding: 32px 18px 48px; }
  .blog-conclusion { padding: 28px 22px; }
  .blog-cta-box { padding: 30px 22px; }
}
@media (max-width: 560px) {
  .blog-stain-grid, .blog-rules-grid, .blog-health-grid, .blog-carpet-type-grid, .related-posts-grid { grid-template-columns: 1fr; }
  .blog-section h2 { font-size: 1.35rem; }
  .blog-main-title { font-size: 1.5rem; }
  .mistake-item { flex-direction: column; gap: 8px; }
  .blog-cta-btns { flex-direction: column; align-items: stretch; }
  .blog-cta-btn { text-align: center; }
}

/* =========================================================
   CONTACT US PAGE STYLES — Exact Reference Design
========================================================= */

/* Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #05142b 0%, #071B3A 40%, #0047a5 85%, #0066CC 100%);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0, 102, 204, 0.25), transparent 60%);
  pointer-events: none;
}
.contact-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.contact-tag {
  display: inline-block;
  color: #E31B23;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.contact-title .text-red {
  color: #E31B23;
}
.contact-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
  max-width: 480px;
}
.contact-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-contact-wa {
  background: #E31B23;
  color: #ffffff !important;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(227, 27, 35, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-contact-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(227, 27, 35, 0.55);
}
.btn-contact-call {
  background: rgba(7, 27, 58, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff !important;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
}
.btn-contact-call:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.contact-hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.contact-hero-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

/* 5 Info Cards Row */
.contact-cards-section {
  padding: 40px 0;
  background: #f8fafc;
  margin-top: -25px;
  position: relative;
  z-index: 10;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.contact-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(7, 27, 58, 0.05);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(7, 27, 58, 0.1);
  border-color: #cbd5e1;
}
.card-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #071B3A;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.card-info-title {
  font-size: 15px;
  font-weight: 800;
  color: #071B3A;
  margin: 0 0 8px;
}
.card-info-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
  margin-bottom: 12px;
  flex-grow: 1;
}
.card-red-sub {
  color: #E31B23;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
}
.card-link {
  color: #E31B23;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover {
  text-decoration: underline;
}

/* Form & Map Section */
.contact-main-section {
  padding: 60px 0 70px;
  background: #ffffff;
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Form Box */
.contact-form-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.sub-label {
  color: #E31B23;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.form-title {
  font-size: 26px;
  font-weight: 800;
  color: #071B3A;
  margin: 0 0 8px;
}
.form-sub {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.input-with-icon {
  position: relative;
}
.input-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #94a3b8;
  pointer-events: none;
}
.form-input-custom {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 13px;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input-custom:focus {
  border-color: #0066CC;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}
.form-textarea-custom {
  width: 100%;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 13px;
  color: #1e293b;
  outline: none;
  resize: vertical;
  min-height: 110px;
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-textarea-custom:focus {
  border-color: #0066CC;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.12);
}
.btn-send-msg {
  width: 100%;
  height: 50px;
  background: #E31B23;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(227, 27, 35, 0.3);
  transition: background 0.2s, transform 0.2s;
}
.btn-send-msg:hover {
  background: #cc151d;
  transform: translateY(-1px);
}

/* Map Box */
.contact-map-wrapper {
  position: relative;
  height: 100%;
  min-height: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}
.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: none;
  display: block;
}
.map-floating-box {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(7, 27, 58, 0.15);
  border: 1px solid #e2e8f0;
  z-index: 5;
}
.map-box-title {
  font-size: 16px;
  font-weight: 800;
  color: #071B3A;
  margin: 0 0 6px;
}
.map-box-desc {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.4;
}
.btn-get-directions {
  background: #071B3A;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.btn-get-directions:hover {
  background: #0066CC;
}

/* FAQ Section */
.contact-faq-section {
  padding: 70px 0;
  background: #f8fafc;
}
.sub-label-center {
  color: #E31B23;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-bottom: 8px;
}
.faq-title-center {
  font-size: 28px;
  font-weight: 800;
  color: #071B3A;
  text-align: center;
  margin: 0 0 36px;
}
.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
  }
  .contact-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-contact-wa, .btn-contact-call {
    justify-content: center;
  }
}

/* ==========================================================================
   GLOBAL BULLETPROOF MOBILE RESPONSIVE TABLES
   ========================================================================== */
.table-responsive-wrapper,
.table-responsive,
.blog-content-container div[style*="overflow-x"],
.blog-detail-view div[style*="overflow-x"] {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  margin: 25px 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
  border: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
}

/* Custom scrollbar for tables */
.table-responsive-wrapper::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar,
.blog-content-container div[style*="overflow-x"]::-webkit-scrollbar,
.blog-detail-view div[style*="overflow-x"]::-webkit-scrollbar {
  height: 6px;
}
.table-responsive-wrapper::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb,
.blog-content-container div[style*="overflow-x"]::-webkit-scrollbar-thumb,
.blog-detail-view div[style*="overflow-x"]::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.table-responsive-wrapper::-webkit-scrollbar-thumb:hover,
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .blog-content-container,
  .blog-detail-view article,
  main article {
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important;
  }
  
  .table-responsive-wrapper table,
  .table-responsive table,
  .blog-content-container table,
  .blog-detail-view table {
    min-width: 580px !important; /* Prevents text crunching on phones */
    font-size: 13.5px !important;
  }
  
  .table-responsive-wrapper th,
  .table-responsive-wrapper td,
  .table-responsive th,
  .table-responsive td,
  .blog-content-container th,
  .blog-content-container td,
  .blog-detail-view th,
  .blog-detail-view td {
    padding: 10px 12px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
  }

  /* Sticky first column on mobile for easy reference if wide */
  [dir="rtl"] .table-responsive-wrapper th:first-child,
  [dir="rtl"] .table-responsive-wrapper td:first-child,
  [dir="rtl"] .table-responsive th:first-child,
  [dir="rtl"] .table-responsive td:first-child {
    font-weight: 700;
  }
}

/* ========================================================
   FEATURE 1: E-E-A-T TRUST & READING TIME HEADER BAR
   ======================================================== */
.fl-eeat-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 18px;
  margin: 20px 0 30px;
  font-size: 13.5px;
  color: #475569;
}
.fl-eeat-bar .fl-eeat-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.fl-eeat-bar .fl-badge-pill {
  background: #047857;
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
}

/* ========================================================
   FEATURE 2: INTERACTIVE TABLE OF CONTENTS (TOC)
   ======================================================== */
.fl-toc-box {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #cbd5e1;
  border-right: 5px solid #031738;
  border-radius: 14px;
  padding: 22px 26px;
  margin: 30px 0 45px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.fl-toc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.fl-toc-title {
  font-size: 18px;
  font-weight: 800;
  color: #031738;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fl-toc-toggle {
  font-size: 13px;
  font-weight: 700;
  color: #E31B23;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 4px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.fl-toc-list {
  margin: 16px 0 0;
  padding: 0 20px 0 0;
  list-style: decimal;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px 24px;
}
.fl-toc-list li a {
  color: #1e293b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.2s ease;
}
.fl-toc-list li a:hover {
  color: #E31B23;
  text-decoration: underline;
}

/* ========================================================
   FEATURE 3: INTERACTIVE LIVE PRICING CALCULATOR WIDGET
   ======================================================== */
.fl-price-calc {
  background: #ffffff;
  border: 2px solid #031738;
  border-radius: 16px;
  padding: 28px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(3,23,56,0.08);
}
.fl-calc-head {
  text-align: center;
  margin-bottom: 24px;
}
.fl-calc-head h3 {
  font-size: 22px;
  color: #031738;
  font-weight: 900;
  margin: 0 0 6px;
}
.fl-calc-head p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}
.fl-calc-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.fl-calc-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fl-calc-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fl-calc-item-name {
  font-weight: 700;
  color: #031738;
  font-size: 14px;
}
.fl-calc-item-rate {
  font-size: 12px;
  color: #E31B23;
  font-weight: 800;
}
.fl-calc-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 4px;
}
.fl-calc-btn {
  width: 32px;
  height: 32px;
  background: #031738;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.fl-calc-btn:hover {
  background: #E31B23;
}
.fl-calc-val {
  font-weight: 800;
  font-size: 16px;
  color: #031738;
  min-width: 30px;
  text-align: center;
}
.fl-calc-summary {
  background: linear-gradient(135deg, #031738 0%, #0b2d64 100%);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.fl-calc-total-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fl-calc-total-label {
  font-size: 14px;
  color: #cbd5e1;
}
.fl-calc-total-amount {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
}
.fl-calc-total-amount span {
  font-size: 16px;
  color: #fca5a5;
  font-weight: 700;
}

/* ========================================================
   FEATURE 4: INTERACTIVE BEFORE / AFTER SLIDER
   ======================================================== */
.fl-ba-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  user-select: none;
  background: #000;
}
.fl-ba-slider .fl-ba-img-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
}
.fl-ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fl-ba-slider .fl-ba-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 3px solid #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.4);
}
.fl-ba-slider .fl-ba-img-after img {
  width: 800px;
  max-width: none;
}
.fl-ba-badge {
  position: absolute;
  top: 15px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.fl-ba-badge.before { right: 15px; background: rgba(3,23,56,0.85); }
.fl-ba-badge.after { left: 15px; background: rgba(227,27,35,0.9); }
.fl-ba-range {
  position: absolute;
  bottom: 15px;
  left: 5%;
  width: 90%;
  z-index: 10;
  cursor: pointer;
  accent-color: #E31B23;
}

/* ========================================================
   FEATURE 5: ACCORDION FAQs (<details> / <summary>)
   ======================================================== */
details.fl-faq-accordion {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-right: 4px solid #031738;
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 16px 20px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
details.fl-faq-accordion[open] {
  border-right-color: #E31B23;
  background: #f8fafc;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
details.fl-faq-accordion summary {
  font-size: 16.5px;
  font-weight: 800;
  color: #031738;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
}
details.fl-faq-accordion summary::-webkit-details-marker {
  display: none;
}
details.fl-faq-accordion summary .fl-faq-icon {
  font-size: 20px;
  font-weight: 900;
  color: #E31B23;
  transition: transform 0.25s ease;
}
details.fl-faq-accordion[open] summary .fl-faq-icon {
  transform: rotate(45deg);
}
details.fl-faq-accordion .fl-faq-ans {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
  font-size: 14.5px;
  color: #475569;
  line-height: 1.85;
}

/* ========================================================
   FEATURE 6: AREA / BLOCK COVERAGE CHIPS
   ======================================================== */
.fl-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0 25px;
}
.fl-area-chip {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ========================================================
   FEATURE 7: SMART RELATED BLOGS / SERVICES GRID
   ======================================================== */
.fl-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.fl-related-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.fl-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: #cbd5e1;
}
.fl-related-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.fl-related-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fl-related-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #031738;
  margin: 0 0 8px;
  line-height: 1.5;
}
.fl-related-card-link {
  font-size: 13px;
  font-weight: 700;
  color: #E31B23;
  margin-top: 10px;
}

/* ========================================================
   FEATURE 8: STICKY MOBILE BOTTOM BOOKING BAR
   ======================================================== */
.fl-sticky-booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(3, 23, 56, 0.96);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  border-top: 2px solid #E31B23;
  transform: translateY(120%);
  transition: transform 0.3s ease;
}
.fl-sticky-booking-bar.visible {
  transform: translateY(0);
}
.fl-sticky-bar-text {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.fl-sticky-bar-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
}
.fl-sticky-bar-sub {
  font-size: 11px;
  color: #94a3b8;
}
.fl-sticky-bar-btn {
  background: #E31B23;
  color: #ffffff;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(227,27,35,0.4);
  white-space: nowrap;
}

/* ========================================================
   FEATURE 9: WEATHER & DUST STORM SMART ALERT BANNER
   ======================================================== */
.fl-weather-alert {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-right: 5px solid #d97706;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 25px 0 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.fl-weather-alert-content {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: right;
}
.fl-weather-alert-icon {
  font-size: 28px;
  line-height: 1;
}
.fl-weather-alert-title {
  font-weight: 800;
  font-size: 15px;
  color: #92400e;
  margin-bottom: 2px;
}
.fl-weather-alert-desc {
  font-size: 13.5px;
  color: #78350f;
  margin: 0;
}
.fl-weather-alert-btn {
  background: #d97706;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.fl-weather-alert-btn:hover {
  background: #b45309;
}

/* ========================================================
   FEATURE 10: INFOGRAPHIC FABRIC CARE SYMBOLS GUIDE
   ======================================================== */
.fl-fabric-guide-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  margin: 35px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.fl-fabric-guide-head {
  text-align: center;
  margin-bottom: 20px;
}
.fl-fabric-guide-head h4 {
  color: #031738;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
}
.fl-fabric-guide-head p {
  color: #64748b;
  font-size: 13.5px;
  margin: 0;
}
.fl-fabric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}
.fl-fabric-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  transition: transform 0.2s ease;
}
.fl-fabric-item:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
}
.fl-fabric-icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.fl-fabric-name {
  font-weight: 800;
  font-size: 13px;
  color: #031738;
  margin-bottom: 3px;
}
.fl-fabric-tip {
  font-size: 11.5px;
  color: #64748b;
  line-height: 1.4;
}

/* ========================================================
   FEATURE 11: LIVE VAN TRACKING & DELIVERY STATUS BADGE
   ======================================================== */
.fl-live-van-badge {
  background: #031738;
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  margin: 20px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(3,23,56,0.15);
}
.fl-live-van-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}
.fl-live-pulse {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: fl-pulse-anim 1.8s infinite;
}
@keyframes fl-pulse-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.fl-live-van-time {
  background: #E31B23;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ========================================================
   FEATURE 12: AUDIO ARTICLE PLAYER
   ======================================================== */
.fl-audio-player {
  background: linear-gradient(135deg, #031738 0%, #1e293b 100%);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  margin: 20px 0 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(3,23,56,0.12);
}
.fl-audio-btn {
  width: 44px;
  height: 44px;
  background: #E31B23;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(227,27,35,0.4);
  transition: transform 0.2s ease;
}
.fl-audio-btn:hover {
  transform: scale(1.05);
}
.fl-audio-info {
  flex: 1;
  text-align: right;
}
.fl-audio-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.fl-audio-meta {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  justify-content: space-between;
}
.fl-audio-bar-wrapper {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  margin-top: 6px;
  overflow: hidden;
  position: relative;
}
.fl-audio-bar-fill {
  height: 100%;
  width: 0%;
  background: #E31B23;
  border-radius: 10px;
  transition: width 0.2s linear;
}

/* ========================================================
   FEATURE 13: 1-CLICK COPY PROMO CODE / COUPON BOX
   ======================================================== */
.fl-promo-box {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  border: 2px dashed #f43f5e;
  border-radius: 14px;
  padding: 22px;
  margin: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.fl-promo-content {
  text-align: right;
  flex: 1;
}
.fl-promo-badge {
  background: #E31B23;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}
.fl-promo-title {
  font-size: 16px;
  font-weight: 800;
  color: #881337;
  margin: 0 0 4px;
}
.fl-promo-desc {
  font-size: 13.5px;
  color: #9f1239;
  margin: 0;
}
.fl-promo-action {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #fecdd3;
  padding: 6px 12px;
  border-radius: 8px;
}
.fl-promo-code {
  font-family: monospace;
  font-size: 16px;
  font-weight: 900;
  color: #E31B23;
  letter-spacing: 1px;
}
.fl-promo-copy-btn {
  background: #031738;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}
.fl-promo-copy-btn:hover {
  background: #E31B23;
}






/* ==========================================================================
   2026 MODERN HOMEPAGE REDESIGN (MATCHING OFFICIAL DESIGN MOCKUP)
   ========================================================================== */

/* Global container & utilities */
.fl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.fl-text-center { text-align: center; }
.fl-text-red { color: #e31b23 !important; }

/* Top Bar */
.fl-top-bar {
  background: #031738;
  color: #cbd5e1;
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fl-top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fl-top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-top-sep {
  color: rgba(255,255,255,0.25);
  margin: 0 4px;
}
.fl-top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.fl-top-phone {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}
.fl-top-phone:hover { color: #fca5a5; }
.fl-btn-top-book {
  background: #e31b23;
  color: #ffffff;
  border: none;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.fl-btn-top-book:hover {
  background: #cc151d;
  transform: translateY(-1px);
}

/* Site Header / Nav */
.fl-site-header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 0;
}
.fl-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fl-site-logo img {
  max-height: 48px;
  width: auto;
  display: block;
}
.fl-main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.fl-main-nav a {
  font-size: 14.5px;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.fl-main-nav a.active,
.fl-main-nav a:hover {
  color: #e31b23;
}
.fl-nav-has-children {
  position: relative;
}
.fl-caret { font-size: 11px; margin-left: 2px; }
.fl-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 10px 0;
  min-width: 200px;
  border: 1px solid #e2e8f0;
  z-index: 100;
}
.fl-nav-has-children:hover .fl-dropdown-menu {
  display: flex;
  flex-direction: column;
}
.fl-dropdown-menu a {
  padding: 8px 18px;
  font-size: 13px;
  color: #334155;
  display: block;
}
.fl-dropdown-menu a:hover {
  background: #f8fafc;
  color: #e31b23;
}
.fl-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fl-flag-circle {
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fl-header-cta {
  display: none;
}
@media (min-width: 992px) {
  .fl-header-cta { display: inline-flex; }
}

/* 1. HERO SECTION */
.fl-hero-section {
  background: linear-gradient(180deg, #edf5ff 0%, #f8fafc 100%);
  padding: 55px 0 65px;
  position: relative;
  overflow: hidden;
}
.fl-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.fl-hero-badge-tag {
  display: inline-flex;
  background: #fee2e2;
  color: #dc2626;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.fl-hero-title {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 900;
  color: #031738;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.fl-hero-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 28px;
  max-width: 520px;
}
.fl-hero-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
  max-width: 550px;
}
.fl-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  transition: all 0.2s ease;
}
.fl-pill-link:hover {
  border-color: #E31B23 !important;
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.12) !important;
  transform: translateY(-2px);
}
.fl-pill-icon { font-size: 18px; }
.fl-pill-title { font-size: 13px; font-weight: 700; color: #1e293b; }
.fl-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.fl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.fl-btn-pill {
  border-radius: 50px;
}
.fl-btn-red {
  background: #e31b23;
  color: #ffffff !important;
  border: none;
  padding: 14px 28px;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(227, 27, 35, 0.35);
}
.fl-btn-red:hover {
  background: #cc151d;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(227, 27, 35, 0.45);
}
.fl-btn-outline {
  background: #ffffff;
  color: #0f172a !important;
  border: 1.5px solid #cbd5e1;
  padding: 13px 26px;
  font-size: 14px;
}
.fl-btn-outline:hover {
  border-color: #031738;
  background: #f8fafc;
}
.fl-btn-sm {
  padding: 6px 16px;
  font-size: 12px;
}

.fl-hero-card-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(3, 23, 56, 0.12);
  border: 4px solid #ffffff;
}
.fl-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.fl-hero-floating-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(3, 23, 56, 0.92);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fl-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.3);
}

/* 2. QUICK SERVICES RIBBON */
.fl-quick-services-bar {
  background: #031738;
  padding: 35px 0;
  color: #ffffff;
}
.fl-quick-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.fl-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 12px 8px;
  border-radius: 12px;
  transition: all 0.2s;
}
.fl-quick-item:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.fl-quick-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 12px;
  transition: all 0.2s;
}
.fl-quick-item:hover .fl-quick-icon-wrap {
  border-color: #e31b23;
  background: rgba(227, 27, 35, 0.2);
  transform: scale(1.05);
}
.fl-quick-text h4 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 4px;
  color: #ffffff;
}
.fl-quick-text p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

/* 3. ABOUT US SECTION */
.fl-about-section {
  padding: 85px 0;
  background: #ffffff;
}
.fl-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 55px;
  align-items: center;
}
.fl-about-image-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.fl-about-img {
  width: 100%;
  height: auto;
  display: block;
}
.fl-section-tag {
  display: inline-block;
  color: #e31b23;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fl-section-heading {
  font-size: 34px;
  font-weight: 900;
  color: #031738;
  margin: 0 0 16px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.fl-about-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 28px;
}
.fl-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}
.fl-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
}
.fl-stat-icon { font-size: 26px; }
.fl-stat-info strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #031738;
}
.fl-stat-info span {
  font-size: 12px;
  color: #64748b;
}

/* 4. MISSION & VISION */
.fl-mission-vision-section {
  padding: 65px 0;
  background: #f8fafc;
}
.fl-mission-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.fl-mission-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}
.fl-mv-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
}
.fl-mv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.fl-icon-red { background: #fee2e2; color: #dc2626; }
.fl-icon-blue { background: #e0f2fe; color: #0284c7; }
.fl-mv-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: #031738;
  margin: 0 0 8px;
}
.fl-mv-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* 5. OUR SERVICES */
.fl-services-section {
  padding: 85px 0;
  background: #ffffff;
}
.fl-services-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: flex-start;
}
.fl-services-sub {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  margin: 15px 0 25px;
}
.fl-services-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.fl-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.fl-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-color: #e31b23;
}
.fl-service-img-wrap {
  height: 130px;
  overflow: hidden;
  background: #f1f5f9;
}
.fl-service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.fl-service-card:hover img {
  transform: scale(1.08);
}
.fl-service-info {
  padding: 12px 8px;
}
.fl-service-info h4 {
  font-size: 14px;
  font-weight: 800;
  color: #031738;
  margin: 0 0 4px;
}
.fl-service-info p {
  font-size: 11px;
  color: #64748b;
  margin: 0;
}

/* 6. PRICING SECTION */
.fl-pricing-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #edf5ff 0%, #ffffff 100%);
}
.fl-pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 25px 0 40px;
  flex-wrap: wrap;
}
.fl-pricing-tab {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}
.fl-pricing-tab.active,
.fl-pricing-tab:hover {
  background: #e31b23;
  color: #ffffff;
  border-color: #e31b23;
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.25);
}
.fl-pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.fl-plan-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.2s;
}
.fl-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.fl-popular-plan {
  border: 2px solid #e31b23;
  box-shadow: 0 8px 25px rgba(227, 27, 35, 0.12);
}
.fl-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e31b23;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.fl-plan-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.fl-plan-name {
  font-size: 20px;
  font-weight: 800;
  color: #031738;
  margin: 0 0 6px;
}
.fl-plan-pill-tag {
  display: inline-block;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 16px;
}
.fl-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.fl-plan-features li {
  font-size: 13px;
  color: #334155;
  padding: 6px 0;
  border-bottom: 1px dashed #f1f5f9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fl-check {
  color: #16a34a;
  font-weight: 800;
}
.fl-plan-price-box { margin-bottom: 20px; }
.fl-plan-price {
  font-size: 26px;
  font-weight: 900;
  color: #031738;
}
.fl-plan-unit {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}
.fl-plan-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  border: 1.5px solid #cbd5e1;
}

/* B2B CTA Strip */
.fl-b2b-cta-strip {
  margin-top: 40px;
  background: linear-gradient(135deg, #031738 0%, #0f2754 100%);
  border-radius: 16px;
  padding: 30px 36px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(3, 23, 56, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.fl-b2b-badge {
  display: inline-block;
  background: rgba(227, 27, 35, 0.2);
  border: 1px solid #e31b23;
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.fl-b2b-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
}
.fl-b2b-desc {
  color: #cbd5e1;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}
.fl-b2b-cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}
.fl-b2b-phone-btn {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.fl-b2b-phone-btn:hover {
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .fl-b2b-cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 20px;
  }
  .fl-b2b-cta-right {
    align-items: flex-start;
    width: 100%;
  }
  .fl-b2b-cta-right .fl-btn {
    width: 100%;
    text-align: center;
  }
}

/* 7. NAVY TRUST / STATS COUNTER BAR */
.fl-trust-stats-bar {
  background: #031738;
  padding: 45px 0;
  color: #ffffff;
}
.fl-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.fl-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fl-trust-icon { font-size: 32px; }
.fl-trust-num {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}
.fl-trust-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
}

/* 8. LIMITED TIME OFFER BANNER */
.fl-offer-banner-section {
  padding: 40px 0;
  background: #ffffff;
}
.fl-offer-banner-box {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border: 1px solid #7dd3fc;
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.1);
}
.fl-offer-badge {
  display: inline-block;
  background: #0284c7;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.fl-offer-title {
  font-size: 30px;
  font-weight: 900;
  color: #031738;
  margin: 0 0 14px;
}
.fl-offer-bullets {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.fl-bullet-item {
  font-size: 13px;
  font-weight: 700;
  color: #0c4a6e;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fl-check-bullet {
  color: #0284c7;
  font-weight: 900;
}
.fl-coupon-code {
  font-size: 13px;
  color: #031738;
  margin-bottom: 10px;
  text-align: center;
}
.fl-coupon-code strong {
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px dashed #0284c7;
  color: #e31b23;
  font-weight: 900;
}

/* 9. HOW IT WORKS SECTION */
.fl-how-it-works-section {
  padding: 85px 0;
  background: #ffffff;
}
.fl-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 45px;
}
.fl-step-item {
  text-align: center;
  position: relative;
  padding: 10px;
}
.fl-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #031738;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(3, 23, 56, 0.25);
}
.fl-step-title {
  font-size: 17px;
  font-weight: 800;
  color: #031738;
  margin: 0 0 8px;
}
.fl-step-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

/* 10. TESTIMONIALS SECTION */
.fl-testimonials-section {
  padding: 85px 0;
  background: #f8fafc;
}
.fl-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
  margin-top: 35px;
}
.fl-testimonial-img-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.fl-testi-photo {
  width: 100%;
  height: auto;
  display: block;
}
.fl-testimonial-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fl-testi-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}
.fl-testi-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.fl-testi-quote {
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
  font-style: italic;
  margin: 0 0 10px;
}
.fl-testi-author strong {
  display: block;
  font-size: 14px;
  color: #031738;
}
.fl-testi-author span {
  font-size: 12px;
  color: #64748b;
}

/* 11. BLOG SECTION */
.fl-blog-section {
  padding: 85px 0;
  background: #ffffff;
}
.fl-blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 35px;
}
.fl-blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.fl-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.fl-blog-thumb {
  height: 160px;
  overflow: hidden;
  background: #f1f5f9;
}
.fl-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.fl-blog-card:hover img {
  transform: scale(1.05);
}
.fl-blog-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.fl-blog-date {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fl-blog-title {
  font-size: 15px;
  font-weight: 800;
  color: #031738;
  margin: 0 0 10px;
  line-height: 1.45;
}
.fl-blog-sub-en {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  margin-top: 4px;
  line-height: 1.3;
  direction: ltr;
  text-align: left;
}
.fl-blog-excerpt {
  font-size: 12px;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 16px;
  direction: rtl;
  text-align: right;
}
.fl-blog-link {
  font-size: 13px;
  font-weight: 700;
  color: #e31b23;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 12. SITE FOOTER */
.fl-site-footer {
  background: #031738;
  color: #cbd5e1;
  padding: 70px 0 25px;
}
.fl-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.3fr;
  gap: 40px;
}
.fl-footer-logo img {
  max-height: 48px;
  width: auto;
  margin-bottom: 16px;
}
.fl-footer-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 20px;
}
.fl-footer-socials {
  display: flex;
  gap: 10px;
}
.fl-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s;
}
.fl-social-link:hover {
  background: #e31b23;
}
.fl-footer-heading {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 18px;
}
.fl-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fl-footer-links-list li {
  margin-bottom: 10px;
}
.fl-footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}
.fl-footer-links-list a:hover {
  color: #ffffff;
  padding-left: 4px;
}
.fl-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.fl-footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
}
.fl-footer-contact-list a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}
.fl-newsletter-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  margin-top: 15px;
}
.fl-nl-title {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}
.fl-nl-desc {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 10px;
}
.fl-nl-form {
  display: flex;
  gap: 6px;
}
.fl-nl-input {
  flex-grow: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 12px;
  outline: none;
}
.fl-nl-btn {
  background: #e31b23;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.fl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 25px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 15px;
}
.fl-footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 6px;
}
.fl-footer-legal a:hover { color: #ffffff; }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .fl-hero-title { font-size: 42px; }
  .fl-services-layout { grid-template-columns: 1fr; }
  .fl-services-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .fl-pricing-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-blog-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .fl-top-bar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .fl-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .fl-hero-title { font-size: 34px; }
  .fl-hero-subtitle { margin: 0 auto 24px; }
  .fl-hero-pills { margin: 0 auto 28px; }
  .fl-hero-actions { justify-content: center; }
  .fl-quick-services-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-about-grid { grid-template-columns: 1fr; }
  .fl-mission-cards-grid { grid-template-columns: 1fr; }
  .fl-services-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-pricing-cards-grid { grid-template-columns: 1fr; }
  .fl-trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .fl-offer-banner-box { flex-direction: column; text-align: center; padding: 30px 20px; }
  .fl-offer-bullets { justify-content: center; }
  .fl-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .fl-testimonials-grid { grid-template-columns: 1fr; }
  .fl-blog-cards-grid { grid-template-columns: 1fr; }
  .fl-footer-grid { grid-template-columns: 1fr; }
  .fl-footer-bottom { flex-direction: column; text-align: center; }
  
  /* Mobile Navigation Drawer */
  .fl-main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-top: 1px solid #e2e8f0;
  }
  .fl-main-nav.mobile-active {
    display: flex;
  }
}

/* =========================================================
   INTERACTIVE PRICE CALCULATOR & PROMO BOX ENHANCEMENTS
========================================================= */
.fl-price-calc {
  transition: box-shadow 0.3s ease;
}
.fl-price-calc:hover {
  box-shadow: 0 10px 30px rgba(3,23,56,0.06);
}
.calc-plus, .calc-minus, .fl-calc-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 6px !important;
  border: 1px solid #cbd5e1 !important;
  background: #f1f5f9 !important;
  color: #031738 !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  user-select: none !important;
  transition: all 0.15s ease !important;
  touch-action: manipulation;
}
.calc-plus:hover, .fl-calc-btn[data-step="plus"]:hover {
  background: #e31b23 !important;
  color: #ffffff !important;
  border-color: #e31b23 !important;
  transform: scale(1.08);
}
.calc-minus:hover, .fl-calc-btn[data-step="minus"]:hover {
  background: #031738 !important;
  color: #ffffff !important;
  border-color: #031738 !important;
  transform: scale(1.08);
}
.calc-plus:active, .calc-minus:active, .fl-calc-btn:active {
  transform: scale(0.92);
}
.calc-qty, .fl-calc-val {
  font-size: 16px !important;
  font-weight: 800 !important;
  min-width: 24px !important;
  text-align: center !important;
  display: inline-block !important;
  transition: color 0.2s ease, transform 0.2s ease;
}
#calc-grand-total, .fl-calc-total-num {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}
.total-bump {
  animation: totalPulse 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes totalPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); color: #38bdf8; }
  100% { transform: scale(1); }
}
.fl-promo-box button:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}

