/* ============================================
   GUMP TOILET RENTALS - MAIN STYLESHEET
   ============================================ */

:root {
  --yellow: #FFDE42;
  --cyan: #53CBF3;
  --blue: #5478FF;
  --navy: #111FA2;
  --dark: #0a0f1e;
  --dark2: #131b2e;
  --white: #ffffff;
  --gray: #f4f6fb;
  --text: #1a2340;
  --text-light: #5a6480;
  --border: rgba(84,120,255,0.13);
  --shadow: 0 4px 32px rgba(17,31,162,0.10);
  --shadow-lg: 0 12px 48px rgba(17,31,162,0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::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);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(255,222,66,0.35);
}
.btn-primary:hover {
  background: #f5d200;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,222,66,0.5);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(17,31,162,0.25);
}
.btn-secondary:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--yellow);
}
.btn-outline:hover {
  background: var(--yellow);
  color: var(--dark);
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

.btn-call {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(255,222,66,0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,222,66,0.55);
}

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 2px solid rgba(255,222,66,0.15);
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(10,15,30,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Header - full width, no container padding */
#site-header > .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 70px;
  width: 100%;
  box-sizing: border-box;
}

/* Nav centered between logo and call button */
.header-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Call button + hamburger on the right */
.header-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 46px; height: 46px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.logo-name span { color: var(--yellow); }
.logo-sub {
  font-size: 0.65rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.nav-link svg { width: 15px; height: 15px; opacity: 0.8; flex-shrink: 0; }
.nav-link:hover,
.nav-item.active > .nav-link {
  color: var(--yellow);
  background: rgba(255,222,66,0.08);
}
.nav-link .arrow {
  width: 12px; height: 12px;
  margin-left: 2px;
  transition: transform 0.25s ease;
  opacity: 0.7;
}
.nav-item.open > .nav-link .arrow { transform: rotate(180deg); }

/* Dropdowns */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark2);
  border: 1px solid rgba(84,120,255,0.2);
  border-radius: var(--radius);
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}
.nav-item.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.87rem;
  font-weight: 600;
  transition: var(--transition);
  border-radius: 8px;
  margin: 3px 6px;
}
.dropdown a svg { width: 14px; height: 14px; color: var(--cyan); flex-shrink: 0; }
.dropdown a:hover { color: var(--yellow); background: rgba(255,222,66,0.07); }



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

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--dark2);
  border-top: 0px solid transparent;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, border-top 0s ease;
  width: 100%;
}
.mobile-nav.open {
  max-height: 700px;
  padding: 12px 0 20px;
  border-top: 1px solid rgba(255,222,66,0.1);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 24px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}
.mobile-nav-link .left { display: flex; align-items: center; gap: 9px; }
.mobile-nav-link svg { width: 16px; height: 16px; }
.mobile-nav-link:hover { color: var(--yellow); }

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.2);
}
.mobile-dropdown.open { max-height: 500px; }
.mobile-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px 9px 48px;
  color: rgba(255,255,255,0.7);
  font-size: 0.87rem;
  font-weight: 600;
  transition: var(--transition);
}
.mobile-dropdown a svg { width: 13px; height: 13px; color: var(--cyan); }
.mobile-dropdown a:hover { color: var(--yellow); }

.mobile-call-btn {
  margin: 12px 24px 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.97) 0%, rgba(17,31,162,0.6) 60%, rgba(83,203,243,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,222,66,0.12);
  border: 1px solid rgba(255,222,66,0.35);
  color: var(--yellow);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title span { color: var(--yellow); display: block; }
.hero-title em {
  color: var(--cyan);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s 0.2s ease both;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.hero-phone:hover { background: rgba(255,222,66,0.1); border-color: var(--yellow); color: var(--yellow); }
.hero-phone svg { color: var(--cyan); width: 18px; height: 18px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-item svg { color: var(--yellow); width: 16px; height: 16px; }

.hero-image-side {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 48%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.8) 30%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.8) 30%);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section { padding: 80px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(84,120,255,0.08);
  border: 1px solid rgba(84,120,255,0.2);
  color: var(--blue);
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label svg { width: 13px; height: 13px; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title span { color: var(--navy); }
.section-title em { color: var(--blue); font-style: normal; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ============================================
   SERVICES SECTION
   ============================================ */
#services { background: var(--gray); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(84,120,255,0.25);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(17,31,162,0.4));
}

.service-card-icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(255,222,66,0.4);
  z-index: 2;
}
.service-card-icon svg { width: 22px; height: 22px; color: var(--dark); }

.service-card-body {
  padding: 32px 22px 22px;
}
.service-card-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}
.service-card-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.service-card-link:hover { color: var(--blue); }
.service-card-link:hover svg { transform: translateX(4px); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
#why-us {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(84,120,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
#why-us::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(83,203,243,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
#why-us .section-title { color: var(--white); }
#why-us .section-desc { color: rgba(255,255,255,0.65); }
#why-us .section-label { background: rgba(83,203,243,0.1); border-color: rgba(83,203,243,0.2); color: var(--cyan); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(84,120,255,0.1);
  border-color: rgba(84,120,255,0.3);
  transform: translateY(-4px);
}
.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(17,31,162,0.35);
}
.why-icon svg { width: 28px; height: 28px; color: var(--yellow); }
.why-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ============================================
   SERVICE AREAS
   ============================================ */
