 :root {
    --navy: #0d1b3e;
    --navy-mid: #162650;
    --navy-light: #1e3368;
    --gold: #c9a84c;
    --gold-light: #e8c96e;
    --white: #ffffff;
    --off-white: #f7f5f0;
    --concrete: #e8e6e1;
    --text-dark: #0d1b3e;
    --text-mid: #4a5568;
    --wa-green: #25D366;
    --wa-green-dark: #1da851;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: #fff;
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ==============================
     CONSTRUCTION TEXTURE UTILITY
     ============================== */
  .construction-bg {
    background-color: var(--off-white);
    background-image:
      linear-gradient(rgba(13,27,62,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(13,27,62,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .blueprint-bg {
    background-color: #0d1b3e;
    background-image:
      linear-gradient(rgba(201,168,76,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  /* ==============================
     NAVBAR
     ============================== */
  #mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
    background: transparent;
  }

  #mainNav.scrolled {
    background: rgba(13,27,62,0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .nav-logo-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    flex-shrink: 0;
  }

  .nav-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .brand-text-top {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: var(--white);
    line-height: 1;
    display: block;
  }

  .brand-text-sub {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: block;
    text-transform: uppercase;
    margin-top: 2px;
  }

  .nav-link {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85) !important;
    padding: 6px 16px !important;
    transition: color 0.2s;
  }

  .nav-link:hover { color: var(--gold) !important; }

  .nav-cta {
    background: var(--wa-green);
    color: white !important;
    border-radius: 4px;
    padding: 8px 20px !important;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--wa-green-dark) !important; color: white !important; }

  .navbar-toggler { border-color: var(--gold); }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201%2C168%2C76%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* ==============================
     HERO
     ============================== */
  #hero {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1800&q=90') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.75) 60%, rgba(13,27,62,0.5) 100%);
  }

  .hero-accent-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
  }

  .hero-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 16px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s 0.3s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
  }

  .hero-title em {
    font-style: normal;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.7s 0.7s forwards;
  }

  .hero-services-line {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.2em;
    font-size: 0.82rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 42px;
    opacity: 0;
    animation: fadeUp 0.7s 0.85s forwards;
  }

  .hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 0.7s 1s forwards;
  }

  .btn-wa {
    background: var(--wa-green);
    color: white;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-wa:hover {
    background: var(--wa-green-dark);
    color: white;
    transform: translateY(-2px);
  }

  .btn-ghost {
    background: transparent;
    color: white;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    padding: 14px 32px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
  }

  .hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.7s 1.3s forwards;
  }

  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
  }

  .scroll-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  /* ==============================
     TRUST BAR
     ============================== */
  #trust-bar {
    background: var(--navy);
    padding: 32px 0;
    border-top: 3px solid var(--gold);
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    padding: 10px 24px;
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .trust-item:last-child { border-right: none; }

  .trust-icon {
    width: 42px;
    height: 42px;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
  }

  .trust-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
  }

  /* ==============================
     SECTION HEADERS
     ============================== */
  .section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
  }

  .section-title.light { color: white; }

  .title-underline {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 20px 0 28px;
  }

  .title-underline.center { margin: 20px auto 28px; }

  /* ==============================
     OUR WORK / PROJECTS
     ============================== */
  #our-work {
    padding: 100px 0;
    background: white;
  }

  .projects-intro {
    font-size: 0.88rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    margin-bottom: 10px;
  }

  .project-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 320px 280px;
    gap: 12px;
    margin-top: 48px;
  }

  .project-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
  }

  .project-card.tall { grid-row: span 2; }

  .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .project-card:hover img { transform: scale(1.06); }

  .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,62,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
  }

  .project-card:hover .project-overlay { opacity: 1; }

  .project-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
  }

  .project-sublabel {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    display: block;
    margin-top: 4px;
  }

  /* ==============================
     SERVICES
     ============================== */
  #services {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  #services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
    background-size: 50px 50px;
  }

  .service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px;
    padding: 48px 36px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.4s ease;
  }

  .service-card:hover {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold);
    transform: translateY(-6px);
  }

  .service-card:hover::after { width: 100%; }

  .service-icon {
    width: 56px;
    height: 56px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 28px;
    transition: background 0.3s;
  }

  .service-card:hover .service-icon {
    background: var(--gold);
    color: var(--navy);
  }

  .service-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
  }

  .service-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
  }

  /* ==============================
     WHY US
     ============================== */
  #why-us {
    padding: 100px 0;
    background: var(--off-white);
  }

  .why-card {
    background: white;
    border-radius: 6px;
    padding: 36px 28px;
    border-top: 3px solid var(--gold);
    box-shadow: 0 4px 30px rgba(13,27,62,0.07);
    transition: transform 0.3s;
  }

  .why-card:hover { transform: translateY(-4px); }

  .why-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--concrete);
    line-height: 1;
    margin-bottom: 12px;
  }

  .why-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
  }

  .why-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
  }

  /* ==============================
     PROCESS
     ============================== */
  #process {
    padding: 100px 0;
    background: white;
  }

  .process-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 36px 0;
    border-bottom: 1px solid var(--concrete);
    position: relative;
  }

  .process-step:last-child { border-bottom: none; }

  .step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--concrete);
    line-height: 1;
    flex-shrink: 0;
    min-width: 70px;
    transition: color 0.3s;
  }

  .process-step:hover .step-number { color: var(--gold); }

  .step-content { padding-top: 8px; }

  .step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .step-desc {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.75;
  }

  .process-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 480px;
  }

  .process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .process-visual-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--navy);
    border: 1px solid var(--gold);
    padding: 18px 24px;
    border-radius: 4px;
  }

  .pv-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }

  .pv-badge-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
  }

  /* ==============================
     CTA #1 — QUOTE SELECTOR
     ============================== */
  #quote-cta {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  #quote-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
  }

  .typo-fix { /* "Quoye" → "Quote" fixed via CSS content */ }

  .cta-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 42px;
  }

  .quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(201,168,76,0.3);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    margin: 6px;
  }

  .quote-btn:hover {
    background: var(--wa-green);
    border-color: var(--wa-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  }

  .quote-btn i { font-size: 1rem; }

  .cta-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    margin-top: 28px;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
  }

  /* ==============================
     ABOUT SECTION
     ============================== */
  #about {
    padding: 100px 0;
    background: white;
  }

  .about-image-wrap {
    position: relative;
  }

  .about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
  }

  .about-img-accent {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    border: 6px solid white;
    box-shadow: 0 8px 40px rgba(13,27,62,0.15);
  }

  .about-badge {
    position: absolute;
    top: 28px;
    left: -20px;
    background: var(--navy);
    border-left: 4px solid var(--gold);
    padding: 18px 24px;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  }

  .about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }

  .about-badge-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-family: 'Barlow Condensed', sans-serif;
  }

  .about-text p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .about-values {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 36px;
  }

  .about-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
  }

  .about-value i { color: var(--gold); }

  /* ==============================
     FOOTER
     ============================== */
  footer {
    background: #080f20;
    color: white;
  }

  .footer-top {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    margin-bottom: 20px;
  }

  .footer-brand-logo img { width: 100%; height: 100%; object-fit: cover; }

  .footer-brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    color: white;
    margin-bottom: 4px;
  }

  .footer-brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
  }

  .footer-about {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.9;
    margin-top: 18px;
    max-width: 300px;
  }

  .footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
  }

  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
  }

  .footer-links {
    list-style: none;
    padding: 0;
  }

  .footer-links li { margin-bottom: 12px; }

  .footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .footer-links a:hover { color: var(--gold); }
  .footer-links a::before { content: '—'; font-size: 0.65rem; color: var(--gold); }

  .footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
  }

  .footer-contact-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }

  .footer-contact-text a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-contact-text a:hover { color: var(--gold); }

  .social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
  }

  .social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.1);
  }

  .social-link.wa:hover {
    border-color: var(--wa-green);
    color: var(--wa-green);
    background: rgba(37,211,102,0.1);
  }

  .footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
  }

  .footer-legal {
    display: flex;
    gap: 24px;
  }

  .footer-legal a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--gold); }

  /* ==============================
     WHATSAPP FLOATER
     ============================== */
  .wa-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 999;
  }

  .wa-float-btn {
    width: 60px;
    height: 60px;
    background: var(--wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(37,211,102,0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }

  .wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37,211,102,0.6);
    color: white;
  }

  .wa-float-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.3);
    animation: waPulse 2s infinite;
  }

  .wa-float-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 4px;
    border-left: 3px solid var(--wa-green);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .wa-float:hover .wa-float-tooltip { opacity: 1; }

  @keyframes waPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0; }
  }

  /* ==============================
     DIVIDER ACCENT
     ============================== */
  .gold-divider {
    height: 3px;
    background: linear-gradient(to right, var(--gold), transparent);
    border: none;
    margin: 0;
  }

  /* ==============================
     RESPONSIVE
     ============================== */
  @media (max-width: 992px) {
    .project-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 220px 220px;
    }
    .project-card.tall { grid-row: span 1; }
    .about-img-accent { display: none; }
    .about-badge { left: 0; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .trust-item:last-child { border-bottom: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

  @media (max-width: 576px) {
    .project-grid {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(3, 240px);
    }
    .wa-float { bottom: 24px; right: 24px; }
    .hero-btns { flex-direction: column; }
  }

  /* ==============================
     SCROLL REVEAL
     ============================== */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
