/* ── RESET & BASE ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1a1a2a;
    background: #fff;
    overflow-x: hidden;
  }

  /* ── DESIGN TOKENS ── */
  :root {
    --orange:       hsl(24, 100%, 50%);
    --orange-dark:  hsl(24, 100%, 38%);
    --orange-light: hsl(24, 100%, 96%);
    --navy:         #0d1b2a;
    --navy-mid:     #162032;
    --navy-light:   #1e2d40;
    --white:        #ffffff;
    --off-white:    #f7f8fa;
    --border:       #e8eaed;
    --text:         #1a1a2a;
    --muted:        #64748b;
    --green:        #25d366;
    --green-dark:   #128c7e;
    --radius:       14px;
    --radius-sm:    8px;
    --shadow:       0 4px 24px rgba(0,0,0,.08);
    --shadow-lg:    0 12px 48px rgba(0,0,0,.14);
  }

  /* ── TYPOGRAPHY ── */
  h1, h2, h3, h4, h5 { font-family: "Arial", Helvetica, sans-serif; font-weight: 800; line-height: 1.15; }
  h1 { font-size: clamp(32px, 6vw, 60px); }
  h2 { font-size: clamp(26px, 4.5vw, 44px); }
  h3 { font-size: clamp(18px, 3vw, 24px); }
  p  { font-size: 15px; line-height: 1.8; color: var(--muted); }

  .span-orange { color: var(--orange); }
  .label-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--orange);
    background: var(--orange-light); padding: 5px 14px;
    border-radius: 30px; margin-bottom: 14px;
  }

  /* ── BUTTONS ── */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--orange); color: #fff;
    padding: 14px 28px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 15px; text-decoration: none;
    border: none; cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
  }
  .btn-primary:hover {
    background: var(--orange-dark); color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,106,0,.35);
    text-decoration: none;
  }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent; color: var(--orange);
    border: 2px solid var(--orange); padding: 12px 26px;
    border-radius: var(--radius-sm); font-weight: 700;
    font-size: 15px; text-decoration: none; cursor: pointer;
    transition: all .2s;
  }
  .btn-outline:hover { background: var(--orange); color: #fff; text-decoration:none; }
  .btn-white {
    display: inline-flex; align-items: center; gap: 9px;
    background: #fff; color: var(--orange);
    padding: 14px 28px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: opacity .2s;
  }
  .btn-white:hover { opacity: .9; color: var(--orange); text-decoration:none; }
  .btn-wa {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--green); color: #fff;
    padding: 14px 28px; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 15px; text-decoration: none;
    transition: background .2s;
  }
  .btn-wa:hover { background: var(--green-dark); color:#fff; text-decoration:none; }
  .btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

  /* ── CONTAINER ── */
  .container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

  /* ── ANNOUNCEMENT BAR ── */
  .announce-bar {
    background: var(--orange);
    color: #fff; text-align: center;
    padding: 9px 20px; font-size: 13px; font-weight: 600;
    letter-spacing: .3px;
  }
  .announce-bar a { color:#fff; text-decoration:underline; }

  /* ── HEADER / NAV ── */
  .site-header {
    background: var(--navy);
    position: sticky; top: 0; z-index: 9000;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .header-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px;
    padding: 0 20px; max-width: 1140px; margin: 0 auto;
    height: 68px;
  }
  .site-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .logo-mark {
    width: 40px; height: 40px; border-radius: 10px;
    /* background: var(--orange); */
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 20px; color: #fff; flex-shrink: 0;
    overflow: hidden;
  }
  .logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .logo-text { font-family:'Syne',sans-serif; font-weight:800; font-size:18px; color:#fff; }
  .logo-text span { color: var(--orange); }

  .main-nav { display: flex; align-items: center; gap: 4px; }
  .main-nav a {
    color: rgba(255,255,255,.72); font-size: 13.5px; font-weight: 600;
    padding: 8px 13px; border-radius: 7px; text-decoration: none;
    transition: background .18s, color .18s;
    white-space: nowrap;
  }
  .main-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }

  .nav-call-btn {
    background: var(--orange); color: #fff !important;
    padding: 9px 18px !important; border-radius: 8px !important;
    font-weight: 700 !important;
  }
  .nav-call-btn:hover { background: var(--orange-dark) !important; }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: rgba(255,255,255,.1); border: none; cursor: pointer;
    padding: 10px; border-radius: 8px;
  }
  .hamburger span { display:block; width:22px; height:2px; background:#fff; border-radius:2px; transition: all .3s; }

  /* Mobile drawer */
  .mobile-nav {
    position: fixed; top: 0; left: -100%; width: min(300px, 85vw);
    height: 100vh; background: var(--navy); z-index: 99999;
    transition: left .35s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column; overflow-y: auto;
  }
  .mobile-nav.open { left: 0; }
  .mobile-nav-head {
    background: var(--orange); padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .mobile-nav-head span { font-family:'Syne',sans-serif; font-weight:800; color:#fff; font-size:16px; }
  .close-btn { background:none; border:none; color:#fff; font-size:24px; cursor:pointer; line-height:1; }
  .mobile-nav a {
    display: block; color: rgba(255,255,255,.8); font-size: 15px;
    font-weight: 600; padding: 15px 24px; text-decoration:none;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: color .2s, padding-left .2s;
  }
  .mobile-nav a:hover { color:#fff; padding-left:30px; }
  .mobile-nav-footer {
    margin-top: auto; padding: 20px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .mobile-nav-footer a {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 13px; border-radius: 10px;
    font-weight: 700; font-size: 14px; border-bottom: none !important;
    text-decoration: none;
  }
  .mnf-call { background: var(--orange); color: #fff !important; }
  .mnf-wa   { background: var(--green);  color: #fff !important; }
  .nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.55);
    backdrop-filter: blur(3px); z-index: 9998;
    display: none;
  }
  .nav-overlay.open { display: block; }

  @media(max-width:900px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
  }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .trust-ticker {
    display: flex; gap: 0;
    animation: scroll-trust 30s linear infinite;
    width: max-content;
  }
  @keyframes scroll-trust {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .trust-ticker-item {
    display: flex; align-items: center; gap: 8px;
    padding: 11px 32px; font-size: 13px; font-weight: 700;
    white-space: nowrap; color: #333; border-right: 1px solid var(--border);
  }
  .trust-ticker-item i { color: var(--orange); font-size: 14px; }
  .trust-ticker-item .dot { width:4px; height:4px; border-radius:50%; background:var(--orange); }

  /* ── PAGE HERO ── */
  .page-hero {
    background: var(--navy);
    position: relative; overflow: hidden;
    padding: 90px 20px 80px;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255,106,0,.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .page-hero-grid {
    position: absolute; inset: 0; opacity: .04;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .page-hero .container { position: relative; z-index: 2; }
  .page-hero h1 { color: #fff; margin-bottom: 18px; }
  .page-hero p  { font-size: 17px; color: rgba(255,255,255,.75); max-width:600px; margin-bottom:32px; }
  .hero-badge {
    display: inline-flex; gap: 20px; flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .hero-badge span {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; color: rgba(255,255,255,.6);
    text-transform: uppercase; letter-spacing: 1px;
  }
  .hero-badge i { color: var(--orange); }

  /* ── HOMEPAGE HERO (SPLIT) ── */
  .home-hero {
    background: var(--navy);
    position: relative; overflow: hidden;
    min-height: 88vh; display: flex; align-items: center;
  }
  .home-hero::before {
    content:'';
    position: absolute; top: -20%; right: -10%;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,106,0,.22) 0%, transparent 65%);
    pointer-events: none;
  }
  .home-hero-grid {
    position: absolute; inset: 0; opacity: .04;
    background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
    background-size: 50px 50px;
  }
  .home-hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 2;
    max-width: 1140px; margin: 0 auto;
    padding: 100px 20px 80px;
  }
  @media(max-width:768px) {
    .home-hero-inner { grid-template-columns:1fr; padding:80px 20px 60px; }
    .home-hero-visual { display: none; }
  }
  .home-hero h1 { color: #fff; margin-bottom: 20px; }
  .home-hero p  { color: rgba(255,255,255,.72); font-size: 17px; margin-bottom: 36px; line-height: 1.8; }
  .hero-stats {
    display: flex; gap: 28px; flex-wrap: wrap; margin-top: 40px;
    padding-top: 36px; border-top: 1px solid rgba(255,255,255,.1);
  }
  .hero-stat-num { font-family:'Syne',sans-serif; font-weight:800; font-size:30px; color:#fff; }
  .hero-stat-num span { color:var(--orange); }
  .hero-stat-label { font-size:12px; color:rgba(255,255,255,.5); font-weight:600; text-transform:uppercase; letter-spacing:.5px; }
  .home-hero-visual {
    display: flex; flex-direction: column; gap: 16px;
  }
  .visual-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius); padding: 20px 24px;
    display: flex; align-items: center; gap: 16px;
    animation: float-card 6s ease-in-out infinite;
  }
  .visual-card:nth-child(2) { animation-delay: 2s; margin-left: 30px; }
  .visual-card:nth-child(3) { animation-delay: 4s; }
  @keyframes float-card {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  .vc-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--orange); display:flex; align-items:center;
    justify-content:center; font-size:22px; flex-shrink:0;
  }
  .vc-text h4 { font-size:14px; font-weight:700; color:#fff; margin-bottom:3px; }
  .vc-text p  { font-size:12px; color:rgba(255,255,255,.55); margin:0; }

  /* ── SECTIONS ── */
  .section { padding: 80px 0; }
  .section-sm { padding: 50px 0; }
  .section.bg-off { background: var(--off-white); }
  .section.bg-navy { background: var(--navy); }
  .section-header { margin-bottom: 50px; }
  .section-header.center { text-align: center; }
  .section-header h2 { margin-top: 8px; margin-bottom: 16px; }
  .section-header p { max-width: 580px; }
  .section-header.center p { margin: 0 auto; }

  /* ── SERVICE CARDS ── */
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
  .service-card {
    background: #fff; border-radius: var(--radius);
    border: 1px solid var(--border); padding: 32px 28px;
    box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
    position: relative; overflow: hidden;
  }
  .service-card::after {
    content:''; position:absolute; top:0; left:0; right:0;
    height:4px; background:var(--orange);
    transform: scaleX(0); transform-origin:left;
    transition: transform .3s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  .service-card:hover::after { transform: scaleX(1); }
  .sc-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--orange-light); display:flex;
    align-items:center; justify-content:center;
    font-size: 26px; margin-bottom: 20px;
  }
  .service-card h3 { font-size: 19px; margin-bottom: 10px; }
  .service-card p  { font-size: 14px; margin-bottom: 22px; }
  .service-card a  { font-size:13px; font-weight:700; color:var(--orange); text-decoration:none; }
  .service-card a:hover { text-decoration:underline; }

  /* ── BRAND GRID ── */
  .brand-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
  }
  .brand-card {
    border: 2px solid var(--border); border-radius: var(--radius-sm);
    padding: 18px 14px; text-align: center; text-decoration: none;
    color: var(--text); font-weight: 800; font-size: 14px;
    transition: border-color .2s, color .2s, transform .2s;
    display: block;
  }
  .brand-card:hover { border-color:var(--orange); color:var(--orange); transform:translateY(-3px); text-decoration:none; }
  .brand-card .bc-emoji { font-size: 26px; display:block; margin-bottom:8px; }

  /* ── TRUST CARDS ── */
  .trust-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  .trust-card {
    background: #fff; border-radius: var(--radius);
    padding: 28px 22px; box-shadow: var(--shadow); text-align:center;
    transition: transform .2s;
  }
  .trust-card:hover { transform: translateY(-4px); }
  .trust-card .tc-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--orange-light); margin: 0 auto 16px;
    display: flex; align-items:center; justify-content:center;
    font-size:22px; color:var(--orange);
  }
  .trust-card h4 { font-size:15px; font-weight:700; margin-bottom:8px; }
  .trust-card p  { font-size:13px; color:var(--muted); margin:0; }

  /* ── AREA CHIPS ── */
  .area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
  .area-chip {
    background: #fff; border: 2px solid var(--border);
    border-radius: 30px; padding: 9px 18px;
    font-size: 13px; font-weight: 700; text-decoration:none; color: #333;
    transition: all .2s; cursor: pointer;
  }
  .area-chip:hover, .area-chip.active {
    border-color:var(--orange); color:var(--orange);
    background: var(--orange-light); text-decoration:none;
  }

  /* ── AREA CARDS ── */
  .area-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }
  .area-card {
    background: #fff; border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 22px 18px; text-decoration:none; color:var(--text);
    display: flex; flex-direction:column; gap:6px;
    box-shadow: var(--shadow); transition: all .25s;
  }
  .area-card:hover { border-color:var(--orange); transform:translateY(-4px); text-decoration:none; color:var(--text); }
  .area-card .ac-icon { font-size:24px; color:var(--orange); }
  .area-card h4 { font-size:15px; font-weight:700; }
  .area-card p  { font-size:12px; color:var(--muted); margin:0; }

  /* ── PRICING TABLE ── */
  .pricing-table {
    width:100%; border-collapse:collapse;
    border-radius: var(--radius); overflow:hidden;
    box-shadow: var(--shadow-lg);
  }
  .pricing-table th {
    background: var(--navy); color:#fff;
    padding: 16px 20px; font-size:14px; text-align:left;
    font-family:'Syne',sans-serif;
  }
  .pricing-table td { padding:14px 20px; font-size:14px; border-bottom:1px solid var(--border); }
  .pricing-table tr:last-child td { border-bottom:none; }
  .pricing-table tr:nth-child(even) td { background:var(--off-white); }
  .pricing-table tr:hover td { background:var(--orange-light); }
  .price-badge {
    background:var(--orange-light); color:var(--orange-dark);
    font-weight:700; padding:5px 14px; border-radius:20px; font-size:13px;
  }
  .pricing-note {
    background:var(--orange-light); border-left:4px solid var(--orange);
    padding:14px 18px; border-radius:0 var(--radius-sm) var(--radius-sm) 0;
    font-size:13px; margin-top:16px; color:#555;
  }

  /* ── FAQ ── */
  .faq-list { display:flex; flex-direction:column; gap:12px; }
  .faq-item {
    border:1px solid var(--border); border-radius:var(--radius);
    overflow:hidden; background:#fff;
  }
  .faq-question {
    padding:18px 22px; cursor:pointer;
    display:flex; justify-content:space-between; align-items:center;
    font-weight:700; font-size:15px; background:#fff;
    transition:background .2s; user-select:none;
  }
  .faq-question:hover { background:var(--orange-light); }
  .faq-question.active { background:var(--orange-light); color:var(--orange-dark); }
  .faq-icon { font-size:20px; flex-shrink:0; transition:transform .3s; color:var(--orange); }
  .faq-question.active .faq-icon { transform:rotate(45deg); }
  .faq-answer {
    display:none; padding:0 22px 18px;
    font-size:14px; color:#555; line-height:1.75;
  }
  .faq-answer.open { display:block; }

  /* ── REVIEW CARDS ── */
  .reviews-grid {
    display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:20px;
  }
  .review-card {
    background:#fff; border-radius:var(--radius);
    border:1px solid var(--border); padding:24px;
    box-shadow:var(--shadow);
  }
  .review-stars { color:#f59e0b; font-size:16px; margin-bottom:10px; }
  .review-text { font-size:14px; color:#444; line-height:1.7; margin-bottom:14px; font-style:italic; }
  .review-author { font-size:13px; font-weight:700; color:var(--text); }
  .review-area { font-size:12px; color:var(--muted); }

  /* ── BLOG ── */
  .blog-grid {
    display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:24px;
  }
  .blog-card {
    background:#fff; border-radius:var(--radius);
    border:1px solid var(--border); overflow:hidden;
    box-shadow:var(--shadow); transition:transform .25s;
  }
  .blog-card:hover { transform:translateY(-5px); }
  .blog-thumb {
    height:160px; display:flex; align-items:center;
    justify-content:center; font-size:52px;
  }
  .blog-body { padding:22px; }
  .blog-tag { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1.5px; color:var(--orange); margin-bottom:8px; }
  .blog-body h3 { font-size:17px; margin-bottom:10px; }
  .blog-body p { font-size:13px; margin-bottom:16px; }
  .blog-link { font-size:13px; font-weight:700; color:var(--orange); text-decoration:none; }
  .blog-link:hover { text-decoration:underline; }

  /* ── CTA SECTION ── */
  .cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 90px 0; text-align:center; position:relative; overflow:hidden;
  }
  .cta-section::before {
    content:''; position:absolute;
    top:-50%; left:50%; transform:translateX(-50%);
    width:800px; height:800px; border-radius:50%;
    background:radial-gradient(circle,rgba(255,106,0,.18) 0%,transparent 65%);
    pointer-events:none;
  }
  .cta-section .container { position:relative; z-index:2; }
  .cta-section h2 { color:#fff; margin-bottom:14px; }
  .cta-section p  { color:rgba(255,255,255,.7); font-size:17px; margin-bottom:36px; max-width:520px; margin-left:auto; margin-right:auto; }

  /* ── COMPARISON TABLE ── */
  .compare-table {
    width:100%; border-collapse:collapse;
    border-radius:var(--radius); overflow:hidden;
    box-shadow:var(--shadow-lg);
  }
  .compare-table th {
    padding:18px 20px; font-size:14px; text-align:center;
    font-family:'Syne',sans-serif; font-weight:800;
  }
  .compare-table th:first-child { text-align:left; background:var(--navy); color:#fff; }
  .compare-table th:nth-child(2) { background:var(--orange); color:#fff; }
  .compare-table th:nth-child(3) { background:#4a5568; color:#fff; }
  .compare-table td { padding:14px 20px; font-size:14px; border-bottom:1px solid var(--border); }
  .compare-table td:first-child { font-weight:600; }
  .compare-table td:not(:first-child) { text-align:center; }
  .compare-table tr:nth-child(even) td { background:var(--off-white); }
  .compare-table .yes { color:#25d366; font-size:20px; font-weight:800; }
  .compare-table .no  { color:#94a3b8; font-size:14px; }

  /* ── FLOATING ACTION ── */
  .fab-group {
    position:fixed; bottom:100px; right:20px; z-index:8000;
    display:flex; flex-direction:column; gap:12px; align-items:flex-end;
  }
  .fab-btn {
    display:flex; align-items:center; gap:10px;
    padding:12px 20px; border-radius:50px;
    font-weight:700; font-size:14px; text-decoration:none;
    box-shadow:0 6px 24px rgba(0,0,0,.22);
    transition:transform .2s, box-shadow .2s; white-space:nowrap;
  }
  .fab-btn:hover { transform:translateY(-3px); box-shadow:0 10px 32px rgba(0,0,0,.3); text-decoration:none; }
  .fab-call { background:var(--orange); color:#fff; }
  .fab-wa   { background:var(--green);  color:#fff; }
  .fab-btn i { font-size:18px; }
  @media(max-width:640px) {
    .fab-btn span { display:none; }
    .fab-btn { padding:14px; border-radius:50%; }
  }

  /* ── MOBILE BOTTOM BAR ── */
  .bottom-bar {
    display:none; position:fixed; bottom:0; left:0; right:0;
    z-index:8000; background:#fff;
    box-shadow:0 -4px 20px rgba(0,0,0,.12);
    padding:10px 14px; gap:10px;
  }
  .bottom-bar a {
    flex:1; display:flex; align-items:center; justify-content:center;
    gap:7px; padding:13px; border-radius:10px;
    font-weight:700; font-size:14px; text-decoration:none;
  }
  .bb-call { background:var(--orange); color:#fff; }
  .bb-wa   { background:var(--green);  color:#fff; }
  @media(max-width:768px) {
    .bottom-bar { display:flex; }
    body { padding-bottom:72px; }
    .fab-group { bottom:84px; }
  }

  /* ── FOOTER ── */
  .site-footer { background:var(--navy); color:rgba(255,255,255,.6); padding:70px 0 0; }
  .footer-grid {
    display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px; padding-bottom:50px;
  }
  @media(max-width:768px) { .footer-grid { grid-template-columns:1fr 1fr; } }
  @media(max-width:480px) { .footer-grid { grid-template-columns:1fr; } }
  .footer-logo { margin-bottom:16px; display:flex; align-items:center; gap:10px; }
  .footer-logo .logo-mark { width:38px; height:38px; font-size:18px; }
  .footer-logo .logo-text { font-size:17px; }
  .footer-about { font-size:14px; line-height:1.8; margin-bottom:20px; }
  .footer-social { display:flex; gap:10px; }
  .footer-social a {
    width:36px; height:36px; border-radius:8px;
    background:rgba(255,255,255,.08); display:flex;
    align-items:center; justify-content:center;
    color:rgba(255,255,255,.6); font-size:15px;
    text-decoration:none; transition:background .2s, color .2s;
  }
  .footer-social a:hover { background:var(--orange); color:#fff; }
  .footer-col h5 {
    font-family:'Syne',sans-serif; font-size:13px; font-weight:800;
    text-transform:uppercase; letter-spacing:2px; color:#fff;
    margin-bottom:18px;
  }
  .footer-col a {
    display:block; color:rgba(255,255,255,.55); font-size:14px;
    text-decoration:none; margin-bottom:10px; transition:color .2s;
  }
  .footer-col a:hover { color:var(--orange); }
  .footer-contact-item {
    display:flex; gap:10px; align-items:flex-start;
    font-size:14px; margin-bottom:14px;
  }
  .footer-contact-item i { color:var(--orange); margin-top:3px; flex-shrink:0; }
  .footer-contact-item a { color:rgba(255,255,255,.7); text-decoration:none; }
  .footer-contact-item a:hover { color:var(--orange); }
  .footer-bottom {
    border-top:1px solid rgba(255,255,255,.08);
    padding:20px; text-align:center; font-size:13px;
    color:rgba(255,255,255,.35);
  }
  .footer-bottom a { color:var(--orange); text-decoration:none; }

  /* ── SCROLL ANIMATION ── */
  .reveal {
    opacity:0; transform:translateY(28px);
    transition:opacity .6s ease, transform .6s ease;
  }
  .reveal.visible { opacity:1; transform:translateY(0); }

  /* ── UTILITY ── */
  .mt-8  { margin-top:  8px; }
  .mt-16 { margin-top: 16px; }
  .mt-24 { margin-top: 24px; }
  .mt-32 { margin-top: 32px; }
  .mb-8  { margin-bottom:  8px; }
  .mb-16 { margin-bottom: 16px; }
  .text-center { text-align: center; }
  .text-white  { color: #fff; }

  /* ══════════════════════════════════════════════
     GALLERY STYLES
     Used on: gallery/index.html + homepage preview
  ══════════════════════════════════════════════ */

  /* ── Filter Bar ── */
  .gallery-filters {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; margin-bottom: 40px;
  }
  .gf-btn {
    padding: 9px 20px; border-radius: 30px;
    border: 2px solid var(--border);
    background: #fff; color: var(--text);
    font-size: 13px; font-weight: 700;
    cursor: pointer; transition: all .2s;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .gf-btn:hover, .gf-btn.active {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
  }

  /* ── Masonry-style Grid ── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  .gallery-grid.preview {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  /* ── Gallery Card ── */
  .gallery-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .28s, box-shadow .28s;
    cursor: pointer;
    position: relative;
  }
  .gallery-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-lg);
  }
  .gallery-card[data-hidden="true"] {
    display: none;
  }

  /* ── Image Wrapper ── */
  .gc-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--off-white);
    overflow: hidden;
  }
  .gc-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
  }
  .gallery-card:hover .gc-img-wrap img {
    transform: scale(1.06);
  }

  /* Placeholder shown when no real image is uploaded */
  .gc-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px; color: var(--muted);
    font-size: 13px; font-weight: 600;
  }
  .gc-placeholder .ph-icon {
    font-size: 44px; opacity: .35;
  }
  .gc-placeholder .ph-label {
    opacity: .55; text-align: center; padding: 0 16px;
  }

  /* Status badge – Before / After / Fixed */
  .gc-status {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 13px; border-radius: 20px;
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    backdrop-filter: blur(6px);
  }
  .gc-status.before {
    background: rgba(239,68,68,.85); color: #fff;
  }
  .gc-status.after {
    background: rgba(37,211,102,.9); color: #fff;
  }
  .gc-status.fixed {
    background: rgba(255,106,0,.9); color: #fff;
  }

  /* Hover overlay */
  .gc-overlay {
    position: absolute; inset: 0;
    background: rgba(13,27,42,.72);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s;
  }
  .gallery-card:hover .gc-overlay { opacity: 1; }
  .gc-overlay-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
    transform: scale(.7); transition: transform .3s;
  }
  .gallery-card:hover .gc-overlay-icon { transform: scale(1); }

  /* ── Card Body ── */
  .gc-body {
    padding: 16px 18px 18px;
  }
  .gc-meta {
    display: flex; align-items: center;
    gap: 8px; margin-bottom: 8px; flex-wrap: wrap;
  }
  .gc-tag {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.2px;
    color: var(--orange);
    background: var(--orange-light);
    padding: 3px 10px; border-radius: 20px;
  }
  .gc-area {
    font-size: 12px; color: var(--muted); font-weight: 600;
  }
  .gc-body h3 {
    font-size: 15px; font-weight: 700;
    margin-bottom: 6px; line-height: 1.4;
    font-family: 'Syne', sans-serif;
  }
  .gc-body p {
    font-size: 13px; color: var(--muted);
    line-height: 1.65; margin: 0;
  }
  .gc-footer {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 0 18px 14px;
  }
  .gc-brand {
    font-size: 12px; font-weight: 700;
    color: var(--muted);
    display: flex; align-items: center; gap: 5px;
  }
  .gc-wa-btn {
    font-size: 12px; font-weight: 700;
    color: var(--green-dark); text-decoration: none;
    display: flex; align-items: center; gap: 5px;
    padding: 6px 14px; border-radius: 20px;
    background: rgba(37,211,102,.12);
    transition: background .2s;
  }
  .gc-wa-btn:hover {
    background: var(--green); color: #fff; text-decoration: none;
  }

  /* ── Lightbox ── */
  .lightbox-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,.92);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .lightbox-overlay.open {
    opacity: 1; pointer-events: all;
  }
  .lightbox-box {
    background: var(--navy);
    border-radius: var(--radius);
    max-width: 900px; width: 100%;
    max-height: 92vh; overflow-y: auto;
    position: relative;
    transform: scale(.92);
    transition: transform .3s;
  }
  .lightbox-overlay.open .lightbox-box {
    transform: scale(1);
  }
  .lightbox-img-wrap {
    width: 100%; aspect-ratio: 16/9;
    background: #000; overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .lightbox-img-wrap img {
    width: 100%; height: 100%; object-fit: contain;
  }
  .lightbox-body {
    padding: 28px 32px 32px;
  }
  .lightbox-meta {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px;
  }
  .lightbox-body h2 {
    font-size: 22px; color: #fff; margin-bottom: 10px;
  }
  .lightbox-body p {
    font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.8;
  }
  .lightbox-close {
    position: absolute; top: 16px; right: 16px;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.15); border: none;
    color: #fff; font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
    z-index: 2;
  }
  .lightbox-close:hover { background: var(--orange); }
  .lightbox-actions {
    display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap;
  }

  /* ── Upload CTA card ── */
  .gallery-upload-cta {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 40px 20px;
    text-align: center;
    background: var(--off-white);
    transition: border-color .2s;
  }
  .gallery-upload-cta:hover { border-color: var(--orange); }
  .gallery-upload-cta .up-icon {
    font-size: 40px; color: var(--orange);
    margin-bottom: 14px;
  }
  .gallery-upload-cta h4 {
    font-size: 16px; margin-bottom: 8px;
  }
  .gallery-upload-cta p {
    font-size: 13px; color: var(--muted); margin-bottom: 18px;
  }

  /* ── Stats bar inside gallery ── */
  .gallery-stats {
    display: flex; gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden; margin-bottom: 48px;
    background: #fff;
  }
  .gs-item {
    flex: 1; padding: 22px 16px; text-align: center;
    border-right: 1px solid var(--border);
  }
  .gs-item:last-child { border-right: none; }
  .gs-num {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 28px; color: var(--orange);
    display: block;
  }
  .gs-label {
    font-size: 12px; font-weight: 600; color: var(--muted);
    text-transform: uppercase; letter-spacing: .8px;
  }
  @media(max-width: 540px) {
    .gallery-stats { flex-wrap: wrap; }
    .gs-item { flex: 1 0 50%; border-bottom: 1px solid var(--border); }
  }

  /* ── Empty state ── */
  .gallery-empty {
    grid-column: 1/-1;
    text-align: center; padding: 60px 20px;
    color: var(--muted);
  }
  .gallery-empty .ge-icon { font-size: 48px; margin-bottom: 16px; opacity: .4; }
  .gallery-empty p { font-size: 15px; }

  @media(max-width: 640px) {
    .gc-body h3 { font-size: 14px; }
    .lightbox-body { padding: 20px; }
    .lightbox-body h2 { font-size: 18px; }
  }