:root {
    --black: #0a0a0a;
    --black-2: #111111;
    --black-3: #1a1a1a;
    --black-4: #222222;
    --orange: #E85C0D;
    --orange-light: #FF7A2F;
    --orange-glow: rgba(232,92,13,0.15);
    --orange-border: rgba(232,92,13,0.3);
    --white: #ffffff;
    --white-70: rgba(255,255,255,0.7);
    --white-40: rgba(255,255,255,0.4);
    --white-10: rgba(255,255,255,0.08);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Barlow', sans-serif;
    --font-condensed: 'Barlow Condensed', sans-serif;
    --icon-size: 22px;
  }

/* Light-theme overrides when `data-theme="light"` is set on the root element */
:root[data-theme="light"] {
  --black: #ffffff;
  --black-2: #f7f7f7;
  --black-3: #efefef;
  --black-4: #e9e9e9;
  --orange: #E85C0D;
  --orange-light: #FF7A2F;
  --orange-glow: rgba(232,92,13,0.06);
  --orange-border: rgba(232,92,13,0.12);
  --white: #0a0a0a;
  --white-70: rgba(10,10,10,0.7);
  --white-40: rgba(10,10,10,0.4);
  --white-10: rgba(10,10,10,0.08);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --icon-size: 22px;
}

