/* ==========================================================================
   سكراب كاش (Scrap Cash) - Master CSS Design System
   Industrial, Premium, High-Converting & Mobile-First RTL Stylesheet
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   1. CSS VARIABLES / DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --primary-dark: #111827;
  --secondary-dark: #1F2937;
  --card-dark: #1E293B;
  --accent-gold: #F59E0B;
  --accent-gold-hover: #D97706;
  --accent-gold-light: #FEF3C7;
  --whatsapp-green: #16A34A;
  --whatsapp-hover: #15803D;
  --whatsapp-light: #DCFCE7;
  --phone-blue: #2563EB;
  --phone-hover: #1D4ED8;
  --bg-light: #F8FAFC;
  --surface-white: #FFFFFF;
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --border-light: #E2E8F0;
  --border-dark: #374151;

  /* Typography */
  --font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.3);

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Layout */
  --header-height: 80px;
  --container-max: 1240px;
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  direction: rtl;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile bottom action bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

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

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

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

button {
  cursor: pointer;
  background: none;
}

ul {
  list-style: none;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary-dark);
}

p {
  color: var(--text-muted);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* --------------------------------------------------------------------------
   3. BUTTONS & BADGES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  box-shadow: 0 0 20px rgba(22, 163, 74, 0.4);
}

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

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

