/* ==============================================
   CARLIN PORTA POTTY PROS — MAIN STYLESHEET
   Primary Keyword: Dumpster Rental Carlin NV
================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary:      #e85d04;
  --primary-dark: #c44d00;
  --primary-light:#ff7a2f;
  --secondary:    #1a1a2e;
  --secondary-dark: #0f0f1e;
  --accent:       #ffd60a;
  --text:         #2d2d2d;
  --text-light:   #6b7280;
  --white:        #ffffff;
  --light-bg:     #f8f9fa;
  --border:       #e5e7eb;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.18);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --transition:   all 0.3s ease;
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

.section-pad { padding: 90px 0; }
.bg-light    { background: var(--light-bg); }
.text-center { text-align: center; }
.mt-2        { margin-top: 1.5rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-call {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(232,93,4,0.35);
}
.btn-call:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,93,4,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-primary-lg {
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(232,93,4,0.4);
}
.btn-primary-lg:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-outline-lg {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 14px 30px;
  font-size: 1.05rem;
  border-radius: 50px;
}
.btn-outline-lg:hover { background: var(--white); color: var(--secondary); }

.btn-cta-primary {
  background: var(--white);
  color: var(--primary);
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.btn-cta-primary:hover { background: var(--accent); color: var(--secondary); transform: translateY(-2px); }

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 50px;
}
.btn-cta-outline:hover { background: var(--white); color: var(--primary); }

/* ---------- SECTION LABELS ---------- */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.badge-light {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.highlight { color: var(--primary); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}
.section-sub.light { color: rgba(255,255,255,0.8); }

.section-header { margin-bottom: 56px; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-primary {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}
.logo-secondary {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.3px;
}

/* Nav */
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu ul li a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-menu ul li a:hover {
  color: var(--primary);
  background: rgba(232,93,4,0.07);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--secondary);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.mobile-nav ul li a {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 10px 14px;
  border-radius: 6px;
}
.mobile-nav ul li a:hover { background: rgba(232,93,4,0.07); color: var(--primary); }
.mobile-call { justify-content: center; width: 100%; }

/* ============================================================
   HERO
============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 40%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232,93,4,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,214,10,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><circle cx="900" cy="200" r="300" fill="rgba(232,93,4,0.05)"/><circle cx="300" cy="600" r="200" fill="rgba(255,214,10,0.04)"/></svg>') no-repeat center/cover;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 60px 20px 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,4,0.2);
  border: 1px solid rgba(232,93,4,0.4);
  color: #ff9f5a;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title .highlight { color: var(--primary); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 620px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 20px 28px;
  width: fit-content;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   ABOUT
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content h2 { margin-bottom: 16px; }
.about-content p   { margin-bottom: 14px; color: var(--text-light); font-size: 1rem; }
.about-content strong { color: var(--text); }

.about-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.icon-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.icon-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  color: var(--white);
}
.icon-wrap.orange { background: var(--primary); }
.icon-wrap.blue   { background: #3b82f6; }
.icon-wrap.green  { background: #10b981; }
.icon-wrap.purple { background: #8b5cf6; }
.icon-wrap.red    { background: #ef4444; }
.icon-wrap.teal   { background: #0d9488; }

.icon-box-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.icon-box-text p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(232,93,4,0.1), rgba(255,122,47,0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(232,93,4,0.3);
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(5deg); }

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}
.why-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.bg-dark-blue { background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%); }

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,93,4,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.stars { margin-bottom: 14px; }
.stars i { color: var(--accent); font-size: 0.9rem; margin-right: 2px; }

.review-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}
.reviewer-avatar i {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.3);
}
.reviewer-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
}
.reviewer-info span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   AREAS SERVED
============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.areas-content p { color: var(--text-light); margin-bottom: 20px; font-size: 1rem; }
.areas-content a { color: var(--primary); font-weight: 600; }

.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}
.city-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 8px 12px;
  background: var(--light-bg);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.city-item:hover { background: rgba(232,93,4,0.07); border-color: var(--primary); color: var(--primary); }
.city-item i { color: var(--primary); font-size: 0.8rem; }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
  outline: 2px solid var(--border);
}
.map-wrapper iframe { display: block; }

/* ============================================================
   FAQ
============================================================ */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); box-shadow: 0 4px 20px rgba(232,93,4,0.1); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-item.active .faq-question { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(232,93,4,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; padding-top: 16px; }
.faq-answer a { color: var(--primary); font-weight: 600; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 80px 0;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><circle cx="700" cy="-50" r="300" fill="rgba(255,255,255,0.05)"/><circle cx="100" cy="450" r="250" fill="rgba(0,0,0,0.05)"/></svg>') no-repeat center/cover;
  pointer-events: none;
}

.cta-overlay { display: none; }

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-text p { font-size: 1rem; color: rgba(255,255,255,0.88); max-width: 480px; }
.cta-text strong { color: var(--white); }

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-or { color: rgba(255,255,255,0.6); font-weight: 600; font-size: 0.85rem; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--secondary-dark);
}
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-primary,
.footer-logo .logo-secondary { color: var(--white) !important; }
.footer-logo .logo-secondary { opacity: 0.8; }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-rating span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a i { font-size: 0.65rem; color: var(--primary); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.contact-list i {
  color: var(--primary);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-list a { color: var(--primary); font-weight: 600; }
.contact-list a:hover { color: var(--primary-light); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   FLOATING CALL BUTTON
============================================================ */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(232,93,4,0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.floating-call:hover { background: var(--primary-dark); transform: scale(1.1); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(232,93,4,0.5); }
  50%       { box-shadow: 0 6px 36px rgba(232,93,4,0.75), 0 0 0 12px rgba(232,93,4,0.1); }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--secondary);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--primary); }

/* ============================================================
   ANIMATIONS (lightweight AOS-like)
============================================================ */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid    { grid-template-columns: 1fr; gap: 40px; }

  .about-icons { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }

  /* Header */
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .header-call span { display: none; }
  .header-call { padding: 10px 14px; border-radius: 50%; }
  .header-inner { height: 62px; }

  /* Hero */
  .hero-content { padding: 40px 20px 80px; }
  .hero-title   { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-btns    { flex-direction: column; }
  .btn-primary-lg, .btn-outline-lg { text-align: center; justify-content: center; }
  .hero-stats   { gap: 14px; padding: 16px 20px; }
  .stat-divider { display: none; }

  /* About icons */
  .about-icons { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-content { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

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

  /* Map */
  .map-wrapper iframe { height: 300px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about-icons { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .hero-stats  { width: 100%; justify-content: space-around; }
  .section-title { font-size: 1.7rem; }
  .btn-cta-primary, .btn-cta-outline { width: 100%; justify-content: center; }
}
