/* =========================================
   BASE VARIABLES & GLOBAL
========================================= */
:root {
  --primary-accent: #ff6b00;
  --dark-steel: #1a1a1a;
  --bg-dark: #0a0a0c;
  --bg-light: #f8f9fa;
  --text-muted: #888888;
}

body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Global Headings */
.section-subtitle {
  color: var(--primary-accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 10px;
}
.section-title-dark {
  color: #ffffff;
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title-dark span {
  color: var(--primary-accent);
}
.section-title-light {
  color: var(--dark-steel);
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title-light span {
  color: var(--primary-accent);
}
.title-underline {
  width: 60px;
  height: 4px;
  background-color: var(--primary-accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* =========================================
   NAVBAR
========================================= */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background-color: transparent;
}
.custom-navbar.scrolled {
  padding: 15px 0;
  background-color: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.nav-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-steel);
  text-decoration: none;
  transition: color 0.4s ease;
}
.custom-navbar.scrolled .nav-brand {
  color: #ffffff;
}
.nav-brand span {
  color: var(--primary-accent);
}
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.nav-link {
  color: var(--dark-steel);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
  padding: 5px 0;
}
.custom-navbar.scrolled .nav-link {
  color: #e0e0e0;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary-accent);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-accent);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-nav-call {
  background-color: var(--primary-accent);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-nav-call:hover {
  background-color: #e55f00;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Mobile Menu */
.mobile-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
  z-index: 1001;
}
.bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary-accent);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.mobile-toggle.active .bar-1 {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-toggle.active .bar-2 {
  opacity: 0;
}
.mobile-toggle.active .bar-3 {
  transform: rotate(-45deg) translate(6px, -7px);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 999;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: right 0.5s ease;
}
.mobile-drawer.open {
  right: 0;
}
.mobile-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #ebedee 100%);
  padding: 150px 0 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.text-accent {
  color: var(--primary-accent) !important;
}
.hero-p {
  font-size: 1.15rem;
  line-height: 1.7;
}
.cta-btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 24px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
}
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.btn-call {
  background-color: var(--primary-accent);
  color: white;
  border-color: var(--primary-accent);
}
.btn-call:hover {
  background-color: #e55f00;
  color: white;
}
.btn-wa {
  background-color: #25d366;
  color: white;
}
.btn-wa:hover {
  background-color: #20bd5a;
  color: white;
}
.btn-dir {
  background-color: transparent;
  color: var(--dark-steel);
  border-color: var(--dark-steel);
}
.btn-dir:hover {
  background-color: var(--dark-steel);
  color: white;
}
.btn-quote {
  background-color: var(--dark-steel);
  color: white;
}
.btn-quote:hover {
  background-color: #000;
  color: white;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 16px;
}
.hero-img {
  border-radius: 16px;
  transition: transform 0.6s ease;
  object-fit: cover;
  width: 100%;
}
.hero-img-wrapper:hover .hero-img {
  transform: scale(1.03);
}
.glass-badge {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: -20px;
  left: -30px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.badge-icon {
  width: 45px;
  height: 45px;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* =========================================
   HIGHLIGHTS SECTION
========================================= */
.highlights-section {
  background-color: var(--bg-dark);
  padding: 100px 0;
  position: relative;
}
.highlights-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.05) 0%,
    rgba(15, 16, 18, 0) 70%
  );
  pointer-events: none;
}
.highlight-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
}
.highlight-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 107, 0, 0.15);
}
.icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.2) 0%,
    rgba(255, 107, 0, 0.05) 100%
  );
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s ease;
  color: var(--primary-accent);
}
.highlight-card:hover .icon-wrapper {
  background: var(--primary-accent);
  transform: scale(1.1);
  color: #fff;
}
.highlight-card h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
  padding: 100px 0;
  overflow: hidden;
}
.image-composition {
  position: relative;
  border-radius: 20px;
  z-index: 1;
}
.main-image {
  border-radius: 20px;
  width: 100%;
  height: 550px;
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  transition: transform 0.7s ease;
}
.image-composition:hover .main-image {
  transform: scale(1.02);
}
.glass-experience-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float-slow 5s ease-in-out infinite;
}
.exp-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-accent);
  line-height: 1;
}
.exp-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-steel);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}
@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.about-p {
  font-size: 1.1rem;
  line-height: 1.8;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feature-chip {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--dark-steel);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.feature-chip i {
  color: var(--primary-accent);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}
.feature-chip:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.2);
}
.feature-chip:hover i {
  transform: scale(1.2);
}

/* =========================================
   SERVICES SECTION
========================================= */
.services-section {
  background-color: var(--bg-dark);
  padding: 100px 0;
}
.service-card {
  position: relative;
  height: 265px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}
