
:root {
  --orange: #F15A24;
  --charcoal: #1A1A1A;
  --gray: #6E6E6E;
  --light: #f5f5f5;
  --white: #fff;
}

/* GLOBAL */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--light);
  color: var(--charcoal);
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 10px;
}
a { color: inherit; }

/* NAVBAR */
.navbar {
  height: 160px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}



/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 20px;
color: #F15A24;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-links {
  margin-top: 20px; /* aligns links vertically */
}
.nav-links {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}


/* MOBILE MENU BUTTON */
.mobile-menu-btn {
	margin-top: 20px;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-menu-btn div {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 3px;
}
.mobile-menu-btn {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}


/* MOBILE NAV MENU */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: static;
    transform: none;
    margin-top: 10px;
  }

  .nav-links a {
    font-size: 18px;
    padding: 8px 0;
    color: #F15A24;
  }

  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .logo-center img {
    max-height: 120px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 160px; /* equal to navbar height */
  }
}
splay: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: rgba(26,26,26,0.97);
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid var(--orange);
    display: none !important;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    padding: 14px 0;
    margin: 0;
    font-size: 16px;
    display: block;
  }
}

/* CENTERED LOGO HEADER */
.site-header {
  position: absolute;
  top: 64px; /* below navbar */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 900;
  background: transparent !important;
  pointer-events: none; /* keeps it clean on mobile */
}

.logo-wrap img {
  max-height: 180px;
  width: auto;
}


@media (min-width: 992px) {
  .logo-wrap img {
    max-height: 200px;
  }
}

/* FLOATING CTA */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--orange);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 999;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('/tl.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: var(--white);
  padding: 200px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.75), rgba(0,0,0,0.35));
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(241,90,36,0.15);
  border: 1px solid rgba(241,90,36,0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 52px;
  color: var(--orange);
  margin-bottom: 10px;
}
.hero p {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 24px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-primary, .btn-outline {
  padding: 12px 24px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
}

/* MOBILE HERO FIXES */
@media (max-width: 480px) {
  .hero {
    height: auto;
    padding: 140px 20px 80px;
    background-attachment: scroll;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.15;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta a {
    width: 100%;
    text-align: center;
  }
}

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 32px;
}
.section-header p {
  color: var(--gray);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.card p {
  font-size: 14px;
  color: var(--gray);
}

/* PRICING */
.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--white);
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-top: 4px solid var(--orange);
}
.price-tag {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 16px;
}

/* POPULAR SERVICES */
.popular-services {
  padding:80px 20px;
  background:#0d0d0d;
  color:#fff;
}
.popular-services .section-title {
  text-align:center;
  font-size:36px;
  font-weight:700;
  margin-bottom:50px;
}
.popular-services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:30px;
}
.popular-card {
  background:rgba(255,255,255,0.05);
  padding:30px;
  border-radius:14px;
  backdrop-filter:blur(10px);
  box-shadow:0 4px 20px rgba(0,0,0,0.4);
  text-align:center;
}
.popular-card .emoji {
  font-size:40px;
  margin-bottom:15px;
}
.popular-card h3 {
  font-size:24px;
  margin-bottom:10px;
}
.popular-card p {
  opacity:0.8;
  margin-bottom:20px;
}
.btn-orange {
  display:inline-block;
  padding:12px 20px;
  background:#F15A24;
  color:#fff;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
}

/* OUR WORK */
.our-work {
  padding: 80px 20px;
  background: #0d0d0d;
  color: #fff;
}
.our-work h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}
.work-subtitle {
  text-align: center;
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
}
.work-gallery-pro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.work-card {
  background: #111;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
  text-align: center;
}
.work-card h3 {
  color: #F15A24;
  margin-bottom: 20px;
  font-size: 22px;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ba-box {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #222;
}
.ba-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s ease;
}
.ba-box:hover img {
  transform: scale(1.05);
}
.ba-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 1px;
}
.ba-label.after {
  background: #F15A24;
}
.work-cta {
  text-align: center;
  margin-top: 40px;
}
.work-cta a {
  background: #F15A24;
  padding: 14px 28px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.work-cta a:hover {
  background: #d94f1f;
}

/* TESTIMONIALS */
.testimonials {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}
.testimonial-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:24px;
}
.testimonial-card {
  background:#fff;
  border-radius:14px;
  padding:24px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
.testimonial-card p {
  font-size:14px;
  color:var(--gray);
}

/* HOW IT WORKS */
.how-it-works {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}
.steps-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
}
.step-card {
  background:#fff;
  border-radius:14px;
  padding:24px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  text-align:center;
}
.center-btn {
  text-align:center;
  margin-top:30px;
}