/* Theme toggle button */
.theme-toggle {
  background: transparent;
  border: none;
  color: var(--white-70);
  font-size: 1.15rem;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.16s ease, transform 0.12s ease;
}
.theme-toggle:hover { background: rgba(255,255,255,0.04); transform: translateY(-1px); }
:root[data-theme="light"] .theme-toggle:hover { background: rgba(10,10,10,0.04); }

  *, *::before, *::after { margin: 0; padding: 0; ; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    cursor: auto;
  }

  /* Custom cursor visuals (visible above animations) */
  .cursor, .cursor-ring { display: none !important; }


  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

  /* NAVBAR */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--orange-border);
  }
  .nav-logo {
    font-family: var(--font-condensed);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: -4%;
  }
  .nav-logo span { color: var(--orange); }

  .nav-logo-img {
    height: 9.9rem;
    width: auto;
  }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--white-70);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--orange);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
  }
  .nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }
  .nav-cta::after { display: none !important; }

  /* HERO */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80');
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: heroZoom 12s ease-out forwards;
  }
  @keyframes heroZoom { to { transform: scale(1); } }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 55%, rgba(10,10,10,0.3) 100%);
  }
  .hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(232,92,13,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(232,92,13,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    max-width: 900px;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s ease forwards;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: var(--orange);
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s ease forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--orange);
  }
  .hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white-70);
    max-width: 520px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s ease forwards;
  }
  .hero-actions {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s ease forwards;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--orange);
    color: var(--white);
    padding: 0.9rem 2rem;
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  .btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232,92,13,0.4);
  }
  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 0.9rem 2rem;
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
  }
  .btn-outline:hover {
    border-color: var(--orange);
    background: var(--orange-glow);
    transform: translateY(-2px);
  }
  .hero-stats {
    position: absolute;
    bottom: 3rem;
    left: 8%;
    right: 8%;
    display: flex;
    gap: 3rem;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 0.8s 1.1s ease forwards;
  }
  .hero-stat-item { display: flex; flex-direction: column; }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-40);
    margin-top: 0.3rem;
  }
  .hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    align-self: center;
  }
  .hero-scroll-line {
    position: absolute;
    right: 5%;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s 1.5s ease forwards;
  }
  .hero-scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-40);
    writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollPulse 2s infinite;
  }
  @keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* SECTION BASE */
  section { position: relative; overflow: hidden; }
  .section-inner { padding: 7rem 8%; }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.2rem;
  }
  .section-label::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--orange);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .section-title em { color: white; font-style: italic; }
  .section-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white-70);
    max-width: 560px;
  }

  /* REVEAL ANIMATION */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* MARQUEE */
  .marquee-section {
    background: white;
    padding: 1.1rem 0;
    overflow: hidden;
  }
  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    flex-shrink: 0;
  }
  .marquee-dot { width: 6px; height: 6px; background: var(--black); border-radius: 50%; opacity: 0.4; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SERVICES */
  #services { background: var(--black-2); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .service-card {
    background: var(--black-2);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(105, 95, 95)  0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .service-card:hover { background: var(--black-3); }
  .service-card:hover::before { opacity: 1; }
  .service-card-num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: white;
    position: absolute;
    top: 1rem; right: 2rem;
    line-height: 1;
    transition: color 0.4s ease;
    user-select: none;
  }
  .service-card:hover .service-card-num { color: white; }
  .service-img {
    width: 79%;
    height: 270px;
    object-fit: cover;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    filter: brightness(0.8) saturate(0.9);
    transition: filter 0.4s ease, transform 0.5s ease;
    overflow: hidden;
    display: block;
  }
  .service-card:hover .service-img { filter: brightness(0.9) saturate(1.1); transform: scale(1.02); }
  .service-icon {
    width: 52px; height: 52px;
  
   
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    
  }
  .service-card:hover .service-icon {

    border-color: white;
  }
  .service-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
  }

  .contact-icon img,
  .footer-contact-item img,
  .contact-hours-label img {
    width:auto ;
    height: 40px;
    object-fit: contain;
    display: block;

  }
  .icon-inline {
    width: 18px;
    height: 100px;
    vertical-align: middle;
    margin-right: 0.4rem;
    display: inline-block;
  }
  .service-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  .service-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--white-70);
    margin-bottom: 1.5rem;
  }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    color: var(--white-40);
    transition: border-color 0.3s, color 0.3s;
  }
  .service-card:hover .tag { border-color: white; color: white; }

  /* WHY US - IMAGE SPLIT */
  #why { background: var(--black); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 0;
  }
  .why-visual {
    position: relative;
    height: 580px;
  }
  .why-img-main {
    width: 75%;
    height: 450px;
    object-fit: cover;
    border-radius: 2px;
    position: absolute;
    bottom: 0; left: 0;
    filter: brightness(0.85);
  }
  .why-img-accent {
    width: 55%;
    height: 280px;
    object-fit: cover;
    border-radius: 2px;
    position: absolute;
    top: 0; right: 0;
    border: 4px solid var(--black);
    filter: brightness(0.85);
  }
  .why-badge {
    position: absolute;
    bottom: 2rem; right: 1rem;
    background: var(--orange);
    padding: 1.5rem;
    border-radius: 2px;
    text-align: center;
    z-index: 2;
  }
  .why-badge-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
  }
  .why-badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-top: 0.25rem;
  }
  .why-points { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
  .why-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .why-point:last-child { border-bottom: none; }
  .why-point-num {
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--orange);
    padding-top: 0.2rem;
    min-width: 28px;
  }
  .why-point-title {
    font-family: var(--font-condensed);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
  }
  .why-point-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--white-70);
  }

  /* PROCESS */
  #process { background: var(--black-2); }
  .process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }
  .process-bg-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 2px;
    filter: brightness(0.5) saturate(0.6);
    position: relative;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 1px;
    background: linear-gradient(to right, var(--orange), var(--orange-border), transparent);
  }
  .process-step {
    padding: 0 1.5rem 2rem;
    position: relative;
  }
  .process-step-dot {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--black-2);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: background 0.3s;
  }
  .process-step:hover .process-step-dot { background: var(--orange); }
  .process-step-dot-inner {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--orange);
    transition: background 0.3s;
  }
  .process-step:hover .process-step-dot-inner { background: var(--white); }
  .process-step-num {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .process-step-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }
  .process-step-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--white-70);
  }

  /* Sequential scroll-triggered animation for process steps */
  .process-step {
    transition: transform 0.45s cubic-bezier(.2,.9,.2,1), opacity 0.45s ease;
  }
  .process-step .process-step-dot {
    transition: transform 0.45s cubic-bezier(.2,.9,.2,1), background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transform-origin: center;
  }
  .process-step .process-step-dot-inner {
    transition: transform 0.35s cubic-bezier(.2,.9,.2,1), background 0.35s ease;
    transform-origin: center;
    transform: scale(0.85);
  }
  .process-step .process-step-title,
  .process-step .process-step-desc {
    opacity: 0;
    transform: translateY(8px);
    transition: transform 0.45s cubic-bezier(.2,.9,.2,1), opacity 0.45s ease;
  }
  .process-step.step-animate {
    transform: translateY(0);
    opacity: 1;
  }
  .process-step.step-animate .process-step-dot {
    transform: scale(1.12);
    background: var(--orange);
    box-shadow: 0 12px 40px rgba(232,92,13,0.18);
    border-color: transparent;
  }
  .process-step.step-animate .process-step-dot-inner {
    transform: scale(1);
    background: var(--white);
  }
  .process-step.step-animate .process-step-title,
  .process-step.step-animate .process-step-desc {
    opacity: 1;
    transform: translateY(0);
  }

  /* GALLERY / IMAGE STRIP */
  .gallery-section { background: var(--black); padding: 4rem 0; }
  .gallery-title-row {
    padding: 0 8%;
    margin-bottom: 2.5rem;
  }
  .gallery-strip {
    display: flex;
    gap: 12px;
    padding: 0 8%;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .gallery-strip::-webkit-scrollbar { display: none; }
  .gallery-img {
    flex-shrink: 0;
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 2px;
    filter: brightness(0.75) saturate(0.8);
    transition: filter 0.4s ease, transform 0.4s ease;
  }
  .gallery-img:hover { filter: brightness(0.95) saturate(1.2); transform: scale(1.03); }

  /* Showcase Grid */
  .showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    padding: 0 8%;
    align-items: stretch;
  }
  .showcase-card {
    position: relative;
    height: 320px;
    border-radius: 6px;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1200px;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(.2,.9,.2,1), box-shadow 0.35s;
    background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.12));
  }
  .showcase-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
  .card-media {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: translateZ(40px) scale(1.06);
    transition: transform 0.45s cubic-bezier(.2,.9,.2,1);
  }
  .card-overlay {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 1.2rem 1.4rem; backdrop-filter: blur(6px);
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.6) 60%);
    color: var(--white);
    transform: translateZ(60px);
  }
  .card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }
  .card-category { font-family: var(--font-condensed); font-size: 0.75rem; color: var(--orange); margin-top: 0.35rem; }
  .card-shine {
    position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.06) 35%, rgba(255,255,255,0.14) 45%, rgba(255,255,255,0.0) 60%);
    transform: translateX(-150%) skewX(-10deg) translateZ(80px);
    transition: transform 0.8s ease, opacity 0.4s ease;
    opacity: 0;
  }
  .showcase-card:hover .card-shine { transform: translateX(150%) skewX(-10deg) translateZ(80px); opacity: 1; }

  @media (max-width: 900px) {
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-card { height: 260px; }
  }

  /* LIGHTBOX */
  .lightbox {
    position: fixed; inset: 0; display: none; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.85); z-index: 2000; padding: 3rem; transition: opacity 0.3s ease;
  }
  .lightbox[aria-hidden="false"] { display: flex; }
  .lightbox-content { display: flex; align-items: center; gap: 1rem; max-width: 1100px; width: 100%; }
  .lightbox-slide {
    flex: 1; height: 70vh; background-size: contain; background-repeat: no-repeat; background-position: center; border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  }
  .lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem; background: transparent; color: var(--white); border: none; font-size: 2rem; cursor: pointer;
  }
  .lightbox-prev, .lightbox-next {
    background: rgba(255,255,255,0.06); border: none; color: var(--white); font-size: 2.4rem; width: 64px; height: 64px; border-radius: 6px; cursor: pointer;
  }
  .lightbox-caption { margin-top: 1rem; color: var(--white-70); text-align: center; font-size: 0.95rem; }

  @media (max-width: 900px) {
    .lightbox-content { max-width: 90%; }
    .lightbox-slide { height: 55vh; }
  }

  /* TESTIMONIAL */
  #testimonial {
    background: var(--black-3);
    position: relative;
    overflow: hidden;
  }
  #testimonial::before {
    content: '"';
    position: absolute;
    top: -2rem; left: 5%;
    font-family: var(--font-display);
    font-size: 20rem;
    color: rgba(232,92,13,0.06);
    line-height: 1;
    user-select: none;
  }
  .testimonial-inner {
    padding: 6rem 8%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
  }
  .testimonial-img-wrap {
    position: relative;
  }
  .testimonial-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 2px;
    filter: brightness(0.8);
  }
  .testimonial-accent-line {
    position: absolute;
    bottom: -1.5rem; left: 2rem;
    width: 60%; height: 3px;
    background: var(--orange);
  }
  .testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 700;
    line-height: 1.55;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .testimonial-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-condensed);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
  }
  .testimonial-author-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }
  .testimonial-author-role {
    font-size: 0.8rem;
    color: white;
    font-weight: 500;
  }

  /* CTA BAND */
  .cta-band {
    position: relative;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1565008447742-97f6f38c985c?w=1600&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) saturate(0.5);
  }
  .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 100%);
  }
  .cta-inner {
    position: relative;
    z-index: 2;
    padding: 6rem 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .cta-text .section-title { margin-bottom: 0.75rem; }
  .cta-text p { font-size: 1rem; color: var(--white-70); }

  /* CONTACT */
  #contact { background: var(--black-2); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    margin-top: 3.5rem;
  }
  .contact-info { display: flex; flex-direction: column; gap: 2rem; }
  .contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .contact-icon {
    width: 44px; height: 44px;
    background: var(--orange-glow);
    border: 1px solid var(--orange-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .contact-info-label {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.25rem;
  }
  .contact-info-value {
    font-size: 0.95rem;
    color: var(--white-70);
    line-height: 1.5;
  }
  .contact-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white-10);
    border-left: 3px solid var(--orange);
    border-radius: 0 3px 3px 0;
  }
  .contact-hours-label {
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.5rem;
    font-weight: 900;
  }
  .contact-hours-time {
    font-size: 0.95rem;
    color: var(--white-70);
  }

  /* FORM */
  .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-label {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-40);
  }
  .form-input, .form-select, .form-textarea {
    background: var(--black-3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    color: var(--white);
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    width: 100%;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--white-40); }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,92,13,0.12);
  }
  .form-select { cursor: pointer; }
  .form-select option { background: var(--black-3); }
  .form-textarea { resize: none; height: 130px; }
  .form-actions { display: flex; gap: 1rem; }
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white);
    padding: 0.9rem 1.5rem;
    font-family: var(--font-condensed);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s, transform 0.3s;
  }
  .btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 4rem 8% 2rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer-brand-logo {
    font-family: var(--font-condensed);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
  }
  .footer-brand-logo span { color: var(--orange); }
  .footer-brand-desc {
    font-size: 0.88rem;
    padding-bottom: 3rem;
    color: var(--white-40);
    max-width: 280px;
  }
  .footer-col-title {
    font-family: var(--font-condensed);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.25rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
  .footer-links a {
    color: var(--white-40);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--orange-light); }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--white-40);
  }
  .footer-contact-item span:first-child { color: var(--orange); flex-shrink: 0; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-copy {
    font-size: 0.8rem;
    color: var(--white-40);
  }
  .footer-copy a { color: var(--orange-light); text-decoration: none; }

  /* WHATSAPP FLOAT */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 500;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulseWA 3s infinite;
    text-decoration: none;
  }
  .whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
  @keyframes pulseWA {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
  }

  /* MOBILE NAV TOGGLE */
  .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

  @media (max-width: 900px) {
    .hero-stats { gap: 1.5rem; }
    .hero-stat-divider { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { height: 300px; }
    .process-header { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .testimonial-inner { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-inner { flex-direction: column; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
  }
  @media (max-width: 600px) {
    .hero-stats { flex-direction: column; gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .section-inner { padding: 5rem 6%; }
    .hero-content { padding: 0 6%; }
  }

  /* ORANGE LINE ACCENT */
  .orange-line {
    width: 60px; height: 3px;
    background: var(--orange);
    margin: 1.2rem 0 1.8rem;
  }

  /* STATS BAR */
  .stats-bar {
    background: white;
    padding: 3rem 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
  }
  
  .stats-bar-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    display: block;
  }
  .stats-bar-label {
    font-family: var(--font-condensed);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-top: 0.4rem;
    display: block;
  }
  @media (max-width: 600px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
.nav-logo-img {
  width: 120px;
  height: auto;

}