.service-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(255, 107, 0, 0.15);
  transform: translateY(-10px);
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover .service-img {
  transform: scale(1.1);
}
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 12, 0.2) 0%,
    rgba(10, 10, 12, 0.9) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  z-index: 2;
  transition: all 0.4s ease;
}
.service-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-title i {
  color: var(--primary-accent);
}
.service-details {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  position: absolute;
  bottom: -100%;
  left: 15px;
  right: 15px;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 3;
}
.service-card:hover .service-details {
  bottom: 20px;
  opacity: 1;
}
.service-card:hover .service-overlay {
  justify-content: flex-start;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-chip {
  background: rgba(255, 107, 0, 0.15);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 0, 0.3);
}

/* =========================================
   WHY CHOOSE US SECTION
========================================= */
.why-choose-section {
  background-color: var(--bg-light);
  padding: 100px 0;
}
.sticky-visual {
  position: sticky;
  top: 100px;
}
.img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.img-wrapper .main-img {
  height: 600px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.img-wrapper:hover .main-img {
  transform: scale(1.05);
}
.guarantee-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
}
.guarantee-icon {
  font-size: 2.5rem;
  color: var(--primary-accent);
}
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
  cursor: default;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.2);
}
.why-card .icon-box {
  width: 55px;
  height: 55px;
  background: rgba(255, 107, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-accent);
  transition: all 0.4s ease;
}
.why-card:hover .icon-box {
  background: var(--primary-accent);
  color: #fff;
  transform: rotateY(180deg);
}
.why-text {
  font-weight: 700;
  color: var(--dark-steel);
  font-size: 1.05rem;
  margin: 0;
}

/* =========================================
   PROCESS SECTION
========================================= */
.process-section {
  background-color: var(--bg-dark);
  padding: 120px 0;
}
.timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 20px 0;
}
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(-50%);
  border-radius: 2px;
}
.timeline-progress {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  background: var(--primary-accent);
  transform: translateX(-50%);
  border-radius: 2px;
  height: 0%;
  box-shadow: 0 0 15px var(--primary-accent);
  transition: height 0.1s ease-out;
}
.timeline-item {
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.timeline-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--bg-dark);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  z-index: 2;
  transition: all 0.4s ease;
}
.timeline-item.active .timeline-icon {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
  transform: translate(-50%, -50%) scale(1.1);
}
.timeline-content {
  width: 42%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
}
.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
}
.timeline-item:nth-child(even) .timeline-content::before {
  right: -20px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.08);
}
.timeline-item:nth-child(odd) .timeline-content::before {
  left: -20px;
  border-color: transparent rgba(255, 255, 255, 0.08) transparent transparent;
}
.timeline-content:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 107, 0, 0.1);
}
.step-num {
  font-size: 0.85rem;
  color: var(--primary-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}
.step-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
.timeline-spacer {
  width: 42%;
}

/* =========================================
   GALLERY SECTION
========================================= */
.gallery-section {
  background-color: var(--bg-light);
  padding: 100px 0;
}
.filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.filter-btn {
  background: #fff;
  color: var(--dark-steel);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: var(--primary-accent);
  color: var(--primary-accent);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: var(--primary-accent);
  color: #fff;
  border-color: var(--primary-accent);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: scale(1);
  opacity: 1;
  transition: all 0.5s ease;
}
.gallery-item.show-animate {
  animation: fadeInScale 0.5s ease forwards;
}
@keyframes fadeInScale {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.view-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease;
}
.gallery-item:hover .view-btn {
  transform: translateY(0);
  opacity: 1;
}
.project-category {
  color: var(--primary-accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}
.project-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.15s;
}
.gallery-item:hover .project-category,
.gallery-item:hover .project-title {
  transform: translateY(0);
}

/* =========================================
   INDUSTRIES SECTION
========================================= */
.industries-section {
  background-color: var(--bg-dark);
  padding: 100px 0;
  position: relative;
}
.industries-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.industry-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
}
.industry-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}
.industry-card .icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1),
    rgba(255, 107, 0, 0.02)
  );
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--primary-accent);
  transition: all 0.5s ease;
}
.industry-card:hover .icon-box {
  background: var(--primary-accent);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}
.industry-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

