/* ==========================================================================
   Kazema Portable Toilets UAE - Premium Stylesheet
   ========================================================================== */

/* ── VARIABLES ── */
:root {
  /* Neutrals */
  --navy: #1A1A1A; /* neutral-900: headings */
  --navy-light: #1C683A; /* primary-800: footer bg */
  --steel: #3D3D3D; /* neutral-700: body text */
  --muted: #595959; /* neutral-500: muted text */
  --border: #C7C7C7; /* neutral-300: borders */
  --sand: #EAF4EE; /* primary-50: alternating light bg */
  --white: #FFFFFF;
  
  /* Brand Colors */
  --amber: #289453; /* primary-600: primary buttons, links, brand base */
  --amber2: #227E47; /* primary-700: primary hover */
  --green: #289453;
  --green-hover: #227E47;
  --red: #D64545; /* error */
  --accent: #E08A1A; /* accent-600 */
  --accent-hover: #B36E14; /* accent-700 */

  /* Shadows & Transitions */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-hover: 0 15px 35px rgba(0,0,0,0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── RESET & BASE ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--steel);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

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

a:hover {
  color: var(--amber);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bg-light {
  background-color: var(--sand);
}

.text-center {
  text-align: center;
}

.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn i {
  margin-right: 8px;
  font-size: 1.1em;
}

.btn-primary {
  background-color: var(--amber);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--amber2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #1EBE5D;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-outline-white {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

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

.btn-white {
  background-color: var(--white);
  color: var(--navy);
}

.btn-white:hover {
  background-color: var(--sand);
  transform: translateY(-2px);
}

.btn-wa-outline {
  border-color: #25D366;
  color: #25D366;
}

.btn-wa-outline:hover {
  background-color: #25D366;
  color: var(--white);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

/* ── FLOATING WHATSAPP ── */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  color: var(--white);
  animation: none;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── HEADER & NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.site-logo {
  height: 45px;
  width: auto;
  display: block;
}

.site-logo-footer {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  /* Since the footer is dark, if the logo is dark it might need brightness/invert. 
     Assuming the SVG is visible or has colors. We will just constrain size for now. */
}

.main-nav ul {
  display: flex;
  gap: 24px;
}

.main-nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--amber);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-weight: 700;
  color: var(--navy);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--navy);
  transition: var(--transition);
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  padding-top: 100px; /* Accounts for fixed header */
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(28, 104, 58, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.hero-content {
  flex: 1;
  max-width: 700px;
  text-align: left;
}

.badge-urgent {
  display: inline-block;
  background-color: var(--accent);
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(224, 138, 26, 0.4);
}

.h1-title {
  font-size: 54px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.h2-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  line-height: 1.3;
}

.hero-body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  justify-content: flex-start;
}

.hero-tertiary-cta {
  margin-bottom: 32px;
}

.hero-tertiary-cta a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}

.trust-badges-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-start;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.trust-pill i {
  color: var(--accent);
}

.hero-form-wrapper {
  flex: 0 0 400px;
}

/* ── HERO RIGHT CARD ── */
.hero-card {
  background: transparent;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 450px;
  flex-shrink: 0;
  box-shadow: none;
  color: #fff;
  text-align: left;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 16px;
}

.hero-card-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.hero-card-arrow {
  background: #ffffff;
  color: #1a2530;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  transition: var(--transition);
}

.hero-card-arrow:hover {
  transform: translateX(4px);
  background: #00a896;
  color: #fff;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 8px;
}

.hero-card-grid::-webkit-scrollbar {
  width: 6px;
}
.hero-card-grid::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}
.hero-card-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.hero-card-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.hero-card-img-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  aspect-ratio: 4/3;
  background: #fff;
}

.hero-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-img-wrapper .info-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #f59e0b;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  padding: 2px;
  font-size: 12px;
}

.hero-card-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-card-footer {
  position: relative;
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.hero-card-footer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.2);
  z-index: 1;
}

.hero-card-plus {
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  color: #64748b;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
  transition: var(--transition);
}

.hero-card-plus:hover {
  background: #00a896;
  color: #fff;
}

.quote-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  color: var(--navy);
  border-top: 4px solid var(--amber);
}

.quote-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  background-color: var(--sand);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  background-color: var(--white);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background-color: var(--amber);
  padding: 16px 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
}