#service-areas { background: var(--white); }

.areas-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.area-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 14px;
  background: var(--gray);
  border: 2px solid transparent;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.area-chip:hover {
  background: rgba(17,31,162,0.05);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.area-chip svg { width: 22px; height: 22px; color: var(--blue); }
.area-chip span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}
.area-chip:hover span { color: var(--navy); }

/* ============================================
   REVIEWS SECTION
   ============================================ */
#reviews { background: var(--gray); }

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

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 22px;
  font-size: 4rem;
  font-family: var(--font-head);
  color: var(--yellow);
  opacity: 0.3;
  line-height: 1;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 16px; height: 16px; color: #f5b800; fill: #f5b800; }
.review-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.reviewer-loc { font-size: 0.78rem; color: var(--text-light); }

.reviews-cta {
  text-align: center;
  margin-top: 36px;
}

/* ============================================
   ABOUT SNIPPET
   ============================================ */
#about-snippet {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--yellow);
  color: var(--dark);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
}
.about-content p {
  font-size: 1.0rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.stat-box {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
#faq-teaser { background: var(--gray); }

.faq-list {
  max-width: 800px;
  margin: 48px auto 36px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(17,31,162,0.06);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--navy); }
.faq-question svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--navy); background: rgba(17,31,162,0.03); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 4px 22px 20px;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================
   CTA BANNER
   ============================================ */
#cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,222,66,0.08);
  border-radius: 50%;
}
#cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 400px; height: 400px;
  background: rgba(83,203,243,0.07);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.cta-text-wrap { max-width: 600px; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}
.cta-title span { color: var(--yellow); }
.cta-desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.65; }
.cta-action { flex-shrink: 0; text-align: center; }
.cta-phone-big {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: var(--dark);
  padding: 18px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 32px rgba(255,222,66,0.4);
  transition: var(--transition);
  white-space: nowrap;
}
.cta-phone-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,222,66,0.55);
}
.cta-phone-big svg { width: 26px; height: 26px; }
.cta-subtext { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 10px; }

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--dark);
  padding: 70px 0 0;
  border-top: 1px solid rgba(255,222,66,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-info a, .footer-contact-info span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-contact-info a:hover { color: var(--yellow); }
.footer-contact-info svg { width: 15px; height: 15px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.58);
  transition: var(--transition);
  padding: 3px 0;
}
.footer-links a svg { width: 13px; height: 13px; color: var(--cyan); flex-shrink: 0; }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

.footer-map { border-radius: var(--radius); overflow: hidden; height: 200px; }
.footer-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3); }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.footer-social svg { width: 15px; height: 15px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-legal-links a:hover { color: var(--yellow); }
.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  max-width: 900px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 14px;
  margin-top: 6px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   BACK TO TOP
   ============================================ */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
  box-shadow: 0 4px 20px rgba(17,31,162,0.4);
  border: none;
}
#back-to-top.show { opacity: 1; visibility: visible; }
#back-to-top:hover { background: var(--blue); transform: translateY(-3px); }
#back-to-top svg { width: 18px; height: 18px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-link { padding: 8px 8px; font-size: 0.83rem; }
}

/* TABLET: hide nav text icons, keep call button visible */
@media (max-width: 960px) {
  .nav-link svg { display: none; }
  .nav-link { padding: 8px 6px; font-size: 0.8rem; }
}

/* MOBILE: hamburger menu takes over */
@media (max-width: 900px) {
  .header-center { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-nav { display: block; }
  /* Hide call button — full-width call button is inside mobile nav */
  .header-right .btn-call { display: none !important; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { height: 280px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-image-side { display: none; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn-lg { padding: 15px 26px; font-size: 1rem; }
  .cta-phone-big { font-size: 1.2rem; padding: 15px 24px; }
}