/* =========================================
   REVIEWS SECTION
========================================= */
.reviews-section {
  background-color: var(--bg-light);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
  animation: float-orb 8s infinite alternate ease-in-out;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 0, 0.15);
  top: -100px;
  left: -100px;
}
.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 0, 0, 0.05);
  bottom: -50px;
  right: -50px;
  animation-delay: -4s;
}
@keyframes float-orb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 50px) scale(1.1);
  }
}
.review-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition:
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.review-card:hover {
  box-shadow: 0 25px 50px rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.3);
}
.quote-watermark {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.03);
  transform: translateZ(-20px);
}
.card-content {
  position: relative;
  z-index: 1;
  transform: translateZ(30px);
}
.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.review-text {
  font-size: 1.1rem;
  color: #4a4a4a;
  font-style: italic;
  margin-bottom: 30px;
}
.customer-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}
.customer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-accent), #ff8c3a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}
.customer-info h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-steel);
}
.customer-info span {
  font-size: 0.85rem;
  color: #888;
}
.verified-badge {
  color: #25d366;
  margin-left: 5px;
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
  background-color: var(--bg-dark);
  padding: 120px 0;
}
.sticky-header {
  position: sticky;
  top: 120px;
}
.support-badge {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
.support-icon {
  width: 45px;
  height: 45px;
  background: var(--primary-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.4s ease;
  overflow: hidden;
}
.faq-item:hover {
  border-color: rgba(255, 107, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
}
.faq-item.active {
  border-color: var(--primary-accent);
  background: rgba(255, 107, 0, 0.05);
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.3s ease;
}
.faq-item.active .faq-btn {
  color: var(--primary-accent);
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.4s ease;
}
.faq-item.active .faq-icon {
  background: var(--primary-accent);
  transform: rotate(135deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-text {
  padding: 0 30px 24px 30px;
  margin: 0;
  color: #a0a0a0;
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
  background-color: #f4f6f8;
  padding: 120px 0;
  position: relative;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-bottom: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.info-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.2);
}
.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary-accent);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  transform-origin: bottom;
}
.info-card:hover::before {
  transform: scaleY(1);
}
.info-card .info-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 107, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-accent);
  transition: all 0.4s ease;
}
.info-card:hover .info-icon {
  background: var(--primary-accent);
  color: #fff;
}
.info-text h5 {
  font-weight: 700;
  color: var(--dark-steel);
  margin: 0 0 3px 0;
  font-size: 1.1rem;
}
.info-text p {
  margin: 0;
  color: #6c757d;
  font-size: 0.95rem;
}
.action-btns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}
.btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-loc {
  grid-column: span 2;
  background: var(--dark-steel);
  color: #fff;
}
.btn-loc:hover {
  background: #000;
  transform: translateY(-3px);
  color: #fff;
}

.quote-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.form-title {
  font-weight: 800;
  color: var(--dark-steel);
  margin-bottom: 25px;
}
.form-floating > .form-control,
.form-floating > .form-select {
  border: 2px solid #eef0f2;
  border-radius: 10px;
  background-color: #f9fbfc;
  transition: all 0.3s ease;
}
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary-accent);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}
.btn-submit {
  background: var(--dark-steel);
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
  width: 100%;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.btn-submit:hover {
  background: var(--primary-accent);
  transform: translateY(-2px);
}

/* =========================================
   FOOTER SECTION
========================================= */
.footer-section {
  background-color: #050507;
  padding: 80px 0 0 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}
.footer-brand span {
  color: var(--primary-accent);
}
.footer-about {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-accent);
  border-radius: 2px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.footer-links a i {
  font-size: 0.7rem;
  margin-right: 8px;
  color: var(--primary-accent);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--primary-accent);
  transform: translateX(5px);
}
.footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
  transition: all 0.3s ease;
}
.footer-contact li:hover .contact-icon {
  background: var(--primary-accent);
  color: #fff;
}
.contact-text h6 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 5px 0;
}
.contact-text p,
.contact-text a {
  color: var(--text-muted);
  margin: 0;
  text-decoration: none;
}
.footer-bottom {
  background-color: #020203;
  padding: 20px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright-text {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-accent);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 99;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #e55f00;
  transform: translateY(-5px);
  color: white;
}

/* =========================================
   ANIMATION CLASSES
========================================= */
.reveal-left,
.ab-reveal-left,
.pr-reveal-left,
.ct-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal-right,
.ab-reveal-right,
.pr-reveal-right,
.ct-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hl-stagger-reveal,
.ab-reveal-up,
.sv-stagger-up,
.wc-reveal,
.ind-stagger,
.rev-stagger,
.fq-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.active {
  opacity: 1;
  transform: translate(0);
}
.timeline-item.active .pr-reveal-left,
.timeline-item.active .pr-reveal-right {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================
   MEDIA QUERIES (Mobile Adjustments)
========================================= */
@media (max-width: 991px) {
  .glass-badge {
    left: 10px;
    bottom: -10px;
  }
  .glass-experience-card {
    right: 20px;
    bottom: -20px;
    padding: 15px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .sticky-visual,
  .sticky-header {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
  .img-wrapper .main-img {
    height: 400px;
  }
  .quote-form-card {
    padding: 30px 20px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .service-card {
    height: 350px;
  }
  .service-details {
    bottom: 15px;
    opacity: 1;
    background: rgba(10, 10, 12, 0.85);
  }
  .timeline-line,
  .timeline-progress {
    left: 30px;
  }
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-end;
  }
  .timeline-icon {
    left: 30px;
  }
  .timeline-content {
    width: calc(100% - 80px);
  }
  .timeline-content::before {
    left: -20px !important;
    right: auto !important;
    border-color: transparent rgba(255, 255, 255, 0.08) transparent transparent !important;
  }
}
