/* =========================================
   HORIZON MULTI SERVICES - style.css
   ========================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #e8a020;
  --gold-dark: #c8870e;
  --dark: #1a1a1a;
  --dark2: #111111;
  --white: #ffffff;
  --gray-light: #f4f4f4;
  --gray-mid: #6b7280;
  --text: #1a1a1a;
  --nav-h: 72px;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

.logo-icon { display: flex; align-items: center; }

.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
  /* logo has white bg, use mix-blend to blend into dark footer */
  background: white;
  padding: 2px;
}

.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
}

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

.btn-call {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.94rem !important;
  transition: background 0.2s, transform 0.15s;
}

.btn-call:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

.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: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  width: 100%;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 820px;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-whatsapp:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-callnow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.97rem;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.15s;
}

.btn-callnow:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 18px 24px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}

.badge-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 88px 0;
  background: var(--gray-light);
}

.about .container {
  max-width: 780px;
  text-align: center;
}

.about h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--dark);
}

.about p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about p:last-child { margin-bottom: 0; }

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: 88px 0;
  background: var(--white);
}

.services h2,
.why-us h2,
.testimonials h2,
.contact h2 {
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-sub {
  text-align: center;
  color: var(--gray-mid);
  font-size: 1rem;
  margin-bottom: 52px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.service-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #d1d5db;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-body {
  padding: 24px 28px 28px;
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.service-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-body p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.get-quote {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.93rem;
  transition: gap 0.2s, color 0.2s;
}

.get-quote:hover {
  color: var(--gold-dark);
  gap: 10px;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us {
  padding: 88px 0;
  background: var(--gray-light);
}

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

.why-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px 28px;
  transition: box-shadow 0.25s;
}

.why-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.why-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  padding: 88px 0;
  background: var(--white);
}

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

.review-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px;
  background: var(--white);
  transition: box-shadow 0.25s;
}

.review-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  display: flex;
  gap: 2px;
}

.review-card p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.reviewer-date {
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-top: 2px;
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: 88px 0;
  background: var(--gray-light);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,160,32,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.6;
}

.contact-item-value a {
  color: #555;
  transition: color 0.2s;
}

.contact-item-value a:hover {
  color: var(--gold);
}

/* WhatsApp contact link specific */
.contact-item-value a[href*="wa.me"] {
  color: #555;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value a[href*="wa.me"]:hover {
  color: var(--gold);
}

.whatsapp-link {
  color: #555 !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s !important;
}

.whatsapp-link:hover {
  color: var(--gold) !important;
}

.map-wrap {
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #111;
  color: rgba(255,255,255,0.8);
  padding: 56px 0 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-contact h4,
.footer-social h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.social-icons a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #e5e7eb;
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    transform: translateY(0);
  }

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

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    height: 260px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-badges {
    flex-direction: column;
    gap: 12px;
  }

  .badge {
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .about h2,
  .services h2,
  .why-us h2,
  .testimonials h2,
  .contact h2 {
    font-size: 1.6rem;
  }

  .service-img-wrap {
    height: 180px;
  }
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.video-section {
  margin-top: 64px;
  text-align: center;
}

.video-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.video-sub {
  color: var(--gray-mid);
  font-size: 1rem;
  margin-bottom: 32px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  background: #000;
  border: 3px solid rgba(232,160,32,0.25);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.video-wrapper:hover {
  box-shadow: 0 24px 80px rgba(232,160,32,0.2);
  border-color: rgba(232,160,32,0.5);
}

.video-wrapper video {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

/* =========================================
   ANIMATIONS
   ========================================= */

/* Scroll reveal — only opacity + transform (GPU composited, no layout) */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance — staggered slide-up */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  animation: heroSlideUp 0.8s ease 0.05s both;
}
.hero-subtitle {
  animation: heroSlideUp 0.8s ease 0.2s both;
}
.hero-btns {
  animation: heroSlideUp 0.8s ease 0.35s both;
}
.hero-badges {
  animation: heroSlideUp 0.8s ease 0.5s both;
}

/* Service card hover — lift + gold shadow */
.service-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 14px 40px rgba(232,160,32,0.14), 0 4px 12px rgba(0,0,0,0.07);
  transform: translateY(-5px);
}

/* Service card image zoom */
.service-img-wrap img {
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

/* Get quote arrow nudge */
.get-quote i {
  transition: transform 0.2s ease;
  display: inline-block;
}
.get-quote:hover i {
  transform: translateX(5px);
}

/* Why card hover — subtle lift + gold border, NO icon animation */
.why-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  box-shadow: 0 8px 28px rgba(232,160,32,0.1);
  transform: translateY(-3px);
  border-color: rgba(232,160,32,0.28);
}

/* Review card hover */
.review-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.review-card:hover {
  box-shadow: 0 8px 28px rgba(232,160,32,0.1);
  transform: translateY(-3px);
}

/* Hero badge hover */
.badge {
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}
.badge:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(232,160,32,0.45);
  transform: translateY(-2px);
}

/* Section heading underline reveal */
.services h2,
.why-us h2,
.testimonials h2,
.contact h2,
.about h2 {
  position: relative;
  display: inline-block;
}
.services h2::after,
.why-us h2::after,
.testimonials h2::after,
.contact h2::after,
.about h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.5s ease;
}
.services h2.visible::after,
.why-us h2.visible::after,
.testimonials h2.visible::after,
.contact h2.visible::after,
.about h2.visible::after {
  transform: translateX(-50%) scaleX(1);
}

/* WhatsApp float — subtle pulse */
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float {
  animation: waPulse 2.8s ease infinite;
}

/* Social icon hover scale */
.social-icons a {
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-icons a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
