    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #0f1a35; --surface: #1a2a4a; --dark: #0a1428;
      --accent: #f5d800; --text: #e8edf8; --muted: #9ab0d8;
      --border: rgba(245,216,0,0.2); --border-dim: rgba(255,255,255,0.07);
    }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; overflow-x: hidden; padding-bottom: 70px; }

    /* TOP BAR */
    .top-bar { background: var(--dark); border-bottom: 1px solid var(--border); padding: 0.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
    .top-bar-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
    .top-bar-item { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 0.35rem; }
    .top-bar-item .hi { color: var(--accent); font-weight: 700; }
    .top-bar-divider { width: 1px; height: 12px; background: var(--border); }
    .top-bar-right { display: flex; align-items: center; gap: 0.5rem; }
    .top-bar-phone { font-size: 0.75rem; font-weight: 700; color: var(--accent); letter-spacing: 0.05em; text-decoration: none; }
    .top-bar-phone:hover { text-decoration: underline; }
    .top-bar-label { font-size: 0.68rem; color: var(--muted); }

    /* NAV */
    nav { position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 30px rgba(0,0,0,0.4); }
    .nav-logo-bar { background: var(--dark); border-bottom: 1px solid var(--border); padding: 0.75rem 2rem; display: flex; align-items: center; justify-content: space-between; min-height: 116px; }
    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo img { max-width: 1000px; width: 100%; height: 100px; object-fit: contain; display: block; }
    .nav-call { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
    .nav-call-label { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); white-space: nowrap; }
    .nav-call-btn { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.5rem 1.4rem; background: var(--accent); color: #050810; border: 2px solid var(--accent); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: all 0.25s ease; white-space: nowrap; box-shadow: 0 0 14px rgba(245,216,0,0.3); position: relative; overflow: hidden; min-width: 180px; justify-content: center; }
    .nav-call-btn:hover { background: transparent; color: var(--accent); }
    .nav-call-btn .btn-default-text,
    .nav-call-btn .btn-hover-num { display: flex; align-items: center; gap: 0.4rem; transition: opacity 0.2s, transform 0.2s; }
    .nav-call-btn .btn-hover-num { position: absolute; opacity: 0; transform: translateY(8px); }
    .nav-call-btn:hover .btn-default-text { opacity: 0; transform: translateY(-8px); }
    .nav-call-btn:hover .btn-hover-num { opacity: 1; transform: translateY(0); }
    .nav-links-bar { background: var(--surface); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
    .nav-links { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
    .nav-links a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-decoration: none; padding: 0.85rem 1.5rem; display: block; position: relative; transition: color 0.2s; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 1.5rem; right: 1.5rem; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform 0.25s ease; }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
    .nav-links a.active { color: var(--accent); }

    /* HERO */
    .hero { min-height: 85vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 4rem 2rem 5rem; }
    .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(100,160,255,0.08) 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 10% 80%, rgba(245,216,0,0.05) 0%, transparent 60%), linear-gradient(135deg, rgba(10,20,40,0.97) 0%, rgba(15,26,53,0.88) 40%, rgba(15,26,53,0.6) 100%), url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1400&q=80') center/cover no-repeat; }
    .hero-bg::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(245,216,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(245,216,0,0.03) 1px, transparent 1px); background-size: 60px 60px; }
    .hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: center; width: 100%; max-width: 1280px; margin: 0 auto; }
    .hero-content { max-width: 580px; }
    .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--border); padding: 0.35rem 0.9rem; margin-bottom: 1.75rem; animation: fadeUp 0.8s ease both; }
    .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: blink 1.5s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
    .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 400; line-height: 1.1; color: var(--text); margin-bottom: 1.5rem; animation: fadeUp 0.8s 0.1s ease both; }
    .hero h1 em { color: var(--accent); font-style: italic; }
    .hero-sub { font-size: 1.05rem; line-height: 1.8; color: var(--muted); max-width: 480px; margin-bottom: 2.5rem; animation: fadeUp 0.8s 0.2s ease both; }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
    .hero-stats { display: flex; gap: 2rem; z-index: 2; margin-top: 2.5rem; animation: fadeUp 0.8s 0.5s ease both; }
    .hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
    .hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
    .hero-stat-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
    .hero-stat-divider { width: 1px; background: var(--border); align-self: stretch; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

    /* HERO RIGHT PANEL */
    .hero-panel { display: flex; flex-direction: column; gap: 0.7rem; animation: fadeUp 0.8s 0.4s ease both; }
    .hero-panel-label { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); opacity: 0.7; margin-bottom: 0.1rem; }
    .hero-big-stat { background: rgba(15,26,53,0.75); border: 1px solid var(--border); padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1.1rem; backdrop-filter: blur(10px); transition: border-color 0.3s, transform 0.3s; cursor: default; }
    .hero-big-stat:hover { border-color: rgba(245,216,0,0.5); transform: translateX(5px); }
    .hero-big-stat-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(245,216,0,0.1); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
    .hero-big-stat-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--accent); line-height: 1; display: block; }
    .hero-big-stat-label { font-size: 0.73rem; color: var(--text); font-weight: 600; display: block; margin-top: 0.15rem; }
    .hero-big-stat-sub { font-size: 0.62rem; color: var(--muted); margin-top: 0.1rem; display: block; line-height: 1.4; }
    .hero-cert-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
    .hero-cert { background: rgba(15,26,53,0.65); border: 1px solid var(--border-dim); padding: 1rem 1.1rem; backdrop-filter: blur(10px); transition: border-color 0.3s, transform 0.3s; cursor: default; }
    .hero-cert:hover { border-color: var(--border); transform: translateY(-2px); }
    .hero-cert-icon { font-size: 1.1rem; margin-bottom: 0.35rem; display: block; }
    .hero-cert-title { font-size: 0.68rem; font-weight: 700; color: var(--text); letter-spacing: 0.02em; display: block; }
    .hero-cert-body { font-size: 0.6rem; color: var(--muted); margin-top: 0.2rem; line-height: 1.5; }
    .hero-avail { background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.25); padding: 0.85rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; backdrop-filter: blur(10px); }
    .hero-avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; animation: blink 1.5s ease-in-out infinite; box-shadow: 0 0 8px rgba(34,197,94,0.6); }
    .hero-avail-text { font-size: 0.72rem; color: #22c55e; font-weight: 700; letter-spacing: 0.03em; }
    .hero-avail-sub { font-size: 0.62rem; color: var(--muted); margin-left: auto; }

    @media (max-width: 1100px) { .hero-inner { grid-template-columns: 1fr; } .hero-panel { display: none; } }

    /* BUTTONS */
    .btn-primary { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.85rem 2rem; background: var(--accent); color: #050810; border: 2px solid var(--accent); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.25s; box-shadow: 0 0 30px rgba(245,216,0,0.2); }
    .btn-primary:hover { background: transparent; color: var(--accent); box-shadow: 0 0 40px rgba(245,216,0,0.35); }
    .btn-outline { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.85rem 2rem; background: transparent; color: var(--text); border: 1px solid var(--border-dim); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.25s; }
    .btn-outline:hover { border-color: var(--accent); color: var(--accent); }

    /* SECTION COMMON */
    section { padding: 6rem 2rem; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
    .section-label::before { content: ''; width: 30px; height: 1px; background: var(--accent); }
    .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.2; color: var(--text); margin-bottom: 1rem; }
    .section-title em { color: var(--accent); font-style: italic; }
    .section-sub { font-size: 1rem; line-height: 1.8; color: var(--muted); max-width: 540px; }

    /* BRAND LOGOS */
    .brands-strip { background: var(--dark); border-bottom: 1px solid var(--border); padding: 1.75rem 2rem; overflow: hidden; }
    .brands-label { text-align: center; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; opacity: 0.6; }
    .brands-track-wrap { overflow: hidden; position: relative; }
    .brands-track-wrap::before, .brands-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; }
    .brands-track-wrap::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
    .brands-track-wrap::after { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
    .brands-track { display: flex; gap: 3rem; align-items: center; width: max-content; }
    
    
    .brand-item { display: flex; align-items: center; gap: 0.5rem; opacity: 0.45; transition: opacity 0.3s; flex-shrink: 0; filter: grayscale(1) brightness(2); }
    .brand-item:hover { opacity: 0.9; filter: grayscale(0) brightness(1); }
    .brand-item svg { height: 32px; width: auto; }
    .brand-item img { height: 32px; width: auto; object-fit: contain; }
    #services { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 2rem; display: flex; align-items: center; justify-content: center; }
    .ws-container { display: flex; max-width: 1280px; width: 100%; border: 1px solid var(--border); background: var(--surface); box-shadow: 0 30px 70px rgba(0,0,0,0.5); overflow: hidden; }
    .ws-panel { width: 320px; flex-shrink: 0; padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--border); position: relative; overflow: hidden; }
    .ws-panel::before { content: ''; position: absolute; top: -60px; left: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(100,160,255,0.25) 0%, transparent 70%); pointer-events: none; }
    .ws-panel-label { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 300; margin-bottom: 0.9rem; }
    .ws-panel-subtitle { font-size: 0.88rem; color: var(--muted); font-weight: 700; letter-spacing: 0.03em; margin-bottom: 2rem; line-height: 1.5; }
    .ws-slide-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 400; line-height: 1.3; color: var(--text); margin-bottom: 0.9rem; transition: all 0.4s ease; }
    .ws-slide-title em { color: var(--accent); font-style: italic; }
    .ws-slide-desc { font-size: 0.85rem; line-height: 1.75; color: var(--muted); transition: all 0.4s ease; }
    .ws-panel-meta { margin-top: auto; padding-top: 1.5rem; }
    .ws-thumb-nav { display: flex; flex-direction: column; gap: 0.4rem; list-style: none; }
    .ws-thumb-btn { display: flex; align-items: center; gap: 0.6rem; background: none; border: none; cursor: pointer; padding: 0.25rem 0; opacity: 0.4; transition: opacity 0.3s; text-align: left; }
    .ws-thumb-btn.active { opacity: 1; }
    .ws-thumb-btn:hover { opacity: 0.75; }
    .ws-thumb-dot { width: 18px; height: 2px; background: var(--accent); flex-shrink: 0; transition: width 0.3s; }
    .ws-thumb-btn.active .ws-thumb-dot { width: 32px; }
    .ws-thumb-name { font-size: 0.68rem; color: var(--text); letter-spacing: 0.04em; line-height: 1.3; }
    .ws-slider-wrap { flex: 1; position: relative; overflow: hidden; min-height: 900px; }
    .ws-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; transform: scale(1.04); }
    .ws-slide.active { opacity: 1; transform: scale(1); z-index: 2; }
    .ws-slide.exiting { opacity: 0; transform: scale(0.97); z-index: 1; }
    .ws-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .ws-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,20,40,0.5) 0%, transparent 60%); }
    .ws-controls { position: absolute; bottom: 1.25rem; right: 1.25rem; display: flex; gap: 0.5rem; z-index: 10; }
    .ws-ctrl-btn { width: 40px; height: 40px; background: rgba(10,20,40,0.75); border: 1px solid var(--border); color: var(--accent); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background 0.2s, border-color 0.2s; backdrop-filter: blur(6px); }
    .ws-ctrl-btn:hover { background: rgba(245,216,0,0.15); border-color: var(--accent); }
    .ws-progress { position: absolute; bottom: 0; left: 0; height: 2px; background: var(--accent); width: 0%; z-index: 10; }

    /* ABOUT */
    #about { background: var(--bg); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--border); }
    .about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85) saturate(0.8); }
    .about-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,20,40,0.7) 0%, transparent 50%); }
    .about-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--accent); color: #050810; padding: 1.5rem; text-align: center; z-index: 2; box-shadow: 0 10px 40px rgba(245,216,0,0.3); }
    .about-badge-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; display: block; }
    .about-badge-text { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
    .about-visual { position: relative; }
    .about-body { font-size: 0.95rem; line-height: 1.85; color: var(--muted); margin-bottom: 2rem; }
    .about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
    .pillar { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; border: 1px solid var(--border-dim); transition: border-color 0.25s; }
    .pillar:hover { border-color: var(--border); }
    .pillar-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
    .pillar h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; color: var(--text); margin-bottom: 0.2rem; }
    .pillar p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

    /* CONTACT */
    #contact { background: var(--bg); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
    .contact-info p { font-size: 0.92rem; line-height: 1.8; color: var(--muted); margin-bottom: 2rem; }
    .contact-info .section-title { margin-bottom: 1rem; }
    .contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
    .contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
    .contact-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
    .contact-detail-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.2rem; }
    .contact-detail-value { font-size: 0.9rem; color: var(--text); }
    .contact-form { background: var(--surface); border: 1px solid var(--border-dim); padding: 2.5rem; }
    .contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; color: var(--text); margin-bottom: 0.4rem; }
    .contact-form-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
    .form-group label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
    .form-group input, .form-group select, .form-group textarea { background: var(--bg); border: 1px solid var(--border-dim); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.88rem; padding: 0.75rem 1rem; outline: none; transition: border-color 0.25s; width: 100%; }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
    .form-group select option { background: var(--surface); }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit { width: 100%; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 1rem; background: var(--accent); color: #050810; border: 2px solid var(--accent); cursor: pointer; transition: all 0.25s; margin-top: 0.5rem; }
    .form-submit:hover { background: transparent; color: var(--accent); }

    /* FOOTER */
    .ws-footer { position: fixed; bottom: 0; left: 0; right: 0; width: 100%; background: var(--surface); border-top: 1px solid var(--border); padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; z-index: 999; }
    .ws-nav-btn { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; padding: 0.45rem 1.3rem; border: 1px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; transition: all 0.25s ease; position: relative; overflow: hidden; text-decoration: none; display: inline-flex; align-items: center; }
    .ws-nav-btn::after { content: ''; position: absolute; inset: 0; background: var(--accent); opacity: 0; transition: opacity 0.25s ease; z-index: 0; }
    .ws-nav-btn span { position: relative; z-index: 1; }
    .ws-nav-btn:hover { color: #050810; border-color: var(--accent); }
    .ws-nav-btn:hover::after { opacity: 1; }
    .ws-nav-btn.active { background: var(--accent); color: #050810; border-color: var(--accent); font-weight: 700; }
    .ws-yelp-btn { border-color: rgba(175,0,0,0.4); }
    .ws-yelp-btn::after { background: #af0000; }
    .ws-yelp-btn:hover { color: #fff; border-color: #af0000; }
    .ws-gmail-btn { border-color: rgba(234,67,53,0.4); }
    .ws-gmail-btn::after { background: #ea4335; }
    .ws-gmail-btn:hover { color: #fff; border-color: #ea4335; }

    /* FLOATING PHONE */
    .ws-float-btn { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; display: flex; align-items: center; cursor: pointer; text-decoration: none; animation: float-bob 3s ease-in-out infinite; }
    .yelp-float-btn { position: fixed; bottom: 6.5rem; right: 2rem; z-index: 9999; cursor: pointer; text-decoration: none; animation: float-bob 3s ease-in-out infinite; animation-delay: 0.3s; display: flex; align-items: center; }
    .yelp-float-circle { width: 58px; height: 58px; border-radius: 50%; background: #af0000; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(175,0,0,0.5); animation: yelp-pulse 2.5s ease-out infinite; transition: transform 0.2s; flex-shrink: 0; }
    .yelp-float-btn:hover .yelp-float-circle { transform: scale(1.1); }
    @keyframes yelp-pulse { 0% { box-shadow: 0 4px 20px rgba(175,0,0,0.5), 0 0 0 0 rgba(175,0,0,0.4); } 70% { box-shadow: 0 4px 20px rgba(175,0,0,0.5), 0 0 0 16px rgba(175,0,0,0); } 100% { box-shadow: 0 4px 20px rgba(175,0,0,0.5), 0 0 0 0 rgba(175,0,0,0); } }
    .yelp-float-circle svg { width: 26px; height: 26px; fill: #fff; }
    .yelp-float-label { background: var(--surface); border: 1px solid rgba(175,0,0,0.4); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700; padding: 0.45rem 1rem 0.45rem 0.75rem; border-radius: 0 2rem 2rem 0; margin-left: -4px; white-space: nowrap; opacity: 0; max-width: 0; overflow: hidden; transition: opacity 0.3s, max-width 0.4s; }
    .yelp-float-btn:hover .yelp-float-label { opacity: 1; max-width: 200px; }
    @keyframes float-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
    .ws-float-circle { width: 58px; height: 58px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(245,216,0,0.5); animation: float-pulse 2.5s ease-out infinite; flex-shrink: 0; transition: transform 0.2s; }
    .ws-float-btn:hover .ws-float-circle { transform: scale(1.1); }
    @keyframes float-pulse { 0% { box-shadow: 0 4px 20px rgba(245,216,0,0.5), 0 0 0 0 rgba(245,216,0,0.4); } 70% { box-shadow: 0 4px 20px rgba(245,216,0,0.5), 0 0 0 16px rgba(245,216,0,0); } 100% { box-shadow: 0 4px 20px rgba(245,216,0,0.5), 0 0 0 0 rgba(245,216,0,0); } }
    .ws-float-circle svg { width: 26px; height: 26px; fill: #050810; }
    .ws-float-label { background: var(--surface); border: 1px solid var(--border); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 700; padding: 0.45rem 1rem 0.45rem 0.75rem; border-radius: 0 2rem 2rem 0; margin-left: -4px; white-space: nowrap; opacity: 0; max-width: 0; overflow: hidden; transition: opacity 0.3s, max-width 0.4s; }
    .ws-float-btn:hover .ws-float-label { opacity: 1; max-width: 200px; }

    /* RESPONSIVE */
    /* ── TABLET (max 1024px) ───────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-panel { display: none; }
    }

    /* ── TABLET (max 900px) ────────────────────────────────────── */
    @media (max-width: 900px) {
      .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-visual { display: none; }
      .hero { min-height: auto; padding: 3rem 1.5rem 4rem; }
      .hero-stats { flex-wrap: wrap; gap: 1rem; }
      .nav-logo-bar { padding: 0.75rem 1rem; min-height: auto; }
      .nav-logo img { height: 70px; }
      .nav-links-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .nav-links a { padding: 0.7rem 1rem; }
      .ws-container { flex-direction: column; }
      .ws-panel { width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem; }
      .ws-panel-meta { padding-top: 1rem; }
      .ws-thumb-nav { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1rem; }
      .ws-slider-wrap { min-height: 380px; }
      .about-pillars { gap: 0.75rem; }
      section { padding: 4rem 1.5rem; }
      #services { padding: 3rem 1.5rem; }
      .contact-grid { gap: 2rem; }
      .hero-cert-row { grid-template-columns: 1fr 1fr; }
    }

    /* ── MOBILE (max 600px) ────────────────────────────────────── */
    @media (max-width: 600px) {
      section { padding: 3.5rem 1rem; }
      #services { padding: 2rem 1rem; }

      /* Top bar */
      .top-bar { flex-direction: column; align-items: center; padding: 0.6rem 1rem; gap: 0.4rem; }
      .top-bar-left { gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
      .top-bar-divider { display: none; }
      .top-bar-right { width: 100%; justify-content: center; }
      .top-bar-item { font-size: 0.62rem; }

      /* Nav */
      .nav-logo-bar { flex-direction: column; gap: 0.6rem; padding: 0.75rem 1rem; min-height: auto; }
      .nav-logo img { height: 55px; max-width: 220px; }
      .nav-call { width: 100%; justify-content: center; gap: 0.5rem; }
      .nav-call > div { align-items: center !important; }
      .nav-call-label { display: none; }
      .nav-call-btn { font-size: 0.72rem; padding: 0.5rem 1rem; min-width: 160px; }
      .nav-links-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .nav-links a { padding: 0.65rem 0.75rem; font-size: 0.62rem; }

      /* Hero */
      .hero { padding: 2.5rem 1rem 3.5rem; }
      .hero h1 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
      .hero-sub { font-size: 0.92rem; }
      .hero-actions { flex-direction: column; gap: 0.75rem; }
      .hero-actions a { width: 100%; justify-content: center; }
      .hero-stats { gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
      .hero-stat-num { font-size: 1.5rem; }
      .hero-badge { font-size: 0.58rem; }

      /* Slider */
      .ws-slider-wrap { min-height: 240px; }
      .ws-slide-title { font-size: 1.25rem; }
      .ws-panel { padding: 1.25rem 1rem; }
      .ws-panel-label { font-size: 0.95rem; }
      .ws-controls { bottom: 0.75rem; right: 0.75rem; }
      .ws-ctrl-btn { width: 34px; height: 34px; font-size: 0.85rem; }

      /* About */
      .section-title { font-size: 1.75rem; }
      .about-body { font-size: 0.88rem; }
      .pillar { padding: 0.85rem 1rem; }

      /* Contact */
      .contact-form-wrap { padding: 1.5rem 1rem; }
      .form-row { grid-template-columns: 1fr; }
      .contact-details { gap: 1rem; }

      /* Footer nav */
      .ws-footer { gap: 0.6rem; padding: 0.75rem 0.5rem; flex-wrap: wrap; }
      .ws-nav-btn { font-size: 0.62rem; padding: 0.4rem 0.7rem; letter-spacing: 0.08em; }

      /* Floating buttons */
      .ws-float-btn { bottom: 4.5rem; right: 1rem; }
      .yelp-float-btn { bottom: 8rem; right: 1rem; }
      .ws-float-circle { width: 50px; height: 50px; }
      .ws-float-circle svg { width: 22px; height: 22px; }
      .yelp-float-circle { width: 50px; height: 50px; }
    }

    /* ── SMALL PHONES (max 380px) ──────────────────────────────── */
    @media (max-width: 380px) {
      .hero h1 { font-size: 1.6rem; }
      .nav-links a { font-size: 0.58rem; padding: 0.6rem 0.5rem; }
      .ws-nav-btn { font-size: 0.58rem; padding: 0.35rem 0.5rem; }
      .hero-stats { gap: 0.75rem; }
      .hero-stat-num { font-size: 1.3rem; }
    }
