/* =============================================
   CLEANBREAK JUNK REMOVAL & DEMOLITION
   Colors: Black #1a1a1a | Yellow #FFD700 | White #fff
============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.accent { color: #FFD700; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn-primary { background: #FFD700; color: #1a1a1a; border-color: #FFD700; }
.btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,215,0,0.35);
}
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: #1a1a1a; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-full { width: 100%; }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }

/* ---- SECTION SHARED ---- */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 16px;
  color: #1a1a1a;
}
.section-header p { color: #555; font-size: 17px; }

.section-label {
  display: inline-block;
  background: #FFD700;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: #1a1a1a;
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.top-bar i { color: #FFD700; margin-right: 5px; }
.top-bar-phone { color: #FFD700; font-weight: 700; margin-left: auto; }
.top-bar-phone:hover { color: #fff; }

/* ---- HEADER ---- */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111;
  border-bottom: 3px solid #FFD700;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  transform: scale(1.45);
  transform-origin: left center;
}
.logo-img-footer {
  height: 64px;
  margin-bottom: 12px;
}

/* Nav */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: #ddd;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s;
}
.nav-links a:hover { color: #FFD700; }
.header-cta { font-size: 14px; padding: 10px 22px; 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: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #1a1a1a;
  padding: 16px 24px 24px;
  border-top: 1px solid #333;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  color: #ddd;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
}
.mobile-nav a:hover { background: #2a2a2a; color: #FFD700; }
.mobile-nav .phone-link { color: #FFD700; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: #111 url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  padding: 80px 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.60) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFD700;
  color: #1a1a1a;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero-badge i { font-size: 11px; }
.hero-content h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero-sub { font-size: 18px; color: #ddd; margin-bottom: 36px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; align-items: center; }
.hero-ctas-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-ctas > .btn, .hero-ctas-group .btn { min-width: 200px; width: 200px; justify-content: center; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ccc;
  font-size: 14px;
  font-weight: 600;
}
.trust-item i { color: #FFD700; font-size: 16px; }

/* ---- SERVICES ---- */
.services { background: #f8f8f8; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid #eee;
  border-bottom: 4px solid transparent;
  transition: all 0.25s ease;
}
.service-card:hover {
  border-bottom-color: #FFD700;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: #111;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon i { color: #FFD700; font-size: 22px; }
.service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: #666; font-size: 15px; margin-bottom: 18px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s;
}
.service-link:hover { color: #c8a200; }
.service-link i { font-size: 12px; transition: transform 0.2s; }
.service-link:hover i { transform: translateX(4px); }

/* ---- WHY CHOOSE US ---- */
.why-us { background: #fff; }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-us-text .section-label { margin-bottom: 12px; }
.why-us-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.why-us-text > p { color: #555; font-size: 17px; margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.why-list li { display: flex; align-items: flex-start; gap: 14px; }
.why-list li i { color: #FFD700; font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.why-list li div { display: flex; flex-direction: column; }
.why-list li strong { font-size: 16px; font-weight: 700; }
.why-list li span { color: #666; font-size: 14px; }
.why-us-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-number {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  color: #fff;
  line-height: 1;
}
.stat-number .accent { color: #FFD700; }
.stat-label { color: #aaa; font-size: 14px; font-weight: 600; text-align: center; }

/* ---- HOW IT WORKS ---- */
.how-it-works { background: #1a1a1a; }
.how-it-works .section-header h2 { color: #fff; }
.how-it-works .section-header p { color: #aaa; }
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
}
.step-number {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  color: #333;
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  width: 72px;
  height: 72px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon i { font-size: 28px; color: #1a1a1a; }
.step h3 { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.step p { color: #aaa; font-size: 15px; }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 80px;
  color: #FFD700;
  font-size: 24px;
  flex-shrink: 0;
}
.how-cta { text-align: center; margin-top: 48px; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: #f8f8f8; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.stars { color: #FFD700; font-size: 18px; margin-bottom: 16px; display: flex; gap: 3px; }
.testimonial-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: #1a1a1a;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-author div { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: 15px; font-weight: 700; }
.testimonial-author span { color: #888; font-size: 13px; }

/* ---- SERVICE AREAS ---- */
.service-areas { background: #fff; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.area-item {
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: default;
}
.area-item i { color: #FFD700; }
.area-item:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.areas-note { text-align: center; color: #666; }
.areas-note a { color: #1a1a1a; font-weight: 700; text-decoration: underline; }

/* ---- BOOKING ---- */
.booking { background: #f8f8f8; }

.booking-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

.booking-info-card {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 28px 24px;
  margin-bottom: 20px;
}
.booking-icon {
  width: 52px;
  height: 52px;
  background: #FFD700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.booking-icon i { font-size: 22px; color: #1a1a1a; }
.booking-info-card h3 { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 16px; }

.booking-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.booking-steps-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
  font-size: 14px;
}
.booking-steps-list li span {
  width: 26px;
  height: 26px;
  background: #FFD700;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.booking-hours {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.booking-hours h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-hours h4 i { color: #FFD700; }
.booking-hours ul { display: flex; flex-direction: column; gap: 10px; }
.booking-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 8px;
}
.booking-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.booking-hours li span { color: #666; }
.booking-hours li strong { color: #1a1a1a; }

.booking-note {
  background: #fff;
  border: 2px solid #FFD700;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-note i { color: #FFD700; font-size: 20px; }
.booking-note p { color: #555; font-size: 14px; margin: 0; }
.booking-note strong { color: #1a1a1a; }

.booking-calendar {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.calendar-wrapper { position: relative; }
.calendar-wrapper iframe { display: block; }

.calendar-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 32px;
  text-align: center;
  background: #fff;
  min-height: 400px;
}
.calendar-placeholder i { font-size: 56px; color: #FFD700; }
.calendar-placeholder p { color: #666; font-size: 16px; max-width: 360px; margin: 0; }

/* Show placeholder, hide iframe when calendar not configured */
.booking-calendar.not-configured .calendar-wrapper iframe { display: none; }
.booking-calendar.not-configured .calendar-placeholder { display: flex; }

@media (max-width: 1024px) {
  .booking-inner { grid-template-columns: 1fr; }
}

/* ---- CONTACT ---- */
.contact { background: #1a1a1a; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.contact-info > p { color: #aaa; font-size: 17px; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
  font-size: 15px;
}
.contact-details i { color: #FFD700; width: 18px; flex-shrink: 0; }
.contact-details a { color: #fff; font-weight: 600; }
.contact-details a:hover { color: #FFD700; }
.contact-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #333;
  color: #ccc;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
}
.badge i { color: #FFD700; }

/* Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 40px 36px;
}
.quote-form h3 {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  margin-bottom: 24px;
  color: #1a1a1a;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: #FFD700; }
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  color: #888;
  font-size: 13px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-note i { color: #4caf50; }

/* ---- FOOTER ---- */
.footer { background: #111; border-top: 3px solid #FFD700; padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-brand p { color: #888; font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: #222;
  color: #aaa;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.social-links a:hover { background: #FFD700; color: #111; }
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #888; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: #FFD700; }
.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 14px;
}
.footer-contact i { color: #FFD700; width: 16px; }
.footer-contact a { color: #888; transition: color 0.2s; }
.footer-contact a:hover { color: #FFD700; }
.footer-btn { margin-top: 20px; font-size: 14px; padding: 10px 20px; }
.footer-bottom { border-top: 1px solid #222; padding: 20px 0; }
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #555; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #555; font-size: 13px; }
.footer-bottom-links a:hover { color: #FFD700; }

/* ---- STICKY PHONE BAR (mobile) ---- */
.sticky-phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #1a1a1a;
  border-top: 2px solid #FFD700;
}
.sticky-phone-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-weight: 800;
  font-size: 15px;
}
.sticky-phone-bar a:first-child {
  background: #FFD700;
  color: #1a1a1a;
  border-right: 1px solid #cca800;
}
.sticky-phone-bar a:last-child { background: #25D366; color: #fff; }
.sticky-phone-bar a:last-child:hover { background: #1ebe5d; }

.hide-mobile { display: block; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us-stats { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar-inner { justify-content: center; gap: 12px; font-size: 12px; }
  .top-bar-phone { margin-left: 0; }

  .nav-links, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 500px; padding: 60px 0 100px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas-group { flex-direction: column; width: 100%; }
  .hero-ctas-group .btn { width: 100%; }
  .hide-mobile { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-us-stats { grid-template-columns: 1fr 1fr; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin-top: 0; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrapper { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

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

  .sticky-phone-bar { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .why-us-stats { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 36px; }
}