/* FOOTER */
footer {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
  font-size: 14px;
}
.footer-phone {
  text-align:center;
  font-size:18px;
}
.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  pointer-events: none;
}

.logo-center img {
  max-height: 180px !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain;
}

@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: static;
    transform: none;
    margin-top: 10px;
  }

  .nav-links a {
    font-size: 18px;
    padding: 8px 0;
    color: #F15A24;
  }

  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .logo-center img {
    max-height: 120px;
    margin-bottom: 10px;
  }
}
/* MOBILE MENU FIX — matches your real structure */
@media (max-width: 768px) {

  /* Hide nav links until hamburger is tapped */
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(26, 26, 26, 0.95);
    width: 100%;
    padding: 20px 0;
    text-align: center;
    gap: 15px;
  }

  /* When JS toggles .active, show menu */
  .nav-links.active {
    display: flex;
  }

  /* Hamburger button styling */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2000;
  }

  .mobile-menu-btn div {
    width: 28px;
    height: 3px;
    background: #fff;
  }

  /* Navbar layout on mobile */
  .navbar {
    height: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo header spacing so it doesn't overlap hero */
  .site-header {
    margin-top: 140px; /* match your navbar height */
  }

  /* Make logo scale nicely on mobile */
  .site-header img {
    max-height: 120px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .site-header {
    background: transparent !important;
  }
}

/* ============================
   GLOBAL RESET FOR HEADER AREAbackground: #000 !important;
   ============================ */
html, body {
  
  margin: 0;
  padding: 0;
}

/* Remove any accidental white backgrounds */
header, .site-header, .site-header *, .navbar, .navbar * {
  background: transparent !important;
}

/* ============================
   NAVBAR (DESKTOP + MOBILE BASE)
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(26, 26, 26, 0.9) !important;
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* Nav links (desktop) */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #F15A24;
  text-decoration: none;
  font-size: 18px;
}

/* Hamburger button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-btn div {
  width: 28px;
  height: 3px;
  background: #fff;
}

/* ============================
   LOGO HEADER (SEPARATE BLOCK)
   ============================ */
.site-header {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  margin-top: 80px; /* sits below navbar */
}

.site-header img {
  max-height: 140px;
  width: auto;
}

/* ============================
   MOBILE LAYOUT
   ============================ */
@media (max-width: 768px) {

  /* Show hamburger */
  .mobile-menu-btn {
    display: flex;
  }

  /* Hide nav links until opened */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(26, 26, 26, 0.95) !important;
    padding: 20px 0;
    text-align: center;
    gap: 15px;
    position: absolute;
    top: 80px;
    left: 0;
  }

  .nav-links.active {
    display: flex;
  }

  /* Logo spacing on mobile */
  .site-header {
    margin-top: 140px !important; /* navbar + mobile spacing */
  }

  .site-header img {
    max-height: 120px;
  }
}
.mobile-menu-btn div {
  background: #fff !important;
}
/* ============================
   UNIFIED HEADER
   ============================ */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 140px;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

/* Logo */
.logo-area img {
  max-height: 110px;
  width: auto;
}

/* Desktop nav */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #F15A24;
  text-decoration: none;
  font-size: 18px;
}

/* Hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-btn div {
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ============================
   MOBILE
   ============================ */
@media (max-width: 768px) {

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    padding: 20px 0;
    text-align: center;
    gap: 15px;
    position: absolute;
    top: 140px;
    left: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .logo-area img {
    max-height: 90px;
  }
}
@media (max-width: 768px) {

  /* Center the logo */
  .main-header {
    justify-content: center;
  }

  /* Keep hamburger on top-left */
  .mobile-menu-btn {
    position: absolute;
    left: 20px;
    top: 35px;
  }

  /* Nav links drop down below header */
  .nav-links {
    top: 140px;
  }
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  border: 2px solid #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.lightbox-close:hover {
  color: #F15A24;
}
.hero {
    position: relative;
}


