 /* ANNOUNCEMENT BAR */
    .announcement-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 110;
      background: var(--text);
      color: white;
      height: 44px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .ann-inner {
      max-width: 1400px;
      margin: 0 auto;
      height: 100%;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.95rem;
    }
    .ann-phone {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    .ann-phone:hover { color: var(--sunshine); }
    .ann-phone svg {
      width: 16px; height: 16px;
      stroke: var(--sunshine);
      fill: none; stroke-width: 2;
      stroke-linecap: round; stroke-linejoin: round;
    }
    .ann-reviews {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
    }
    .ann-reviews-text { color: rgba(255,255,255,0.85); font-weight: 500; }
    .ann-reviews-text strong { color: var(--sunshine); font-weight: 700; }
    .ann-icons { display: flex; gap: 0.4rem; }
    .ann-icon {
      width: 28px; height: 28px;
      background: rgba(255,255,255,0.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .ann-icon:hover { background: var(--sunshine); transform: translateY(-2px); }
    .ann-icon img { width: 14px; height: 14px; transition: filter 0.3s ease; display: block; }
    .ann-icon:hover img { filter: brightness(0); }
    @media (max-width: 768px) {
      .announcement-bar { height: 40px; }
      .ann-inner { padding: 0 1.2rem; font-size: 0.9rem; }
      .ann-reviews-text { display: none; }
    }
    @media (max-width: 480px) {
      .ann-inner { justify-content: center; }
      .ann-reviews { display: none; }
    }

    /* ======================== NAVBAR ======================== */
    .navbar {
      position: fixed;
      top: 60px;
      left: 16px;
      right: 16px;
      z-index: 100;
      background: rgba(255, 252, 247, 0.92);
      backdrop-filter: blur(20px);
      border-radius: 100px;
      padding: 0 1.5rem;
      box-shadow: 0 4px 30px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.04);
      transition: all 0.4s ease;
    }
    .navbar.scrolled {
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    }
    .navbar-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }
    .nav-logo img {
      height: 48px;
      transition: transform 0.3s ease;
    }
    .nav-logo img:hover { transform: scale(1.05) rotate(-2deg); }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
      font-size: 1rem;
      padding: 0.6rem 1.1rem;
      border-radius: 100px;
      transition: all 0.3s ease;
    }
    .nav-links a:hover {
      background: var(--sand);
      color: var(--coral);
    }
    .nav-cta {
      background: var(--coral) !important;
      color: white !important;
      font-weight: 600 !important;
      padding: 0.6rem 1.5rem !important;
      cursor: pointer;
    }
    .nav-cta:hover {
      background: var(--turquoise) !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(42, 181, 160, 0.35);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 8px;
    }
    .hamburger span {
      width: 26px;
      height: 3px;
      background: var(--text);
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    /* ======================== RESPONSIVE ======================== */
    @media (max-width: 1024px) {
     
    }

    @media (max-width: 768px) {
      .navbar { top: 50px; left: 10px; right: 10px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: -16px;
        right: -16px;
        background: rgba(255,252,247,0.97);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: 0 0 24px 24px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        gap: 0.3rem;
      }   
    }

    @media (max-width: 480px) {
     
    }