  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --orange: #f5a623;
    --orange-dark: #d4891a;
    --white: #ffffff;
    --grey: #999999;
    --light-grey: #cccccc;
    --border: #2a2a2a;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
  h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
  h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
  h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

  .section-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
  }

  .accent { color: var(--orange); }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
  }
  .btn-primary { background: var(--orange); color: var(--black); }
  .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
  .btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
  .btn-outline:hover { background: var(--white); color: var(--black); transform: translateY(-1px); }
  .btn-lg { padding: 18px 36px; font-size: 1.1rem; }
  .btn-dark { background: var(--black); color: var(--white); border: 2px solid var(--black); }
  .btn-dark:hover { background: var(--dark3); }
  .btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
  .btn-outline-dark:hover { background: rgba(0,0,0,0.1); }

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 75px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .logo { display: flex; align-items: center; }
  .logo img { height: 62px; width: auto; object-fit: contain; }

  nav { display: flex; align-items: center; gap: 4px; }
  nav a {
    color: var(--light-grey);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--orange); }

  .header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--orange);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s;
  }
  .header-phone:hover { background: var(--orange); color: var(--black); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

  .mobile-nav {
    display: none;
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--light-grey);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--orange); }
  .mobile-nav .mobile-phone {
    margin-top: 12px;
    background: var(--orange);
    color: var(--black);
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.05rem;
    border-bottom: none;
  }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 20px 80px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.22);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  /* Ensure background never captures clicks intended for hero buttons */
  .hero-bg { z-index: 0; pointer-events: none; }
  .hero-btns { position: relative; z-index: 3; }
  .hero-btns .btn { pointer-events: auto; cursor: pointer; }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.4);
    color: var(--orange);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .hero-content h1 { margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.8); }
  .hero-content > p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--light-grey);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--grey);
    font-size: 0.9rem;
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 50px;
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--dark2);
    border-top: 2px solid var(--orange);
    border-bottom: 1px solid var(--border);
  }
  .trust-items { display: flex; align-items: stretch; flex-wrap: wrap; }
  .trust-item {
    flex: 1; min-width: 160px;
    display: flex; align-items: center; gap: 12px;
    padding: 22px 24px;
    border-right: 1px solid var(--border);
  }
  .trust-item:last-child { border-right: none; }
  .trust-icon { font-size: 1.5rem; flex-shrink: 0; }
  .trust-text strong { display: block; font-size: 0.95rem; color: var(--white); font-weight: 700; }
  .trust-text span { font-size: 0.78rem; color: var(--grey); }

  /* ── SECTIONS ── */
  section { padding: 90px 0; }
  .section-header { text-align: center; margin-bottom: 60px; }
  .section-header p { color: var(--grey); max-width: 560px; margin: 14px auto 0; font-size: 1.05rem; }

  /* ── SERVICES ── */
  #services { background: var(--dark); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }
  .service-card {
    background: var(--dark2);
    padding: 36px 30px;
    transition: background 0.2s;
    position: relative;
  }
  .service-card:hover { background: var(--dark3); }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 3px; height: 100%; background: var(--orange);
    opacity: 0; transition: opacity 0.2s;
  }
  .service-card:hover::before { opacity: 1; }
  .service-icon { font-size: 2rem; margin-bottom: 16px; }
  .service-card h3 { margin-bottom: 10px; color: var(--white); }
  .service-card p { color: var(--grey); font-size: 0.95rem; line-height: 1.7; }

  /* ── ABOUT ── */
  #about { background: var(--black); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
  .about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-img-main { grid-column: 1 / -1; border-radius: 6px; overflow: hidden; height: 280px; }
  .about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .about-img-main:hover img { transform: scale(1.03); }
  .about-img-sm { border-radius: 6px; overflow: hidden; height: 160px; }
  .about-img-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .about-img-sm:hover img { transform: scale(1.04); }
  .about-content h2 { margin-bottom: 20px; }
  .about-content p { color: var(--light-grey); margin-bottom: 20px; font-size: 1.02rem; line-height: 1.8; }
  .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
  .stat-box { background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; padding: 20px; text-align: center; }
  .stat-box strong { display: block; font-size: 1.8rem; color: var(--orange); font-weight: 700; }
  .stat-box span { font-size: 0.85rem; color: var(--grey); }

  /* ── WHY CHOOSE US ── */
  #why { background: var(--dark); }
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
  .why-card {
    background: var(--dark2); border: 1px solid var(--border); border-radius: 6px;
    padding: 30px 24px; text-align: center; transition: border-color 0.2s, transform 0.2s;
  }
  .why-card:hover { border-color: var(--orange); transform: translateY(-4px); }
  .why-card .why-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
  .why-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
  .why-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.6; }

  /* ── PROJECTS / GALLERY ── */
  #projects { background: var(--black); }

  /* Featured grid */
  .gallery-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 32px;
  }
  .gallery-featured .feat-main {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .gallery-featured .feat-side {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }
  .gallery-featured .feat-bottom {
    grid-column: span 1;
    grid-row: 2 / 3;
  }

  .gallery-item {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--dark2);
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    min-height: 180px;
  }
  .gallery-featured .feat-main img { height: 380px; min-height: unset; }
  .gallery-featured .feat-side img { height: 380px; min-height: unset; }
  .gallery-featured .feat-bottom img { height: 220px; min-height: unset; }

  .gallery-item:hover img { transform: scale(1.05); }

  .gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 32px 16px 14px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-tag {
    display: inline-block;
    background: var(--orange);
    color: var(--black);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 3px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .gallery-overlay p { color: var(--white); font-size: 0.88rem; font-weight: 600; line-height: 1.4; }

  /* See All CTA */
  .gallery-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .gallery-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dark2);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--grey);
  }
  .gallery-count-badge strong { color: var(--orange); }

  /* ── FULL GALLERY MODAL ── */
  .gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 8000;
    background: rgba(0,0,0,0.98);
    overflow-y: auto;
  }
  .gallery-modal.active { display: block; }

  .gallery-modal-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 80px;
  }

  .gallery-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0 26px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.98);
    z-index: 10;
    backdrop-filter: blur(10px);
  }
  .gallery-modal-header-left h3 { font-size: 1.25rem; margin-bottom: 4px; }
  .gallery-modal-header-left p { color: var(--grey); font-size: 0.88rem; }

  .modal-close-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark2);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .modal-close-btn:hover { border-color: var(--orange); color: var(--orange); }

  /* Masonry grid inside modal */
  .gallery-modal-grid {
    columns: 4;
    column-gap: 10px;
  }

  .gallery-modal-item {
    break-inside: avoid;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  /* Hide-then-reveal inside the modal */
  .gallery-modal .gallery-modal-item { opacity: 0; transform: translateY(16px); }
  .gallery-modal.active .gallery-modal-item { opacity: 1; transform: translateY(0); }
  /* On standalone pages (projects.html) items are visible immediately */
  #projects-full-grid.gallery-modal-grid .gallery-modal-item { opacity: 1; transform: translateY(0); }
  .gallery-modal-item:nth-child(1) { transition-delay: 0.04s; }
  .gallery-modal-item:nth-child(2) { transition-delay: 0.08s; }
  .gallery-modal-item:nth-child(3) { transition-delay: 0.12s; }
  .gallery-modal-item:nth-child(4) { transition-delay: 0.16s; }
  .gallery-modal-item:nth-child(5) { transition-delay: 0.20s; }
  .gallery-modal-item:nth-child(6) { transition-delay: 0.24s; }
  .gallery-modal-item:nth-child(7) { transition-delay: 0.28s; }
  .gallery-modal-item:nth-child(8) { transition-delay: 0.32s; }
  .gallery-modal-item:nth-child(9) { transition-delay: 0.36s; }
  .gallery-modal-item:nth-child(10) { transition-delay: 0.40s; }
  .gallery-modal-item:nth-child(n+11) { transition-delay: 0.44s; }

  .gallery-modal-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
  }
  .gallery-modal-item:hover img { transform: scale(1.04); }
  .gallery-modal-item .gallery-overlay { opacity: 0; padding-top: 30px; }
  .gallery-modal-item:hover .gallery-overlay { opacity: 1; }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.97);
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-direction: column;
    gap: 14px;
  }
  .lightbox.active { display: flex; }

  .lightbox-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    max-height: calc(100vh - 120px);
  }
  .lightbox-img-wrap img {
    max-width: 90vw;
    max-height: calc(100vh - 130px);
    object-fit: contain;
    border-radius: 4px;
    display: block;
  }

  .lightbox-close {
    position: absolute; top: 18px; right: 22px;
    font-size: 1.8rem; color: var(--white); cursor: pointer;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1; transition: all 0.2s;
  }
  .lightbox-close:hover { background: var(--orange); border-color: var(--orange); color: var(--black); }

  .lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 1.6rem;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border-radius: 50%; transition: all 0.2s;
  }
  .lightbox-prev:hover, .lightbox-next:hover { background: var(--orange); border-color: var(--orange); color: var(--black); }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }

  .lightbox-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }
  .lightbox-counter {
    background: rgba(255,255,255,0.1);
    color: var(--light-grey);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
  }
  .lightbox-caption {
    color: var(--grey);
    font-size: 0.88rem;
    max-width: 400px;
    text-align: center;
  }

  /* ── PROCESS ── */
  #process { background: var(--dark); }
  .process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
  .process-steps::before {
    content: ''; position: absolute; top: 40px;
    left: calc(16.66% + 20px); right: calc(16.66% + 20px);
    height: 2px; background: var(--orange); z-index: 0;
  }
  .process-step { text-align: center; padding: 0 30px; position: relative; z-index: 1; }
  .step-number {
    width: 80px; height: 80px; background: var(--orange); color: var(--black);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 800; margin: 0 auto 24px; position: relative; z-index: 2;
  }
  .process-step h3 { margin-bottom: 12px; }
  .process-step p { color: var(--grey); font-size: 0.95rem; }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--black); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
  .testimonial-card {
    background: var(--dark2); border: 1px solid var(--border); border-radius: 8px;
    padding: 28px; position: relative;
  }
  .testimonial-card::before {
    content: '"'; position: absolute; top: 16px; right: 24px;
    font-size: 5rem; color: var(--orange); opacity: 0.2; line-height: 1; font-family: Georgia, serif;
  }
  .stars { color: var(--orange); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
  .testimonial-card p { color: var(--light-grey); font-size: 0.97rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
  .reviewer { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
  .reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; color: var(--black); flex-shrink: 0;
  }
  .reviewer-info strong { display: block; font-size: 0.95rem; }
  .reviewer-info span { font-size: 0.8rem; color: var(--grey); }

  /* ── FAQ ── */
  #faq { background: var(--dark); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1000px; margin: 0 auto; }
  .faq-item { background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
  .faq-question {
    width: 100%; background: none; border: none; padding: 22px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    cursor: pointer; color: var(--white); font-size: 0.97rem; font-weight: 600;
    text-align: left; transition: color 0.2s; font-family: inherit;
  }
  .faq-question:hover { color: var(--orange); }
  .faq-icon { font-size: 1.2rem; color: var(--orange); flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer p { padding: 16px 24px 22px; color: var(--grey); font-size: 0.95rem; line-height: 1.75; border-top: 1px solid var(--border); }

  /* ── CTA BANNER ── */
  #cta-banner { background: var(--orange); padding: 70px 20px; text-align: center; }
  #cta-banner h2 { color: var(--black); margin-bottom: 12px; font-size: clamp(1.6rem, 4vw, 2.4rem); }
  #cta-banner p { color: rgba(0,0,0,0.7); font-size: 1.1rem; margin-bottom: 32px; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ── CONTACT ── */
  #contact { background: var(--dark); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
  .contact-info h2 { margin-bottom: 16px; }
  .contact-info > p { color: var(--grey); margin-bottom: 36px; font-size: 1rem; line-height: 1.7; }
  .contact-method { display: flex; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
  .contact-method:first-of-type { border-top: 1px solid var(--border); }
  .contact-method-icon {
    width: 48px; height: 48px; background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.3); border-radius: 6px;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
  }
  .contact-method-info strong { display: block; font-size: 0.8rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
  .contact-method-info a { color: var(--white); font-size: 1.1rem; font-weight: 700; transition: color 0.2s; }
  .contact-method-info a:hover { color: var(--orange); }
  .contact-method-info span { color: var(--light-grey); font-size: 1rem; }
  .contact-form { background: var(--dark2); border: 1px solid var(--border); border-radius: 8px; padding: 36px; }
  .contact-form h3 { margin-bottom: 24px; font-size: 1.3rem; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--light-grey); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; background: var(--dark3); border: 1px solid var(--border); color: var(--white);
    padding: 14px 16px; border-radius: 4px; font-size: 1rem; font-family: inherit;
    transition: border-color 0.2s; outline: none;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); }
  .form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-group select option { background: var(--dark3); }
  .form-submit { width: 100%; padding: 16px; font-size: 1.05rem; }
  .form-note { margin-top: 12px; font-size: 0.82rem; color: var(--grey); text-align: center; }

  /* ── FOOTER ── */
  footer { background: var(--black); border-top: 1px solid var(--border); padding: 50px 0 24px; }
  .footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
  .footer-brand img { height: 58px; margin-bottom: 16px; }
  .footer-brand p { color: var(--grey); font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
  .footer-phone-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-weight: 700; font-size: 1rem; transition: opacity 0.2s; }
  .footer-phone-link:hover { opacity: 0.8; }
  .footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--grey); margin-bottom: 18px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: var(--light-grey); font-size: 0.92rem; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--orange); }
  .footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { color: var(--grey); font-size: 0.85rem; }
  .footer-bottom span { color: var(--orange); }

  /* ── MOBILE STICKY CALL ── */
  .sticky-call {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
    background: var(--orange); color: var(--black);
    text-align: center; padding: 16px;
    font-weight: 800; font-size: 1.05rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    gap: 10px; align-items: center; justify-content: center;
  }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ══════════════════════════════════════
     RESPONSIVE — Full Breakpoint System
     Desktop:  1025px+
     Tablet:   481px – 1024px
     Mobile:   320px – 480px
  ══════════════════════════════════════ */

  /* ── TABLET: 481px – 1024px ── */
  @media (max-width: 1024px) {
    /* Gallery modal: 3-column masonry */
    .gallery-modal-grid { columns: 3; }

    /* Reduce large gaps for mid-size screens */
    .about-grid { gap: 44px; }
    .contact-grid { gap: 44px; }

    /* Slightly tighter section header spacing */
    .section-header { margin-bottom: 48px; }

    /* Hero: tighten content width */
    .hero-content { max-width: 680px; }

    /* Footer: 2 col — brand full-width on top, links side-by-side */
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .footer-brand { grid-column: 1 / -1; }

    /* About stats: keep 2×2 grid but tighter */
    .about-stats { gap: 14px; }
  }

  /* ── TABLET/MOBILE TRANSITION: ≤900px ── */
  @media (max-width: 900px) {
    /* Header: switch to hamburger */
    nav { display: none; }
    .hamburger { display: flex; }
    .header-phone { display: none; }

    /* About: single column */
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-images { order: -1; }

    /* Process: stack steps vertically */
    .process-steps { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .process-step { margin-bottom: 30px; }

    /* FAQ: single column */
    .faq-grid { grid-template-columns: 1fr; }

    /* Contact: single column */
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }

    /* Footer: single column below 900px (overrides 1024px tablet rule) */
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { grid-column: auto; }

    /* Sticky call bar */
    .sticky-call { display: flex; }
    body { padding-bottom: 60px; }

    /* Gallery: 2-column featured */
    .gallery-featured { grid-template-columns: 1fr 1fr; }
    .gallery-featured .feat-main { grid-column: 1 / 3; }
    .gallery-featured .feat-side { grid-column: 1 / 3; }
    .gallery-featured .feat-side img { height: 260px; }

    /* Gallery modal: 2 columns */
    .gallery-modal-grid { columns: 2; }

    /* Lightbox nav: tuck in closer */
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
  }

  /* ── MOBILE: ≤600px ── */
  @media (max-width: 600px) {
    /* Trust bar: vertical stack */
    .trust-items { flex-direction: column; }
    .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
    .trust-item:last-child { border-bottom: none; }

    /* Hero buttons: full-width stack */
    .hero-btns { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; max-width: 300px; justify-content: center; }

    /* About images: single column */
    .about-images { grid-template-columns: 1fr; }
    .about-img-main { grid-column: span 1; height: 220px; }
    .about-img-sm { height: 180px; }
    .about-stats { grid-template-columns: 1fr 1fr; }

    /* Contact form: tighter padding */
    .contact-form { padding: 24px 20px; }

    /* Footer bottom: stacked */
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Gallery: single column */
    .gallery-featured { grid-template-columns: 1fr; }
    .gallery-featured .feat-main,
    .gallery-featured .feat-side { grid-column: 1; }
    .gallery-featured .feat-main img { height: 240px; }
    .gallery-featured .feat-side img { height: 200px; }
    .gallery-featured .feat-bottom img { height: 190px; }
    .gallery-modal-grid { columns: 1; }

    /* Lightbox controls: smaller on mobile */
    .lightbox-prev, .lightbox-next { width: 38px; height: 38px; font-size: 1.3rem; }

    /* Sections: tighter vertical breathing room */
    section { padding: 60px 0; }

    /* Gallery modal header: stacked */
    .gallery-modal-header { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* CTA banner buttons */
    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn-lg { width: 100%; max-width: 300px; }
  }

  /* ── SMALL MOBILE: ≤480px ── */
  @media (max-width: 480px) {
    /* Tighter container padding */
    .container { padding: 0 16px; }

    /* Even tighter sections */
    section { padding: 50px 0; }

    /* Hero section */
    #home { padding: 100px 16px 64px; }
    .hero-badge { font-size: 0.75rem; padding: 6px 14px; letter-spacing: 0.5px; }
    .hero-location { font-size: 0.82rem; padding: 7px 14px; }
    .hero-content > p { margin-bottom: 28px; }

    /* Section header */
    .section-header { margin-bottom: 36px; }
    .section-header p { font-size: 0.95rem; }

    /* Cards: tighter inner padding */
    .service-card { padding: 26px 20px; }
    .why-card { padding: 24px 18px; }
    .testimonial-card { padding: 22px 18px; }
    .process-step { padding: 0 12px; }
    .step-number { width: 68px; height: 68px; font-size: 1.5rem; margin-bottom: 18px; }

    /* Stats: slightly smaller numbers */
    .stat-box { padding: 16px 12px; }
    .stat-box strong { font-size: 1.6rem; }

    /* Contact */
    .contact-form { padding: 20px 16px; }
    .contact-method { padding: 14px 0; }
    .contact-method-icon { width: 42px; height: 42px; font-size: 1.1rem; }

    /* Header */
    .header-inner { padding: 0 16px; }
    .logo img { height: 54px; }

    /* FAQ */
    .faq-question { padding: 18px 18px; font-size: 0.93rem; }
    .faq-answer p { padding: 14px 18px 18px; }

    /* CTA Banner */
    #cta-banner { padding: 50px 16px; }

    /* Trust bar items: tighter */
    .trust-item { padding: 18px 20px; }

    /* Buttons: ensure proper touch target */
    .btn { min-height: 44px; }

    /* Gallery modal header */
    .gallery-modal-inner { padding: 0 16px 80px; }

    /* Footer */
    .footer-inner { gap: 24px; }
    .footer-brand img { height: 50px; }

    /* Lightbox: better padding on small screens */
    .lightbox { padding: 16px; }
    .lightbox-caption { font-size: 0.82rem; max-width: 280px; }
    .lightbox-footer { gap: 10px; flex-wrap: wrap; justify-content: center; }
    .lightbox-close { top: 12px; right: 12px; }
  }

  /* ── VERY SMALL MOBILE: ≤360px ── */
  @media (max-width: 360px) {
    .logo img { height: 48px; }
    h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
    .hero-badge { display: none; }
    .hero-content { padding: 0 4px; }
    .btn-lg { font-size: 1rem; padding: 14px 20px; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-box strong { font-size: 1.4rem; }
    .step-number { width: 60px; height: 60px; font-size: 1.3rem; }
    .why-card { padding: 20px 14px; }
    .service-card { padding: 22px 16px; }
    .testimonial-card { padding: 18px 14px; }
    .contact-form { padding: 18px 14px; }
    .footer-phone-link { font-size: 0.92rem; }
    .sticky-call { font-size: 0.95rem; padding: 14px; }
  }

/* ── MULTI-PAGE NAV ACTIVE STATE ── */
nav a.active, .mobile-nav a.active { color: var(--orange); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 140px 20px 60px;
  text-align: center;
  background: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.92)), url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: 12px; }
.page-header .breadcrumb {
  font-size: 0.85rem;
  color: var(--grey);
  letter-spacing: 1px;
  margin-top: 14px;
}
.page-header .breadcrumb a { color: var(--orange); }
.page-header .breadcrumb a:hover { text-decoration: underline; }
.page-header p {
  color: var(--light-grey);
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 1.05rem;
}
@media (max-width: 600px) {
  .page-header { padding: 110px 16px 44px; }
}
