/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap");

  /* ============================
       CSS VARIABLES
    ============================ */
    :root {
      --black: #0a0a0a;
      --black-soft: #111111;
      --black-mid: #1a1a1a;
      --black-card: #141414;
      --orange: #e85d04;
      --orange-light: #f48c06;
      --orange-pale: rgba(232, 93, 4, 0.12);
      --white: #ffffff;
      --white-dim: rgba(255, 255, 255, 0.75);
      --white-faint: rgba(255, 255, 255, 0.06);
      --gray: #888888;
      --gray-light: #cccccc;
      --border: rgba(255,255,255,0.08);
      --font-display: 'Playfair Display', serif;
      --font-body: 'DM Sans', sans-serif;
      --transition: 0.35s ease;
      --radius: 4px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }
    
    main{
        overflow-x:hidden !important;
    }
img{
	border-radius:12px !important;
}
    h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; }
    a { text-decoration: none; color: inherit; transition: color var(--transition); }
    img { max-width: 100%; }
    section { position: relative; }

    /* ============================
       UTILITIES
    ============================ */
    .text-orange { color: var(--orange); }
    .text-dim { color: var(--white-dim); }
    .text-gray { color: var(--gray); }

    .section-tag {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.9rem;
    }
    .section-heading {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--white);
    }
    .divider-line {
      width: 48px;
      height: 3px;
      background: var(--orange);
      margin: 1.2rem 0;
    }
    .divider-line.center { margin: 1.2rem auto; }

    .btn-orange {
      background: var(--orange);
      color: var(--white);
      padding: 0.75rem 2rem;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      border: 2px solid var(--orange);
      border-radius: var(--radius);
      transition: all var(--transition);
      display: inline-block;
      cursor: pointer;
    }
    .btn-orange:hover { background: transparent; color: var(--orange); }

    .btn-outline-orange {
      background: transparent;
      color: var(--orange);
      padding: 0.75rem 2rem;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      border: 2px solid var(--orange);
      border-radius: var(--radius);
      transition: all var(--transition);
      display: inline-block;
    }
    .btn-outline-orange:hover { background: var(--orange); color: var(--white); }

    .btn-white {
      background: var(--white);
      color: var(--orange);
      padding: 0.85rem 2.2rem;
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      border: 2px solid var(--white);
      border-radius: var(--radius);
      transition: all var(--transition);
      display: inline-block;
    }
    .btn-white:hover { background: transparent; color: var(--white); }

    /* ============================
       NAVBAR
    ============================ */
    #mainNav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 1.25rem 0;
      transition: all 0.4s ease;
      /* background: transparent; */
      background: #fff;
    }
    #mainNav.scrolled {
      /* background: rgba(10,10,10,0.96); */
      background: rgba(255, 255, 255, 0.642);
      backdrop-filter: blur(14px);
      padding: 0.7rem 0;
      box-shadow: 0 2px 30px rgba(0,0,0,0.6);
      border-bottom: 1px solid var(--border);
    }
    .navbar-brand {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--white);
    }
    .navbar-brand span { color: var(--orange); }
    .nav-link {
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      /* color: var(--white-dim) !important; */
      color:  #000 ;
      padding: 0.5rem 0.9rem !important;
      transition: color var(--transition);
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0.9rem;
      width: 0;
      height: 2px;
      background: var(--orange);
      transition: width var(--transition);
    }
    .nav-link:hover { color: var(--white) !important; }
    .nav-link:hover::after { width: calc(100% - 1.8rem); }
    .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 0.45rem 1.2rem !important;
      border-radius: var(--radius);
      font-size: 0.75rem;
    }
    .nav-cta:hover { background: var(--orange-light) !important; }
    .nav-cta::after { display: none; }
    .navbar-toggler { border: 1px solid var(--border); }
    .navbar-toggler-icon { filter: invert(1); }

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav{

gap: 20px !important;
  }
}

    /* ============================
       HERO
    ============================ */
    .hero-slide {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.06);
      transition: transform 7s ease;
    }
    .owl-item.active .hero-slide-bg { transform: scale(1); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      /* background: linear-gradient(110deg, rgba(0,0,0,0.84) 38%, rgba(0,0,0,0.28) 100%); */
      background: linear-gradient(110deg, rgba(189, 189, 189, 0.137) 38%, rgba(0, 0, 0, 0) 100%);
      /* background: linear-gradient(110deg, rgba(0, 0, 0, 0.389) 38%, rgba(0,0,0,0.28) 100%); */
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 1.4rem;
    }
    .hero-tag::before {
      content: '';
      display: inline-block;
      width: 30px;
      height: 2px;
      background: var(--orange);
    }
    .hero-title {
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 900;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 1.4rem;
    }
    .hero-title em { font-style: normal; color: var(--orange); }
    .hero-desc {
      font-size: 1.05rem;
      color: var(--white-dim);
      margin-bottom: 2.4rem;
      max-width: 520px;
      font-weight: 300;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    /* Owl hero controls */
    .hero-owl .owl-nav {
      position: absolute;
      bottom: 2.8rem;
      right: 5%;
      display: flex;
      gap: 0.4rem;
    }
    .hero-owl .owl-prev,
    .hero-owl .owl-next {
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255,255,255,0.28) !important;
      background: rgba(255,255,255,0.07) !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      border-radius: 2px;
      transition: all var(--transition);
      color: var(--white) !important;
      font-size: 1.1rem !important;
    }
    .hero-owl .owl-prev:hover,
    .hero-owl .owl-next:hover {
      background: var(--orange) !important;
      border-color: var(--orange) !important;
    }
    .hero-owl .owl-dots {
      position: absolute;
      bottom: 3.6rem;
      left: 50%;
      transform: translateX(-50%);
    }
    .hero-owl .owl-dot span {
      background: rgba(255,255,255,0.3) !important;
      width: 22px !important;
      height: 3px !important;
      border-radius: 0 !important;
      margin: 4px !important;
      transition: all var(--transition);
    }
    .hero-owl .owl-dot.active span { background: var(--orange) !important; width: 38px !important; }

    /* scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 1.8rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      color: var(--white-dim);
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }
    .hero-scroll-line {
      width: 1px;
      height: 36px;
      background: linear-gradient(to bottom, var(--orange), transparent);
      animation: scrollPulse 1.6s infinite;
    }
    @keyframes scrollPulse {
      0%,100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    /* ============================
       SERVICES STRIP
    ============================ */
    .services-strip {
      background: var(--black-soft);
      border-bottom: 1px solid var(--border);
    }
    .strip-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1.1rem 1.5rem;
      border-right: 1px solid var(--border);
      transition: background var(--transition);
      cursor: pointer;
    }
    .strip-item:hover { background: var(--orange-pale); }
    .strip-item:last-child { border-right: none; }
    .strip-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--orange-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      font-size: 1rem;
      flex-shrink: 0;
    }
    .strip-label {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--white);
    }
    .strip-sub { font-size: 0.68rem; color: var(--gray); }

    /* ============================
       ABOUT
    ============================ */
    .about-section { padding: 6rem 0; background: var(--black); }
    .about-img-wrap { position: relative; }
    .about-img-main {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: var(--radius);
      display: block;
    }
    .about-img-accent {
      position: absolute;
      bottom: -2rem;
      right: -2rem;
      width: 170px;
      height: 170px;
      object-fit: cover;
      border: 4px solid var(--black);
      border-radius: var(--radius);
    }
    .about-stat-badge {
      position: absolute;
      top: 2rem;
      left: -2rem;
      background: var(--orange);
      padding: 1.25rem 1.5rem;
      text-align: center;
      border-radius: var(--radius);
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }
    .stat-lbl {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
    }
    .about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
    .about-feat-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.1rem;
      background: var(--white-faint);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: border-color var(--transition), background var(--transition);
    }
    .about-feat-item:hover { border-color: var(--orange); background: var(--orange-pale); }
    .about-feat-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--orange);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .about-feat-title { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 0.15rem; }
    .about-feat-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }

    /* ============================
       PROJECTS
    ============================ */
    .projects-section { padding: 6rem 0; background: var(--black-soft); }
    .project-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
    .project-card-img {
      width: 100%;
      height: 310px;
      object-fit: cover;
      display: block;
      transition: transform 0.55s ease;
    }
    .project-card:hover .project-card-img { transform: scale(1.07); }
    .project-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 30%, transparent 70%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.4rem;
    }
    .project-client { font-size: 0.98rem; font-weight: 600; font-family: var(--font-display); color: var(--white); }
    .project-location { font-size: 0.72rem; color: var(--orange); font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; }
    .project-view-btn {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--orange);
      color: var(--white);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      opacity: 0;
      transform: translateY(-6px);
      transition: all var(--transition);
    }
    .project-card:hover .project-view-btn { opacity: 1; transform: translateY(0); }

    /* Projects owl nav */
    .projects-owl .owl-nav { display: flex; gap: 0.5rem; margin-top: 2rem; }
    .projects-owl .owl-prev,
    .projects-owl .owl-next {
      width: 42px;
      height: 42px;
      border: 1px solid var(--border) !important;
      background: transparent !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius);
      color: var(--white) !important;
      font-size: 0.95rem !important;
      transition: all var(--transition);
    }
    .projects-owl .owl-prev:hover,
    .projects-owl .owl-next:hover { background: var(--orange) !important; border-color: var(--orange) !important; }

    /* ============================
       CTA BANNER
    ============================ */
    .cta-banner {
      padding: 5rem 0;
      background: var(--orange);
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 300px;
      height: 300px;
      background: rgba(255,255,255,0.06);
      border-radius: 50%;
    }
    .cta-banner::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: 10%;
      width: 200px;
      height: 200px;
      background: rgba(255,255,255,0.06);
      border-radius: 50%;
    }
    .cta-banner-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
    }
    .cta-banner-sub { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-top: 0.75rem; }

    /* ============================
       WHY US
    ============================ */
    .why-section { padding: 6rem 0; background: var(--black); }
    .why-card {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2.2rem;
      height: 100%;
      transition: border-color var(--transition), transform var(--transition);
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 0;
      background: var(--orange);
      transition: height 0.4s ease;
    }
    .why-card:hover { border-color: var(--orange); transform: translateY(-4px); }
    .why-card:hover::before { height: 100%; }
    .why-number {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(232,93,4,0.12);
      line-height: 1;
      margin-bottom: 1rem;
    }
    .why-icon {
      width: 48px;
      height: 48px;
      background: var(--orange-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      font-size: 1.2rem;
      margin-bottom: 1.1rem;
    }
    .why-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.7rem; }
    .why-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

    /* ============================
       STATS BANNER
    ============================ */
    .stats-section {
      padding: 4rem 0;
      background: var(--black-mid);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stat-item { text-align: center; padding: 1rem; }
    .stat-value {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 3.4rem);
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .stat-desc {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gray);
    }

    /* ============================
       PROCESS
    ============================ */
    .process-section { padding: 6rem 0; background: var(--black); }
    .process-step { position: relative; padding-left: 4.5rem; margin-bottom: 2.4rem; }
    .process-step:last-child { margin-bottom: 0; }
    .process-step-num {
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 50px;
      border: 2px solid var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--orange);
    }
    .process-step-num::after {
      content: '';
      position: absolute;
      top: 50px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: calc(100% + 0.9rem);
      background: linear-gradient(to bottom, var(--orange), transparent);
    }
    .process-step:last-child .process-step-num::after { display: none; }
    .process-step-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
    .process-step-desc { font-size: 0.85rem; color: var(--gray); }
    .process-visual { border-radius: var(--radius); overflow: hidden; position: relative; }
    .process-img { width: 100%; height: 490px; object-fit: cover; filter: brightness(0.7); }
    .process-img-badge {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      background: var(--orange);
      padding: 1rem 1.4rem;
      border-radius: var(--radius);
    }
    .process-img-badge-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); }
    .process-img-badge-sub { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

    /* ============================
       TESTIMONIALS
    ============================ */
    .testimonials-section { padding: 6rem 0; background: var(--black-soft); }
    .testimonial-card {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      margin: 0.5rem;
      transition: border-color var(--transition);
    }
    .testimonial-card:hover { border-color: var(--orange); }
    .testimonial-stars { color: var(--orange); font-size: 0.82rem; margin-bottom: 1rem; }
    .testimonial-text { font-size: 0.88rem; color: var(--white-dim); line-height: 1.75; font-style: italic; margin-bottom: 1.4rem; }
    .testimonial-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
    }
    .testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--white); }
    .testimonial-role { font-size: 0.72rem; color: var(--gray); }

    /* Testimonial owl dots */
    .testimonials-owl .owl-dots { margin-top: 1.5rem; text-align: center; }
    .testimonials-owl .owl-dot span {
      background: var(--border) !important;
      width: 8px !important;
      height: 8px !important;
      border-radius: 50% !important;
      margin: 4px !important;
      transition: all var(--transition);
    }
    .testimonials-owl .owl-dot.active span { background: var(--orange) !important; width: 22px !important; border-radius: 4px !important; }

    /* ============================
       CONTACT
    ============================ */
    .contact-section { padding: 6rem 0; background: var(--black-mid); }
    .contact-form-wrap {
      background: var(--black-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2.5rem;
    }
    .form-control, .form-select {
      background: var(--black-soft) !important;
      border: 1px solid var(--border) !important;
      color: var(--white) !important;
      border-radius: var(--radius) !important;
      padding: 0.82rem 1rem !important;
      font-family: var(--font-body) !important;
      font-size: 0.86rem !important;
      transition: border-color var(--transition) !important;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--orange) !important;
      box-shadow: 0 0 0 3px rgba(232,93,4,0.14) !important;
    }
    .form-control::placeholder { color: var(--gray) !important; }
    .form-select option { background: var(--black-soft); }
    .form-label {
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--gray-light);
      margin-bottom: 0.5rem;
    }
    .contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem; }
    .contact-info-icon {
      width: 42px;
      height: 42px;
      background: var(--orange-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      font-size: 1rem;
      flex-shrink: 0;
    }
    .contact-info-lbl { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.2rem; }
    .contact-info-val { font-size: 0.95rem; font-weight: 600; color: var(--white); }

    /* ============================
       FOOTER
    ============================ */
    footer {
      background: var(--black-soft);
      border-top: 1px solid var(--border);
      padding: 2.5rem 0 1.2rem;
    }
    .footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
    .footer-logo span { color: var(--orange); }
    .footer-tagline { font-size: 0.74rem; color: var(--gray); margin-top: 0.25rem; }
    .footer-body { font-size: 0.76rem; color: var(--gray); margin-top: 0.65rem; line-height: 1.6; }
    .footer-heading {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.8rem;
    }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 0.4rem; }
    .footer-links a { font-size: 0.8rem; color: var(--gray); transition: color var(--transition); }
    .footer-links a:hover { color: var(--orange); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      margin-top: 1.75rem;
      padding-top: 1.1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .footer-copy { font-size: 0.72rem; color: var(--gray); }
    .footer-social { display: flex; gap: 0.5rem; }
    .footer-social a {
      width: 30px;
      height: 30px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
      font-size: 0.78rem;
      transition: all var(--transition);
    }
    .footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

    /* ============================
       FLOATING ELEMENTS
    ============================ */
    #backToTop {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 42px;
      height: 42px;
      background: var(--orange);
      color: var(--white);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition), transform var(--transition);
      z-index: 999;
      box-shadow: 0 4px 18px rgba(232,93,4,0.4);
    }
    #backToTop.show { opacity: 1; pointer-events: all; }
    #backToTop:hover { transform: translateY(-3px); }

    .whatsapp-float {
      position: fixed;
      bottom: 5.3rem;
      right: 2rem;
      z-index: 999;
    }
    .whatsapp-float a {
      width: 42px;
      height: 42px;
      background: #25D366;
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 4px 18px rgba(37,211,102,0.4);
      transition: transform var(--transition);
    }
    .whatsapp-float a:hover { transform: scale(1.1); }

    /* ============================
       SCROLL ANIMATIONS
    ============================ */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }

    /* ============================
       RESPONSIVE
    ============================ */
    @media (max-width: 991px) {
      .about-img-accent, .about-stat-badge { display: none; }
    }
    @media (max-width: 767px) {
      .strip-item { border-right: none; border-bottom: 1px solid var(--border); }
      .footer-bottom { flex-direction: column; text-align: center; }
      .hero-owl .owl-nav { bottom: 4.5rem; }
    }