.trust-strip-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── SECTIONS BASE ── */
.section {
  padding: 80px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

.section-header {
  margin-bottom: 48px;
  max-width: 800px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-num {
  display: none !important;
}

.section-title {
  font-size: 40px;
  margin-bottom: 16px;
}

.section-intro {
  font-size: 18px;
  color: var(--muted);
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content p {
  margin-bottom: 24px;
  font-size: 17px;
}

/* ── PLACEHOLDERS ── */
.image-placeholder {
  background: var(--border);
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  border-radius: 8px;
  border: 2px dashed #cbd5e0;
}

.card-image-placeholder {
  height: 200px;
  background-color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.card-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ── PRODUCTS SECTION ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

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

.border-top-amber {
  border-top: 4px solid var(--amber);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.product-info p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  flex: 1;
}

.feature-list {
  margin-bottom: 20px;
}

.feature-list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-icon-link {
  font-size: 20px;
  background: #f0fdf4;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #25D366;
  border: 1px solid #bbf7d0;
}

.wa-icon-link:hover {
  background: #25D366;
  color: white;
}

/* ── INDUSTRIES SECTION ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.industry-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.industry-card:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
}

.industry-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.industry-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.industry-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.text-link {
  font-weight: 700;
  font-size: 14px;
}

/* ── WHY CHOOSE US ── */
.why-grid {
  max-width: 800px;
  margin: 0 auto;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-list li {
  background: var(--white);
  padding: 16px;
  border-radius: 4px;
  border-left: 3px solid var(--amber);
  box-shadow: var(--shadow-sm);
}

/* ── COVERAGE ── */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.coverage-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cov-card {
  background: var(--sand);
  padding: 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.cov-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.cov-card p {
  font-size: 13px;
  color: var(--muted);
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.step {
  position: relative;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-md);
  color: var(--amber);
  border: 2px solid var(--amber);
}

.step h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item .image-placeholder {
  min-height: 200px;
}

/* ── TESTIMONIALS ── */
.rating-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 10px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--amber);
}

.stars {
  color: var(--amber);
  margin-bottom: 16px;
  font-size: 20px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
}

.client-name {
  font-weight: 700;
  font-size: 14px;
}

/* ── FAQ ── */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-icon {
  font-size: 24px;
  color: var(--amber);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--muted);
}

/* ── FINAL CTA ── */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-band-content h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--amber);
}

.contact-card h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.info-block {
  background: var(--sand);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.info-block h4 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--navy);
}

.info-block p {
  margin-bottom: 12px;
  font-size: 15px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-light);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.brand-col p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
  color: var(--amber);
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: var(--amber);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ── GALLERY SECTION ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    padding-top: 40px;
  }
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  .hero-ctas, .trust-badges-hero {
    justify-content: center;
  }
  .hero-card {
    margin-top: 30px;
  }
  .hero-form-wrapper {
    width: 100%;
    flex: none;
  }
  .about-grid, .coverage-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    transition: var(--transition);
    padding: 40px 20px;
    overflow-y: auto;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .header-ctas .cta-link {
    display: none;
  }
  
  .h1-title {
    font-size: 36px;
  }
  
  .why-list, .coverage-tiles, .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-wa, .floating-top-btn {
    display: none !important;
  }
}

/* ── SCROLL TO TOP ── */
.floating-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #eaeaea;
}

.mbb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  min-width: 48px;
  min-height: 48px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  flex: 1;
  gap: 4px;
}

.mbb-item i {
  font-size: 20px;
}

.mbb-item span {
  letter-spacing: 1px;
}

.mbb-whatsapp {
  position: relative;
}

.mbb-wa-icon-wrapper {
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-top: -30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  position: relative;
  border: 4px solid #fff;
}

.mbb-wa-icon-wrapper i {
  font-size: 32px;
}

.mbb-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.floating-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-top-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
  .hero-container {
    padding-bottom: 100px; /* Add space for floating FAB */
  }
  
  body {
    padding-bottom: 70px; /* Space for mobile bottom bar */
  }

  .mobile-bottom-bar {
    display: flex;
  }
  
  .h1-title {
    font-size: 32px;
  }
  
  .h2-subtitle {
    font-size: 18px;
  }
  
  .hero-body {
    font-size: 15px;
  }
  
  .hero-ctas {
    flex-direction: row;
    gap: 12px;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 50%;
    padding: 12px 10px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .floating-wa-btn,
  .floating-top-btn {
    display: none !important;
  }
}
