
    /* ── TOKENS ── */
    :root {
      --orange:     #1691d0;
      --orange-dk:  #005885;
      --navy:       #0d1b2a;
      --navy-mid:   #1a2e44;
      --charcoal:   #2d3748;
      --text:       #4a5568;
      --light-bg:   #f7f7f5;
      --border:     #e2e8f0;
      --white:      #ffffff;
      --heading-font: 'metropolis', sans-serif;
      --body-font:    'metropolis', sans-serif;
      --transition:   .35s cubic-bezier(.4,0,.2,1);
      --shadow-sm:    0 4px 14px rgba(0,0,0,.08);
      --shadow-md:    0 8px 30px rgba(0,0,0,.14);
      --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--body-font);
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5,h6 {
      font-family: var(--heading-font);
      font-weight: 700;
      color: var(--navy);
    }

    /* ── UTILITIES ── */
    .text-orange { color: var(--orange) !important; }
    .bg-orange   { background-color: var(--orange) !important; }
    .bg-navy     { background-color: var(--navy) !important; }

    .btn-orange {
      background: var(--orange);
      color: #fff;
      border: 2px solid var(--orange);
      font-family: var(--heading-font);
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: .65rem 1.8rem;
      border-radius: 3px;
      transition: var(--transition);
    }
    .btn-orange:hover {
      background: var(--orange-dk);
      border-color: var(--orange-dk);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .btn-outline-white {
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
      font-family: var(--heading-font);
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: .65rem 1.8rem;
      border-radius: 3px;
      transition: var(--transition);
    }
    .btn-outline-white:hover {
      background: #fff;
      color: var(--navy);
      transform: translateY(-2px);
    }

    .section-label {
      font-family: var(--heading-font);
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--orange);
      display: flex;
      align-items: center;
      gap: .5rem;
      margin-bottom: .75rem;
    }
    .section-label::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 2px;
      background: var(--orange);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--navy);
    }

    .divider-orange {
      width: 50px;
      height: 3px;
      background: var(--orange);
      margin: .75rem auto 0;
    }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.from-left  { transform: translateX(-50px); }
    .reveal.from-right { transform: translateX(50px); }
    .reveal.scale-up   { transform: scale(.9); }
    .reveal.visible {
      opacity: 1;
      transform: translate(0) scale(1);
    }
    

    /* ── NAVBAR ── */
    .navbar {
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0,0,0,.08);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1050;
    }
    .navbar-brand {
      font-family: var(--heading-font);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--navy) !important;
      padding: 1rem 0;
    }
    .navbar-brand span { color: var(--orange); }

    .navbar-nav .nav-link {
      font-family: var(--heading-font);
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: .04em;
      color: var(--charcoal) !important;
      padding: 1.4rem .9rem !important;
      position: relative;
      transition: color var(--transition);
    }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: .9rem;
      right: .9rem;
      height: 2px;
      background: var(--orange);
      transform: scaleX(0);
      transition: transform var(--transition);
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--orange) !important;
    }
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      transform: scaleX(1);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
      background: var(--navy);
    }

    /* Full-bleed background image layer */
    .hero-bg-img {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      opacity: .32;
      display: block;
    }
    /* Directional gradient — strong navy left, fades right */
    .hero-bg-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        110deg,
        rgba(13,27,42,1) 0%,
        rgba(13,27,42,.82) 45%,
        rgba(13,27,42,.35) 100%
      );
    }

    /* Hex / honeycomb pattern overlay */
    .hero-hex {
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: .18;
      background-image: url("./Img/Hero-image.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
}

    /* Glassmorphism badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      background: rgba(255,255,255,.10);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.20);
      color: var(--orange);
      font-family: var(--heading-font);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      padding: .4rem 1rem;
      border-radius: 4px;
      margin-bottom: 1.4rem;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1.08;
      color: #fff;
      margin-bottom: 1.4rem;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--orange);
    }

    /* Left-border tagline (from reference code) */
    .hero-tagline {
      color: rgba(255,255,255,.75);
      font-size: 1.1rem;
      max-width: 580px;
      line-height: 1.72;
      margin-bottom: 2.2rem;
      border-left: 4px solid var(--orange);
      padding-left: 1.1rem;
    }

    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

    /* Float animation (perpetual gentle levitate) */
    @keyframes floatAnim {
      0%   { transform: translateY(0); }
      50%  { transform: translateY(-14px); }
      100% { transform: translateY(0); }
    }
    .float-anim { animation: floatAnim 5s ease-in-out infinite; }

    /* Bouncing scroll indicator */
    @keyframes bouncePulse {
      0%, 100% { transform: translateY(0); opacity: .7; }
      50%       { transform: translateY(8px); opacity: 1; }
    }
    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .3rem;
      animation: bouncePulse 1.6s ease-in-out infinite;
      cursor: pointer;
      text-decoration: none;
    }
    .scroll-indicator span {
      display: block;
      width: 24px;
      height: 24px;
      border-right: 2px solid rgba(255,255,255,.7);
      border-bottom: 2px solid rgba(255,255,255,.7);
      transform: rotate(45deg);
      margin-top: -10px;
    }
    .scroll-indicator span:first-child { opacity: .4; }
    .scroll-indicator span:nth-child(2) { opacity: .7; }
    .scroll-indicator span:last-child   { opacity: 1; }

    /* Stats bar */
    .stats-bar {
      position: relative;
      z-index: 2;
      background: var(--orange);
      padding: 1.5rem 0;
    }
    .stat-item {
      text-align: center;
      padding: .5rem 1rem;
      border-right: 1px solid rgba(255,255,255,.3);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: var(--heading-font);
      font-size: 2.4rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .stat-label {
      font-size: .8rem;
      color: rgba(255,255,255,.85);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-top: .2rem;
    }

    /* ── ABOUT ── */
    #about { background: var(--white); padding: 6rem 0; }

    .about-img-wrap {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
    }
    .about-img-wrap img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }
    .about-img-wrap:hover img { transform: scale(1.04); }

    .experience-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: var(--orange);
      color: #fff;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: var(--heading-font);
      text-align: center;
      box-shadow: var(--shadow-md);
      border: 4px solid #fff;
    }
    .experience-badge .num {
      font-size: 2.4rem;
      font-weight: 800;
      line-height: 1;
    }
    .experience-badge .lbl {
      font-size: .7rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 600;
    }

    .about-feature {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .about-feature-icon {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      background: rgba(249,115,22,.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      font-size: 1.2rem;
      transition: var(--transition);
    }
    .about-feature:hover .about-feature-icon {
      background: var(--orange);
      color: #fff;
      transform: scale(1.1);
    }
    .about-feature-text h6 {
      font-family: var(--heading-font);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: .2rem;
      color: var(--navy);
    }
    .about-feature-text p {
      font-size: .9rem;
      margin: 0;
      line-height: 1.6;
    }

    /* ── SERVICES ── */
    #services { background: var(--light-bg); padding: 6rem 0; }

    .services-img-col {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
    }
    .services-img-col img {
      width: 100%;
      height: 100%;
      min-height: 360px;
      object-fit: cover;
      display: block;
    }
    .services-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,27,42,.9) 0%, rgba(13,27,42,.3) 60%);
      display: flex;
      align-items: flex-end;
      padding: 2rem;
    }
    .services-img-overlay p {
      font-family: var(--heading-font);
      font-size: 1.3rem;
      font-weight: 700;
      color: #fff;
      margin: 0;
      line-height: 1.3;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 1.5rem;
      height: 100%;
      transition: var(--transition);
      cursor: default;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--orange);
      transform: scaleY(0);
      transition: transform var(--transition);
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: transparent;
    }
    .service-card:hover::before { transform: scaleY(1); }

    .service-icon {
      width: 52px;
      height: 52px;
      background: rgba(249,115,22,.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      font-size: 1.3rem;
      margin-bottom: .9rem;
      transition: var(--transition);
    }
    .service-card:hover .service-icon {
      background: var(--orange);
      color: #fff;
      transform: rotate(10deg) scale(1.05);
    }
    .service-card h5 {
      font-family: var(--heading-font);
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: .5rem;
    }
    .service-card p { font-size: .88rem; margin: 0; line-height: 1.65; }

    /* ── NUMBERS ── */
    #numbers {
      background: var(--white);
      padding: 5rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .numbers-left h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      line-height: 1.2;
    }
    .counter-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 0;
    }
    .counter-icon {
      width: 56px;
      height: 56px;
      background: rgba(249,115,22,.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      font-size: 1.3rem;
      flex-shrink: 0;
    }
    .counter-val {
      font-family: var(--heading-font);
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
    }
    .counter-lbl {
      font-size: .85rem;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    /* ── PROJECTS ── */
    #projects { background: var(--light-bg); padding: 6rem 0; }

    .filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
    .filter-btn {
      font-family: var(--heading-font);
      font-weight: 600;
      font-size: .9rem;
      letter-spacing: .05em;
      text-transform: uppercase;
      padding: .5rem 1.4rem;
      border-radius: 2px;
      border: 2px solid var(--border);
      background: var(--white);
      color: var(--charcoal);
      cursor: pointer;
      transition: var(--transition);
    }
    .filter-btn:hover,
    .filter-btn.active {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
    }

    .project-card {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      cursor: pointer;
    }
    .project-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }
    .project-card:hover img { transform: scale(1.08); }
    .project-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,27,42,.95) 0%, transparent 55%);
      opacity: 0;
      transition: opacity var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.25rem;
    }
    .project-card:hover .project-overlay { opacity: 1; }
    .project-overlay h6 {
      font-family: var(--heading-font);
      font-size: 1.1rem;
      color: #fff;
      margin: 0 0 .2rem;
    }
    .project-overlay span {
      font-size: .8rem;
      color: var(--orange);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .project-overlay-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%) scale(0);
      width: 48px;
      height: 48px;
      background: var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.1rem;
      transition: transform .3s ease .05s;
    }
    .project-card:hover .project-overlay-icon { transform: translate(-50%,-50%) scale(1); }

    /* ── HOW WE WORK ── */
    #how-we-work { background: var(--white); padding: 6rem 0; }

    .step-card {
      text-align: center;
      padding: 2rem 1.5rem;
      position: relative;
      transition: var(--transition);
    }
    .step-card::after {
      content: '';
      position: absolute;
      top: 2.5rem;
      right: 0;
      width: calc(50% - 40px);
      height: 2px;
      background: var(--border);
    }
    .step-card:last-child::after { display: none; }
    .step-card::before {
      content: '';
      position: absolute;
      top: 2.5rem;
      left: 0;
      width: calc(50% - 40px);
      height: 2px;
      background: var(--border);
    }
    .step-card:first-child::before { display: none; }

    .step-icon-wrap {
      width: 80px;
      height: 80px;
      background: rgba(249,115,22,.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
      color: var(--orange);
      font-size: 1.6rem;
      position: relative;
      z-index: 1;
      transition: var(--transition);
      border: 2px solid hwb(212 0% 74%);
    }
    .step-card:hover .step-icon-wrap {
      background: var(--orange);
      color: #fff;
      transform: scale(1.1);
      box-shadow: 0 8px 24px rgba(249,115,22,.35);
    }
    .step-number {
      position: absolute;
      top: -8px;
      right: -8px;
      width: 28px;
      height: 28px;
      background: var(--navy);
      color: #fff;
      border-radius: 50%;
      font-family: var(--heading-font);
      font-size: .8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .step-card h5 {
      font-family: var(--heading-font);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: .6rem;
    }
    .step-card p { font-size: .88rem; line-height: 1.65; }

    /* ── TEAM ── */
    #team { background: var(--light-bg); padding: 6rem 0; }

    .team-card {
      background: var(--white);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-md);
    }
    .team-img-wrap {
      position: relative;
      overflow: hidden;
    }
    .team-img-wrap img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }
    .team-card:hover .team-img-wrap img { transform: scale(1.06); }
    .team-social {
      position: absolute;
      inset: 0;
      background: rgba(13,27,42,.7);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .75rem;
      opacity: 0;
      transition: opacity var(--transition);
    }
    .team-card:hover .team-social { opacity: 1; }
    .team-social a {
      width: 38px;
      height: 38px;
      background: var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .9rem;
      text-decoration: none;
      transform: translateY(20px);
      transition: var(--transition);
    }
    .team-card:hover .team-social a { transform: translateY(0); }
    .team-card:hover .team-social a:nth-child(2) { transition-delay: .05s; }
    .team-card:hover .team-social a:nth-child(3) { transition-delay: .1s; }
    .team-card:hover .team-social a:hover { background: var(--orange-dk); }

    .team-info {
      padding: 1.25rem;
      border-top: 3px solid var(--orange);
    }
    .team-info h5 {
      font-family: var(--heading-font);
      font-size: 1.15rem;
      margin-bottom: .15rem;
    }
    .team-info span {
      font-size: .85rem;
      color: var(--orange);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--white); padding: 6rem 0; }

    .testimonial-card {
      background: var(--light-bg);
      border-radius: 4px;
      padding: 2rem;
      height: 100%;
      border: 1px solid var(--border);
      position: relative;
      transition: var(--transition);
    }
    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: var(--orange);
    }
    .testimonial-card .quote-icon {
      font-size: 3rem;
      color: var(--orange);
      opacity: .2;
      line-height: 1;
      font-family: Georgia, serif;
      position: absolute;
      top: 1rem;
      right: 1.5rem;
    }
    .stars { color: #ffc107; font-size: .95rem; margin-bottom: .9rem; }
    .testimonial-card p {
      font-size: .92rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
      font-style: italic;
    }
    .reviewer { display: flex; align-items: center; gap: .85rem; }
    .reviewer-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--orange);
    }
    .reviewer-name {
      font-family: var(--heading-font);
      font-weight: 700;
      font-size: 1rem;
      color: var(--navy);
    }
    .reviewer-role {
      font-size: .8rem;
      color: var(--text);
    }

    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: .5rem;
      margin-top: 2rem;
    }
    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
      transition: var(--transition);
    }
    .dot.active { background: var(--orange); width: 24px; border-radius: 5px; }

    /* ── FAQ ── */
    #faq { background: var(--light-bg); padding: 6rem 0; }
    .faq-wrap { max-width: 760px; margin: 0 auto; }

    .accordion-item {
      border: none;
      border-bottom: 1px solid var(--border);
      background: transparent;
    }
    .accordion-button {
      font-family: var(--heading-font);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      background: transparent;
      box-shadow: none !important;
      padding: 1.25rem 0;
    }
    .accordion-button:not(.collapsed) { color: var(--orange); }
    .accordion-button::after {
      filter: none;
      background-image: none;
      content: '\f067';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: .8rem;
      width: auto;
      height: auto;
      background: none;
      color: var(--orange);
    }
    .accordion-button:not(.collapsed)::after {
      content: '\f068';
      transform: none;
    }
    .accordion-body {
      font-size: .92rem;
      line-height: 1.75;
      padding: 0 0 1.25rem;
      color: var(--text);
    }

    /* ── CTA ── */
    #cta {
      background: var(--navy);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1200&auto=format&fit=crop') center/cover no-repeat;
      opacity: .08;
    }
    .cta-badge {
      font-family: var(--heading-font);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: .75rem;
    }
    .cta-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: #fff;
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .cta-features { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
    .cta-features li {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      color: rgba(255,255,255,.8);
      font-size: .95rem;
      margin-bottom: .7rem;
    }
    .cta-features li i { color: var(--orange); margin-top: .15rem; flex-shrink: 0; }

    .cta-big-number {
      background: var(--orange);
      border-radius: 4px;
      padding: 1.25rem 2rem;
      display: inline-block;
      margin-bottom: 1.5rem;
    }
    .cta-big-number .num {
      font-family: var(--heading-font);
      font-size: 3.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .cta-big-number .lbl {
      font-size: .8rem;
      color: rgba(255,255,255,.85);
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    .cta-img-wrap {
      position: relative;
    }
    .cta-img-wrap img {
      width: 100%;
      border-radius: 4px;
      max-height: 350px;
      object-fit: cover;
    }

    /* ── CONTACT ── */
    #contact { background: var(--white); padding: 6rem 0; }

    .contact-info-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .contact-info-icon {
      width: 50px;
      height: 50px;
      background: rgba(249,115,22,.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--orange);
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: var(--transition);
    }
    .contact-info-item:hover .contact-info-icon {
      background: var(--orange);
      color: #fff;
    }
    .contact-info-text h6 {
      font-family: var(--heading-font);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: .2rem;
      color: var(--navy);
    }
    .contact-info-text p { font-size: .9rem; margin: 0; }

    .form-control, .form-select {
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: .75rem 1rem;
      font-family: var(--body-font);
      font-size: .92rem;
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(249,115,22,.15);
    }
    textarea.form-control { min-height: 130px; resize: vertical; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,.7);
      padding: 4rem 0 0;
    }
    .footer-brand {
      font-family: var(--heading-font);
      font-size: 1.8rem;
      font-weight: 800;
      color: #fff;
    }
    .footer-brand span { color: var(--orange); }
    footer p { font-size: .9rem; line-height: 1.7; }
    footer h6 {
      font-family: var(--heading-font);
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.25rem;
      position: relative;
      padding-bottom: .7rem;
    }
    footer h6::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background: var(--orange);
    }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: .6rem; }
    .footer-links a {
      color: rgba(255,255,255,.65);
      text-decoration: none;
      font-size: .9rem;
      transition: color var(--transition);
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    .footer-links a::before {
      content: '›';
      color: var(--orange);
      font-size: 1.1rem;
    }
    .footer-links a:hover { color: var(--orange); padding-left: 4px; }
    .footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.7);
      font-size: .85rem;
      text-decoration: none;
      transition: var(--transition);
    }
    .footer-social a:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
      transform: translateY(-3px);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      margin-top: 3rem;
      padding: 1.25rem 0;
      text-align: center;
      font-size: .85rem;
    }

    /* ── BACK TO TOP ── */
    #backToTop {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 44px;
      height: 44px;
      background: var(--orange);
      color: #fff;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 9999;
      box-shadow: 0 4px 14px rgba(249,115,22,.45);
    }
    #backToTop.show { opacity: 1; visibility: visible; }
    #backToTop:hover { background: var(--orange-dk); transform: translateY(-3px); }

    /* ── HERO CONTENT ANIMATION ── */
    .hero-content > * {
      opacity: 0;
      transform: translateY(28px);
      animation: heroIn .8s cubic-bezier(.22,.61,.36,1) forwards;
    }
    .hero-content > *:nth-child(1) { animation-delay: .15s; }
    .hero-content > *:nth-child(2) { animation-delay: .3s;  }
    .hero-content > *:nth-child(3) { animation-delay: .48s; }
    .hero-content > *:nth-child(4) { animation-delay: .62s; }

    @keyframes heroIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .step-card::before, .step-card::after { display: none; }
      .experience-badge { right: 0; }
    }
    @media (max-width: 767px) {
      #hero { min-height: 80vh; }
      .hero h1 { font-size: 2.8rem; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
      .stat-item:last-child { border-bottom: none; }
      .about-img-wrap img { height: 300px; }
    }