.btn-phone {
  background-color: var(--primary-dark);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn-block {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
}

.badge-gold {
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-green {
  background-color: var(--whatsapp-light);
  color: var(--whatsapp-green);
}

.badge-dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--text-light);
  font-size: 0.875rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header.scrolled {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  height: 70px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-gold), #D97706);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  color: #FFFFFF;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

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

.logo-subtitle {
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.nav-link {
  color: #E2E8F0;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: var(--radius-full);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.hamburger-btn span {
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

@media (min-width: 992px) {
  .hamburger-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--primary-dark);
  z-index: 2000;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-drawer-btn {
  color: #FFFFFF;
  font-size: 1.75rem;
  line-height: 1;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.mobile-drawer-links .nav-link {
  font-size: 1.1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-drawer-actions {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 4rem 0 5rem 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245, 158, 11, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.hero-title span {
  color: var(--accent-gold);
  display: inline-block;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.1rem;
  }
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #F1F5F9;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 576px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(31, 41, 55, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.hero-card-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero-card-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Quote Form inside Hero & Contact */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-label {
  color: #E2E8F0;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-control {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-gold);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-light);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394A3B8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
  background-size: 1.25rem;
}

select.form-control option {
  background-color: var(--primary-dark);
  color: #FFFFFF;
}

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

/* --------------------------------------------------------------------------
   6. TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background-color: var(--primary-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-title {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.trust-desc {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   7. SECTIONS & CARDS
   -------------------------------------------------------------------------- */
.section {
  padding: 4.5rem 0;
}

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

.section-dark p {
  color: #94A3B8;
}

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

.section-subtitle {
  color: var(--accent-gold-hover);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-dark .section-subtitle {
  color: var(--accent-gold);
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

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

.section-description {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

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

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

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

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

/* Card Component */
.card {
  background-color: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.section-dark .card {
  background-color: var(--secondary-dark);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .card:hover {
  border-color: var(--accent-gold);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-normal);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

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

.card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
}

/* Feature/Why Us Card */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background-color: var(--surface-white);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.feature-content p {
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   8. HOW IT WORKS (PROCESS STEPS)
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

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

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

.process-step {
  background-color: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-normal);
  text-align: center;
}

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

.step-num {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: var(--primary-dark);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. QUICK WHATSAPP PHOTO BANNER
   -------------------------------------------------------------------------- */
.photo-banner {
  background: linear-gradient(135deg, #15803D 0%, #16A34A 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin: 2rem 0;
}

.photo-banner::after {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.photo-banner-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.photo-banner-title {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.photo-banner-text {
  color: #DCFCE7;
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--surface-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--accent-gold);
}

.faq-button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: right;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  cursor: pointer;
  background: transparent;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent-gold-light);
  color: var(--accent-gold-hover);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. PRE-FOOTER CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  padding: 5rem 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  color: #FFFFFF;
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: #CBD5E1;
  font-size: 1.15rem;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 576px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: #0B0F19;
  color: #94A3B8;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

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

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

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94A3B8;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: var(--radius-full);
}

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

.footer-links a {
  color: #CBD5E1;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.footer-contact-icon {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* --------------------------------------------------------------------------
   13. FLOATING ACTION BUTTONS & MOBILE BOTTOM BAR
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 85px;
  left: 20px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.5);
  transition: transform var(--transition-fast);
}

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

@media (min-width: 768px) {
  .floating-whatsapp {
    bottom: 25px;
  }
}

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  padding: 0.6rem 0.75rem;
  gap: 0.6rem;
}

@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.mobile-bottom-bar .btn {
  flex: 1;
  padding: 0.75rem 0.5rem;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   14. BREADCRUMBS & INNER PAGE HEADERS
   -------------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  color: #FFFFFF;
  padding: 3.5rem 0 3rem 0;
  text-align: center;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: #E2E8F0;
}

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

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

/* Content block styling */
.content-box {
  background-color: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.content-box h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.content-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-box ul {
  margin-bottom: 1.5rem;
  padding-right: 1.25rem;
}

.content-box li {
  margin-bottom: 0.6rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
}

.content-box li::before {
  content: '✓';
  color: var(--accent-gold-hover);
  font-weight: bold;
  margin-left: 0.5rem;
}

/* Blog Cards */
.blog-card {
  background-color: var(--surface-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-tag {
  color: var(--accent-gold-hover);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

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

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   MOBILE RESPONSIVENESS — COMPREHENSIVE FIXES
   Targets: 360px, 375px, 390px, 414px, 480px, 768px
   ========================================================================== */

/* ── Prevent ALL horizontal overflow ───────────────────────────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

/* ── TOP BAR: hide second item on very small screens ───────────────────── */
@media (max-width: 480px) {
  .top-bar-info span:last-child {
    display: none;
  }

  .top-bar .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    gap: 0.5rem;
  }

  .top-bar-info {
    gap: 0.6rem;
    font-size: 0.78rem;
  }

  .top-bar-contact a {
    font-size: 0.82rem;
  }
}

/* ── HEADER: tighter on mobile ──────────────────────────────────────────── */
@media (max-width: 991px) {
  :root {
    --header-height: 68px;
  }

  .header .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .logo-subtitle {
    display: none;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.25rem;
  }

  .logo-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }

  .logo-title {
    font-size: 1.05rem;
  }

  .header-actions .btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }
}

/* ── MOBILE DRAWER: full-width on tiny screens ──────────────────────────── */
@media (max-width: 380px) {
  .mobile-drawer {
    width: 100%;
    right: -100%;
  }
}

/* ── HERO: mobile-first adjustments ────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-section {
    padding: 2.5rem 0 3rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.85rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-chips {
    gap: 0.45rem;
    margin-bottom: 1.5rem;
  }

  .chip {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0 2.5rem 0;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-ctas .btn {
    width: 100%;
    font-size: 0.97rem;
    padding: 0.85rem 1rem;
  }

  .badge {
    font-size: 0.78rem;
    padding: 0.3rem 0.7rem;
  }
}

/* Hero card — make it readable on mobile without wasting space */
@media (max-width: 991px) {
  .hero-card {
    padding: 1.5rem 1.25rem;
  }

  .hero-card-title {
    font-size: 1.1rem;
  }

  .hero-card-subtitle {
    font-size: 0.83rem;
    margin-bottom: 1rem;
  }
}

/* ── TRUST BAR: 2-col grid is fine, just fix padding ───────────────────── */
@media (max-width: 480px) {
  .trust-item {
    padding: 0.75rem;
    gap: 0.65rem;
  }

  .trust-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .trust-title {
    font-size: 0.82rem;
  }

  .trust-desc {
    font-size: 0.72rem;
  }

  .trust-grid {
    gap: 0.75rem;
  }
}

/* ── SECTIONS: reduce top/bottom padding on mobile ─────────────────────── */
@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.25rem 0;
  }

  .section-title {
    font-size: 1.35rem;
  }
}

/* ── CARDS: single column + fix card text sizes ─────────────────────────── */
@media (max-width: 767px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 1.35rem 1.1rem;
  }

  .card-icon {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.88rem;
  }
}

/* ── FEATURE CARDS ──────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .feature-card {
    padding: 1.1rem;
    gap: 0.85rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .feature-content h3 {
    font-size: 0.97rem;
  }

  .feature-content p {
    font-size: 0.83rem;
  }
}

/* ── PROCESS STEPS ──────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .process-step {
    padding: 1.25rem 1rem;
  }

  .step-num {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
  }

  .step-title {
    font-size: 1rem;
  }

  .step-desc {
    font-size: 0.83rem;
  }
}

/* ── PHOTO BANNER (WhatsApp green CTA) ──────────────────────────────────── */
@media (max-width: 767px) {
  .photo-banner {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .photo-banner-title {
    font-size: 1.5rem;
  }

  .photo-banner-text {
    font-size: 0.97rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .photo-banner {
    padding: 1.5rem 1rem;
    margin: 1.25rem 0;
  }

  .photo-banner-title {
    font-size: 1.25rem;
  }

  .photo-banner-text {
    font-size: 0.9rem;
  }

  .photo-banner .btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.85rem 0.75rem;
  }
}

/* ── FAQ ACCORDION ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .faq-button {
    font-size: 0.93rem;
    padding: 1rem 1rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }

  .faq-item.active .faq-content {
    padding: 0 1rem 1rem 1rem;
  }

  .faq-text {
    font-size: 0.88rem;
  }
}

/* ── CTA SECTION ─────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .cta-section {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-subtitle {
    font-size: 0.97rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.85rem;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.35rem;
  }
}

/* ── PAGE HEADER (inner pages) ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .page-header {
    padding: 2.5rem 0 2rem 0;
  }

  .page-title {
    font-size: 1.65rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 2rem 0 1.5rem 0;
  }

  .page-title {
    font-size: 1.35rem;
  }

  .breadcrumbs {
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

/* ── CONTENT BOX (inner page paragraphs) ────────────────────────────────── */
@media (max-width: 480px) {
  .content-box {
    padding: 1.35rem 1.1rem;
  }

  .content-box h2 {
    font-size: 1.2rem;
  }

  .content-box p,
  .content-box li {
    font-size: 0.93rem;
  }
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .footer {
    padding: 2.5rem 0 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-heading {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.88rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    font-size: 0.82rem;
  }
}

/* ── FLOATING WHATSAPP BTN ───────────────────────────────────────────────── */
@media (max-width: 767px) {
  .floating-whatsapp {
    bottom: 80px;
    left: 12px;
    width: 50px;
    height: 50px;
    font-size: 1.65rem;
  }
}

/* ── MOBILE BOTTOM BAR ───────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .mobile-bottom-bar {
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
  }

  .mobile-bottom-bar .btn {
    font-size: 0.88rem;
    padding: 0.7rem 0.4rem;
    border-radius: var(--radius-md);
  }
}

/* ── FORMS on mobile ─────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .form-control {
    font-size: 0.9rem;
    padding: 0.7rem 0.85rem;
  }

  .form-label {
    font-size: 0.82rem;
  }

  .quote-form {
    gap: 0.75rem;
  }
}

/* ── BUTTONS: min touch target 44px ─────────────────────────────────────── */
@media (max-width: 767px) {
  .btn {
    min-height: 44px;
  }
}

/* ── LOCAL SEO HUB grid: fix content-box width ───────────────────────────── */
@media (max-width: 767px) {
  .content-box.fade-in {
    width: 100%;
  }
}

/* ── Blog cards ─────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .blog-card-title {
    font-size: 1.05rem;
  }

  .blog-card-excerpt {
    font-size: 0.88rem;
  }

  .blog-card-body {
    padding: 1.25rem;
  }
}

/* ── Utility: remove hover transforms on touch to prevent stuck states ──── */
@media (hover: none) {
  .card:hover,
  .feature-card:hover,
  .process-step:hover,
  .blog-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    border-color: var(--border-light);
  }

  .card-icon:hover {
    transform: none;
  }
}
