/*
Theme Name: Inland Empire Custom Blinds
Theme URI: https://www.inlandempirecustomblinds.com
Author: Nlinksolution
Author URI: https://www.nlinksolution.com
Description: Custom WordPress Theme for Inland Empire Custom Blinds with Customizer options, CPTs, Gallery Admin, and reCAPTCHA v3.
Version: 1.0.0
Text Domain: inlandempire
*/

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

    :root {
      --navy:        #0B2545; /* Midnight Navy Blue (Logo primary dark) */
      --navy-dark:   #041426; /* Deep Dark Navy (Section backgrounds) */
      --navy-mid:    #13345B; /* Medium Navy accent */
      --teal:        #008CA3; /* Cyan Teal (Logo "CUSTOM BLINDS" & swoosh) */
      --teal-hover:  #00A7C2; /* Vibrant Cyan Teal hover */
      --teal-accent: #38CBE1; /* Sky Cyan highlight */
      --teal-light:  #EBF7F9; /* Soft Cyan background tint */
      
      --white:       #FFFFFF;
      --off-wh:      #F3F8FA; /* Crisp light background */
      --gray:        #52687A; /* Muted Slate Gray for body copy */
      --border:      #D6E4EB; /* Soft blue-gray border */
      
      --font-d:      'Poppins', sans-serif;
      --font-b:      'Inter', sans-serif;

      /* Backwards compatible aliases */
      --dark:        var(--navy);
      --darker:      var(--navy-dark);
      --gold:        var(--teal);
      --gold-lt:     var(--teal-hover);
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-b); color: var(--navy); background: var(--white); overflow-x: hidden; }

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

    /* ─── UTILITY ─── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .btn-gold {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--teal) 0%, #00768A 100%); color: var(--white);
      font-family: var(--font-d); font-weight: 700; font-size: .95rem;
      padding: 14px 30px; border-radius: 6px; border: none; cursor: pointer;
      box-shadow: 0 4px 14px rgba(0, 140, 163, 0.25);
      transition: background .2s, transform .15s, box-shadow .2s;
      white-space: nowrap;
    }
    .btn-gold:hover {
      background: linear-gradient(135deg, var(--teal-hover) 0%, var(--teal) 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 140, 163, 0.4);
    }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--white);
      font-family: var(--font-d); font-weight: 600; font-size: .95rem;
      padding: 13px 28px; border-radius: 6px; border: 2px solid rgba(255,255,255,.7); cursor: pointer;
      transition: border-color .2s, background .2s;
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.15); }
    .section-label { font-family: var(--font-d); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
    .section-title { font-family: var(--font-d); font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; color: var(--navy); }
    .section-title span { color: var(--teal); }

    /* ─── TOP BAR ─── */
    .topbar {
      background: var(--navy-dark); color: rgba(255,255,255,.9);
      font-size: .82rem; font-family: var(--font-b);
      border-bottom: 1px solid rgba(0, 140, 163, 0.2);
    }
    .topbar-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 8px 24px; max-width: 1160px; margin: 0 auto; gap: 12px;
    }
    .topbar-left { display: flex; align-items: center; gap: 20px; }
    .topbar-left a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.85); transition: color .2s; }
    .topbar-left a:hover { color: var(--teal-accent); }
    .topbar-right { display: flex; align-items: center; gap: 6px; }
    .bogo-pill {
      background: var(--teal); color: var(--white);
      font-family: var(--font-d); font-weight: 700; font-size: .78rem;
      padding: 4px 12px; border-radius: 20px; white-space: nowrap;
      box-shadow: 0 2px 8px rgba(0, 140, 163, 0.3);
    }

    /* ─── MAIN HEADER ─── */
    .main-header {
      background: var(--white); position: sticky; top: 0; z-index: 100;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 4px 20px rgba(11, 37, 69, 0.08);
    }
    .header-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 24px; max-width: 1160px; margin: 0 auto; gap: 20px;
    }
    .header-logo-link {
      display: inline-flex; align-items: center; text-decoration: none;
    }
    .header-logo-img {
      height: 75px;
      width: auto;
      max-width: 340px;
      object-fit: contain;
      transition: transform .25s ease;
    }
    .header-logo-link:hover .header-logo-img {
      transform: scale(1.03);
    }

    nav.desktop-nav { display: flex; align-items: center; gap: 20px; }
    nav.desktop-nav a {
      font-family: var(--font-d); font-size: .88rem; font-weight: 600; color: var(--dark);
      position: relative; transition: color .2s; white-space: nowrap;
    }
    nav.desktop-nav a::after {
      content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px;
      background: var(--gold); transition: width .2s;
    }
    nav.desktop-nav a:hover { color: var(--gold); }
    nav.desktop-nav a:hover::after { width: 100%; }


    .header-cta { display: flex; align-items: center; gap: 12px; }

    /* hamburger */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform .3s, opacity .3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* mobile nav overlay */
    .mobile-nav {
      display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200;
      background: var(--dark); flex-direction: column; padding: 80px 32px 40px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; color: var(--white);
      padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
      transition: color .2s;
    }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-nav .mob-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }
    .mobile-nav .mob-cta { margin-top: 28px; }
    .mobile-nav .mob-phone {
      margin-top: 12px; font-family: var(--font-d); font-size: 1.1rem; font-weight: 700;
      color: var(--gold); display: flex; align-items: center; gap: 10px;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative; min-height: 88vh; display: flex; align-items: center;
      overflow: hidden; background: var(--darker);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('assets/image4 (1).jpeg');
      background-size: cover; background-position: center;
      filter: brightness(.35);
    }
    .hero-content { position: relative; z-index: 2; max-width: 700px; padding: 80px 24px; margin: 0 auto 0 0; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: var(--white);
      font-family: var(--font-d); font-weight: 700; font-size: .82rem;
      padding: 7px 16px; border-radius: 4px; margin-bottom: 22px;
      letter-spacing: .05em; text-transform: uppercase;
    }
    .hero h1 {
      font-family: var(--font-d); font-size: clamp(2rem, 5.5vw, 3.6rem);
      font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px;
    }
    .hero h1 em { color: var(--gold); font-style: normal; }
    .hero p {
      font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.82);
      line-height: 1.7; margin-bottom: 36px; max-width: 560px;
    }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
    .hero-btns .btn-gold { font-size: 1rem; padding: 16px 34px; }
    .hero-note {
      margin-top: 32px; display: flex; align-items: center; gap: 10px;
      font-size: .82rem; color: rgba(255,255,255,.6);
    }
    .hero-note i { color: var(--gold); }

    /* BOGO ribbon on hero side */
    .bogo-card {
      position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
      background: var(--gold); color: var(--white); text-align: center;
      padding: 28px 32px; border-radius: 12px; z-index: 3;
      box-shadow: 0 12px 40px rgba(0,0,0,.35);
      min-width: 200px;
    }
    .bogo-card .bogo-tag { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-bottom: 8px; }
    .bogo-card .bogo-big { font-family: var(--font-d); font-size: 2.8rem; font-weight: 800; line-height: 1; }
    .bogo-card .bogo-off { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-top: 4px; }
    .bogo-card .bogo-sub { font-size: .78rem; opacity: .85; margin-top: 10px; line-height: 1.5; }
    .bogo-card .bogo-free { background: var(--white); color: var(--gold); font-family: var(--font-d); font-weight: 800; font-size: .82rem; padding: 6px 14px; border-radius: 20px; margin-top: 14px; display: inline-block; }

    /* ─── TRUST BAR ─── */
    .trust-bar { background: var(--off-wh); border-bottom: 1px solid var(--border); }
    .trust-inner {
      display: flex; align-items: center; justify-content: space-around;
      flex-wrap: wrap; gap: 0; max-width: 1160px; margin: 0 auto;
    }
    .trust-item {
      display: flex; align-items: center; gap: 12px;
      padding: 22px 20px; flex: 1; min-width: 180px;
    }
    .trust-item i { font-size: 1.5rem; color: var(--gold); }
    .trust-item .trust-text strong { font-family: var(--font-d); font-size: .92rem; font-weight: 700; display: block; }
    .trust-item .trust-text span { font-size: .78rem; color: var(--gray); }
    .trust-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

    /* ─── SERVICES ─── */
    .services { padding: 90px 0; background: var(--white); }
    .services-head { text-align: center; margin-bottom: 56px; }
    .services-head p { font-size: 1.02rem; color: var(--gray); margin-top: 12px; max-width: 540px; margin-left: auto; margin-right: auto; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .service-card {
      border-radius: 10px; overflow: hidden; border: 1px solid var(--border);
      transition: box-shadow .25s, transform .25s; background: var(--white);
    }
    .service-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.1); transform: translateY(-4px); }
    .service-card img { width: 100%; height: 210px; object-fit: cover; }
    .service-card-body { padding: 24px; }
    .service-card-body h3 { font-family: var(--font-d); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
    .service-card-body p { font-size: .9rem; color: var(--gray); line-height: 1.65; }
    .service-card-body .learn-more {
      display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
      font-family: var(--font-d); font-size: .85rem; font-weight: 700; color: var(--gold);
      transition: gap .2s;
    }
    .service-card-body .learn-more:hover { gap: 10px; }

    /* ─── WHY GREG ─── */
    .why { padding: 90px 0; background: var(--darker); }
    .why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .why-img { position: relative; border-radius: 12px; overflow: hidden; }
    .why-img img { width: 100%; height: 460px; object-fit: cover; border-radius: 12px; }
    .why-img-badge {
      position: absolute; bottom: 20px; left: 20px;
      background: var(--gold); color: var(--white); padding: 14px 18px; border-radius: 8px;
      font-family: var(--font-d);
    }
    .why-img-badge strong { font-size: 1.8rem; font-weight: 800; display: block; }
    .why-img-badge span { font-size: .75rem; font-weight: 600; opacity: .9; }
    .why-content .section-label { color: var(--gold-lt); }
    .why-content .section-title { color: var(--white); margin-bottom: 20px; }
    .why-content > p { color: rgba(255,255,255,.72); font-size: .98rem; line-height: 1.75; margin-bottom: 32px; }
    .why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
    .why-list li { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.6; }
    .why-list li i { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

    /* ─── HOW IT WORKS ─── */
    .process { padding: 90px 0; background: var(--off-wh); }
    .process-head { text-align: center; margin-bottom: 56px; }
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
    .steps::before {
      content: ''; position: absolute; top: 36px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
      height: 2px; background: var(--gold); opacity: .3;
    }
    .step { text-align: center; padding: 0 16px; }
    .step-num {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--gold); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-d); font-size: 1.5rem; font-weight: 800;
      margin: 0 auto 20px; box-shadow: 0 6px 20px rgba(201,168,76,.35);
    }
    .step h4 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .step p { font-size: .87rem; color: var(--gray); line-height: 1.65; }

    /* ─── TESTIMONIALS ─── */
    .testimonials { padding: 90px 0; background: var(--white); }
    .testimonials-head { text-align: center; margin-bottom: 56px; }
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .review-card {
      background: var(--off-wh); border-radius: 10px; padding: 28px;
      border: 1px solid var(--border); position: relative;
    }
    .review-stars { color: var(--gold); font-size: .9rem; margin-bottom: 14px; letter-spacing: 2px; }
    .review-card blockquote { font-size: .92rem; color: #555; line-height: 1.7; font-style: italic; }
    .reviewer { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
    .reviewer-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--gold); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-d); font-weight: 700; font-size: 1rem; flex-shrink: 0;
    }
    .reviewer-info strong { font-family: var(--font-d); font-size: .9rem; font-weight: 700; }
    .reviewer-info span { font-size: .78rem; color: var(--gray); display: block; }

    /* ─── SERVICE AREAS ─── */
    .areas { padding: 80px 0; background: var(--off-wh); }
    .areas-head { text-align: center; margin-bottom: 48px; }
    .areas-grid {
      display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    }
    .area-pill {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 30px; padding: 8px 20px;
      font-size: .88rem; font-weight: 600; font-family: var(--font-d); color: var(--dark);
      display: flex; align-items: center; gap: 7px; transition: background .2s, border-color .2s;
    }
    .area-pill i { color: var(--gold); font-size: .8rem; }
    .area-pill:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
    .area-pill:hover i { color: var(--white); }

    /* ─── CTA BAND ─── */
    .cta-band {
      padding: 80px 24px;
      background: linear-gradient(135deg, var(--navy) 0%, #041426 100%);
      border-top: 4px solid var(--teal);
      text-align: center;
    }
    .cta-band h2 { font-family: var(--font-d); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 10px; }
    .cta-band p { font-size: 1.05rem; color: rgba(255,255,255,.88); margin-bottom: 32px; }
    .cta-band-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
    .btn-dark { background: var(--teal); color: var(--white); }
    .btn-dark:hover { background: var(--teal-hover); box-shadow: 0 6px 18px rgba(0, 140, 163, 0.35); }
    .btn-white { background: var(--white); color: var(--navy); font-weight: 800; }
    .btn-white:hover { background: var(--teal-light); color: var(--teal); }
    .btn-dark, .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-d); font-weight: 700; font-size: 1rem;
      padding: 15px 32px; border-radius: 6px; border: none; cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .btn-dark:hover, .btn-white:hover { transform: translateY(-2px); }

    /* ─── CONTACT ─── */
    .contact { padding: 90px 0; background: var(--white); }
    .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .contact-info .section-title { margin-bottom: 16px; }
    .contact-info > p { font-size: .97rem; color: var(--gray); line-height: 1.7; margin-bottom: 32px; }
    .contact-details { display: flex; flex-direction: column; gap: 18px; }
    .contact-detail { display: flex; align-items: flex-start; gap: 16px; }
    .contact-icon {
      width: 46px; height: 46px; border-radius: 8px; background: var(--teal);
      display: flex; align-items: center; justify-content: center;
      color: var(--white); font-size: 1.1rem; flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(0, 140, 163, 0.2);
    }
    .contact-detail-text strong { font-family: var(--font-d); font-weight: 700; display: block; font-size: .92rem; }
    .contact-detail-text a { font-size: .95rem; color: var(--navy); transition: color .2s; }
    .contact-detail-text a:hover { color: var(--teal); }

    /* contact form */
    .contact-form-wrap { background: var(--off-wh); border-radius: 12px; padding: 36px; border: 1px solid var(--border); }
    .contact-form-wrap h3 { font-family: var(--font-d); font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
    .contact-form-wrap .form-sub { font-size: .85rem; color: var(--gray); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .form-group label { font-family: var(--font-d); font-size: .82rem; font-weight: 600; color: var(--navy); }
    .form-group input, .form-group select, .form-group textarea {
      padding: 12px 14px; border: 1px solid var(--border); border-radius: 6px;
      font-family: var(--font-b); font-size: .92rem; background: var(--white);
      transition: border-color .2s, box-shadow .2s; width: 100%;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,140,163,.18);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit .btn-gold { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }
    .form-note { font-size: .78rem; color: var(--gray); text-align: center; margin-top: 10px; }

    /* ─── FOOTER ─── */
    footer { background: var(--navy-dark); color: rgba(255,255,255,.75); border-top: 1px solid rgba(255,255,255,.08); }
    .footer-main {
      display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 40px;
      padding: 60px 24px 40px; max-width: 1160px; margin: 0 auto;
    }
    .footer-logo-link {
      display: inline-block;
      text-decoration: none;
    }
    .footer-logo-wrap {
      background: var(--white);
      padding: 12px 20px;
      border-radius: 10px;
      display: inline-block;
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
      border: 1px solid rgba(255,255,255,0.15);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .footer-logo-wrap:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 140, 163, 0.35);
    }
    .footer-logo-img {
      height: 70px;
      width: auto;
      max-width: 300px;
      object-fit: contain;
      display: block;
    }
    .footer-brand p { font-size: .87rem; line-height: 1.7; margin-top: 16px; max-width: 300px; color: rgba(255,255,255,.8); }
    .footer-brand .footer-phone { margin-top: 18px; font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; color: var(--teal-accent); display: flex; align-items: center; gap: 8px; }
    .footer-col h4 { font-family: var(--font-d); font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: .05em; text-transform: uppercase; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: .87rem; transition: color .2s; }
    .footer-col ul li a:hover { color: var(--teal-accent); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 18px 24px; text-align: center; font-size: .8rem;
      max-width: 1160px; margin: 0 auto;
    }
    .footer-bottom a { color: var(--teal-accent); transition: opacity .2s; }
    .footer-bottom a:hover { opacity: .8; }

    /* ─── GALLERY / OUR WORK ─── */
    .gallery { padding: 90px 0; background: var(--white); }
    .gallery-head { text-align: center; margin-bottom: 36px; }
    .gallery-head p { font-size: 1.02rem; color: var(--gray); margin-top: 12px; max-width: 580px; margin-left: auto; margin-right: auto; }
    .gallery-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
    }
    .gallery-item {
      position: relative; border-radius: 12px; overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.06); cursor: pointer;
      aspect-ratio: 4 / 3; background: var(--off-wh);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .gallery-item.hidden-item {
      display: none;
    }
    .gallery-item.fade-in {
      animation: fadeInGrid 0.4s ease forwards;
    }
    @keyframes fadeInGrid {
      from { opacity: 0; transform: translateY(15px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s ease; display: block;
    }
    .gallery-item:hover img {
      transform: scale(1.08);
    }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(14,28,40,0.4);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transition: opacity 0.3s ease;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-zoom-icon {
      width: 48px; height: 48px;
      border-radius: 50%; background: rgba(255,255,255,0.25); backdrop-filter: blur(4px);
      color: var(--white); display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; transform: scale(0.8); transition: transform 0.3s ease;
    }
    .gallery-item:hover .gallery-zoom-icon { transform: scale(1); }

    .gallery-load-more {
      text-align: center;
      margin-top: 40px;
    }
    .btn-load-more {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-d);
      font-weight: 700;
      font-size: 0.95rem;
      padding: 14px 34px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(11, 37, 69, 0.2);
      transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
    }
    .btn-load-more:hover {
      background: var(--teal);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 140, 163, 0.35);
    }

    /* ─── LIGHTBOX ─── */
    .lightbox {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(10, 18, 26, 0.93); backdrop-filter: blur(10px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
      padding: 24px;
    }
    .lightbox.active {
      opacity: 1; pointer-events: auto;
    }
    .lightbox-content {
      position: relative; max-width: 90vw; max-height: 85vh;
      display: flex; flex-direction: column; align-items: center;
    }
    .lightbox-img {
      max-width: 100%; max-height: 75vh; border-radius: 8px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.6); object-fit: contain;
    }
    .lightbox-caption {
      margin-top: 16px; text-align: center; color: var(--white);
      font-family: var(--font-d); font-size: 1.15rem; font-weight: 600;
    }
    .lightbox-close {
      position: absolute; top: -48px; right: 0;
      background: none; border: none; color: var(--white);
      font-size: 2rem; cursor: pointer; opacity: 0.8; transition: opacity 0.2s;
    }
    .lightbox-close:hover { opacity: 1; color: var(--gold); }
    .lightbox-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 50px; height: 50px; border-radius: 50%;
      background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
      color: var(--white); font-size: 1.25rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.25s ease; z-index: 10;
    }
    .lightbox-btn:hover { background: var(--gold); border-color: var(--gold); }
    .lightbox-prev { left: -65px; }
    .lightbox-next { right: -65px; }

    /* ─── VIDEOS SHOWCASE ─── */
    .videos {
      padding: 90px 0;
      background: var(--off-wh);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .videos-head {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 48px;
    }
    .videos-head p {
      color: var(--gray);
      font-size: 1.05rem;
      line-height: 1.6;
      margin-top: 12px;
    }
    .videos-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      align-items: flex-start;
    }
    .video-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(11, 37, 69, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
    }
    .video-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0, 140, 163, 0.18);
    }
    .video-card-short {
      max-width: 320px;
    }
    .video-card-standard {
      max-width: 560px;
    }
    .video-wrapper {
      position: relative;
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      background: var(--navy-dark);
    }
    .video-card-short .video-wrapper {
      padding-top: 177.77%; /* 9:16 vertical ratio for YouTube Shorts */
    }
    .video-card-standard .video-wrapper {
      padding-top: 56.25%; /* 16:9 ratio for regular YouTube videos */
    }
    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1160px) {
      nav.desktop-nav { gap: 14px; }
      nav.desktop-nav a { font-size: .83rem; }
    }

    @media (max-width: 1024px) {
      nav.desktop-nav { display: none; }
      .header-cta { display: none; }
      .hamburger { display: flex; }
      .bogo-card { display: none; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
      .reviews-grid { grid-template-columns: repeat(2, 1fr); }
      .why-inner { grid-template-columns: 1fr; }
      .why-img img { height: 320px; }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .steps::before { display: none; }
      .footer-main { grid-template-columns: 1fr 1fr; }
      .lightbox-prev { left: 10px; }
      .lightbox-next { right: 10px; }
    }

    @media (max-width: 768px) {
      .topbar { display: none; }
      .header-logo-img { height: 54px; max-width: 240px; }
      .footer-logo-img { height: 58px; max-width: 240px; }


      .hero { min-height: 75vh; }
      .hero-content { padding: 60px 24px; }
      .hero h1 { font-size: 1.9rem; }

      .services-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .videos { padding: 60px 0; }
      .videos-grid { gap: 24px; }
      .video-card-short { max-width: 340px; margin: 0 auto; }
      .video-card-standard { max-width: 100%; }
      .reviews-grid { grid-template-columns: 1fr; }

      .steps { grid-template-columns: repeat(2, 1fr); }
      .contact-inner { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-main { grid-template-columns: 1fr; gap: 30px; }
      .trust-inner { flex-direction: column; }
      .trust-divider { display: none; }
      .trust-item { width: 100%; }

      .why-inner { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .header-logo-img { height: 46px; max-width: 200px; }
      .footer-logo-img { height: 50px; max-width: 210px; }
      .hero h1 { font-size: 1.6rem; }
      .hero-btns { flex-direction: column; width: 100%; }
      .hero-btns .btn-gold, .hero-btns .btn-outline { width: 100%; justify-content: center; }
      .cta-band-btns .btn-dark, .cta-band-btns .btn-white { width: 100%; justify-content: center; }
    }