    /* --- CSS Variables --- */
    :root {
      --accent-color: #8c7343;
      --accent-hover: #a38753;
      --text-dark: #1e293b;
      --text-muted: #64748b;
      --bg-dark-capsule: rgba(25, 25, 28, 0.85);
      --transition-speed: 0.4s;
      --accent-gold: #8c7343;
      --accent-gold-hover: #a38753;
      --accent-glow: rgba(140, 115, 67, 0.35);
      --bg-main: #0b0d12;
      --card-bg: rgba(21, 25, 35, 0.75);
      --card-border: rgba(255, 255, 255, 0.12);
      --text-main: #ffffff;
      --text-muted: #94a3b8;
      --accent-gold: #8c7343;
      --accent-gold-hover: #a38753;
      --accent-soft: rgba(140, 115, 67, 0.08);
      --text-dark: #0f172a;
      --text-muted: #64748b;
      --bg-light: #ffffff;
      --card-bg2: #f8fafc;
      --border-light: #e2e8f0;
      --bg-soft: #F8F9FA;

            /* Dark theme / Footer variables */
      --footer-bg: #090a0f;
      --footer-card: #121620;
      --footer-border: #1e2433;
      --footer-text: #94a3b8;
    }

    /* --- Reset & Global Base --- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }

    body {
      background-color: var(--bg-light);
      color: #ffffff;
      min-height: 200vh;
    }

    /* Base state: hidden and pushed down slightly */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* Active state: fully visible and in place */
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}



    /* ===================================================
       1. INITIAL FLOATING DARK NAVBAR (TOP)
       =================================================== */
    .top-navbar-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 0;
      z-index: 900;
    }

    .top-navbar {
      max-width: 1240px;
      margin: 0 auto;
      padding: 12px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 50px;
      background: var(--bg-dark-capsule);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    }

    .top-navbar .nav-logo a,
    .top-navbar .nav-link {
      color: #ffffff;
    }

    /* ===================================================
       2. SCROLLED FIXED WHITE NAVBAR
       =================================================== */
    .sticky-navbar-wrapper {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #ffffff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      border-bottom: 1px solid #e2e8f0;
      z-index: 1000;
      transform: translateY(-100%);
      transition: transform var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sticky-navbar-wrapper.show {
      transform: translateY(0);
    }

    .sticky-navbar {
      max-width: 100%;
      padding: 16px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .sticky-navbar .nav-logo a,
    .sticky-navbar .nav-link {
      color: var(--text-dark);
    }

    /* ===================================================
       SHARED DESKTOP NAVBAR STYLES
       =================================================== */
    .nav-logo a {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo-img {
      height: 44px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.2px;
      padding: 10px 0;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color 0.25s ease;
      cursor: pointer;
    }

    .nav-link:hover {
      color: var(--accent-hover) !important;
    }

    .chevron-icon {
      width: 12px;
      height: 12px;
      fill: currentColor;
      transition: transform 0.3s ease;
    }

    .nav-item.active .chevron-icon {
      transform: rotate(180deg);
    }

    /* Desktop Dropdown Menu - Click Driven State */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(15px);
      width: 580px;
      background: #ffffff;
      border-radius: 16px;
      padding: 16px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Shown only when .active class is applied via Click */
    .nav-item.active .dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(6px);
    }

    .dropdown-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 12px;
      border-radius: 10px;
      text-decoration: none;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .dropdown-item:hover {
      background-color: #f8fafc;
      transform: translateY(-1px);
    }

    .dropdown-icon-wrapper {
      width: 38px;
      height: 38px;
      background: #f1f5f9;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--accent-color);
      transition: background 0.2s ease, color 0.2s ease;
    }

    .dropdown-item:hover .dropdown-icon-wrapper {
      background: var(--accent-color);
      color: #ffffff;
    }

    .dropdown-info .item-title {
      display: block;
      color: var(--text-dark);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .dropdown-info .item-desc {
      display: block;
      color: var(--text-muted);
      font-size: 11px;
      line-height: 1.4;
      font-weight: 400;
    }

    /* CTA Button */
    .btn-quote {
      text-decoration: none;
      background-color: var(--accent-color);
      color: #ffffff !important;
      padding: 10px 24px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.8px;
      box-shadow: 0 4px 14px rgba(140, 115, 67, 0.3);
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-quote:hover {
      background-color: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(163, 135, 83, 0.4);
    }

    /* Hamburger Toggle Button */
    .hamburger-btn {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1002;
    }

    .hamburger-box {
      width: 26px;
      height: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }

    .hamburger-line {
      display: block;
      width: 100%;
      height: 2.5px;
      border-radius: 2px;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .top-navbar .hamburger-line { background-color: #ffffff; }
    .sticky-navbar .hamburger-line { background-color: var(--text-dark); }

    /* ===================================================
       3. MOBILE SIDE DRAWER & OVERLAY (RIGHT SIDE SLIDE)
       =================================================== */
    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(6px);
      z-index: 1999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s ease;
    }

    .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: 320px;
      max-width: 85vw;
      height: 100vh;
      background: #12141a;
      border-left: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 2000;
      padding: 30px 24px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .mobile-menu-drawer.active {
      transform: translateX(0);
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 20px;
    }

    .drawer-header .logo-img {
      height: 36px;
    }

    .mobile-close-btn {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #ffffff;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .mobile-close-btn:hover {
      background: var(--accent-color);
      transform: rotate(90deg);
    }

    .mobile-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      overflow-y: auto;
    }

    .mobile-nav-link {
      text-decoration: none !important;
      color: #ffffff !important;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.8px;
      padding: 12px 14px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .mobile-nav-link:hover {
      background: rgba(255, 255, 255, 0.06);
      color: var(--accent-hover) !important;
    }

    .mobile-dropdown-menu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease-in-out;
      padding-left: 12px;
    }

    .mobile-dropdown-menu.open {
      max-height: 300px;
    }

    .mobile-dropdown-item {
      display: flex;
      align-items: center;
      text-decoration: none !important;
      color: #94a3b8 !important;
      font-size: 13px;
      font-weight: 600;
      padding: 10px;
      border-radius: 6px;
      transition: color 0.2s ease;
    }

    .mobile-dropdown-item:hover {
      color: var(--accent-hover) !important;
    }

    .mobile-nav-action {
      margin-top: auto;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-action .btn-quote {
      width: 100%;
      text-align: center;
      padding: 14px;
      font-size: 13px;
    }

    @media (max-width: 992px) {
      .hamburger-btn { display: block; }
      .nav-links-desktop, .nav-action-desktop { display: none !important; }
    }

/* ===================================================
       HERO SECTION - MODERN TWO-COLUMN LAYOUT
       =================================================== */
    .hero-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 8% 60px;
      background: radial-gradient(circle at 15% 30%, rgba(140, 115, 67, 0.15) 0%, transparent 45%),
                  radial-gradient(circle at 85% 70%, rgba(30, 41, 59, 0.5) 0%, transparent 50%),
                  var(--bg-main);
    }

    /* Subtle background grid pattern */
    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
    }

    .hero-container {
      max-width: 1280px;
      width: 100%;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    /* --- Left Content Column --- */
    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    /* Live Badge */
    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 18px;
      background: rgba(140, 115, 67, 0.12);
      border: 1px solid rgba(140, 115, 67, 0.3);
      border-radius: 50px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      color: #e2c992;
      text-transform: uppercase;
      margin-bottom: 24px;
      backdrop-filter: blur(8px);
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      background-color: #22c55e;
      border-radius: 50%;
      box-shadow: 0 0 10px #22c55e;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
      70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
      100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
    }

    /* Main Title */
    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4.2rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 24px;
    }

    .hero-title .text-gradient {
      background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-title .text-highlight {
      color: var(--accent-gold);
      position: relative;
    }

    /* Description */
    .hero-description {
      font-size: 1.125rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 580px;
    }

    /* CTA Buttons Group */
    .hero-cta-group {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, var(--accent-gold) 0%, #6e5932 100%);
      color: #ffffff;
      padding: 16px 36px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-decoration: none;
      box-shadow: 0 10px 25px var(--accent-glow);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(140, 115, 67, 0.5);
      background: linear-gradient(135deg, var(--accent-gold-hover) 0%, #8c7343 100%);
    }

    .btn-primary svg {
      transition: transform 0.3s ease;
    }

    .btn-primary:hover svg {
      transform: translateX(5px);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      padding: 16px 30px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--card-border);
      color: #ffffff;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.25);
      transform: translateY(-3px);
    }

    /* --- Right Visual Column (Interactive Tech Card) --- */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .glass-card {
      width: 100%;
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 24px;
      padding: 32px;
      backdrop-filter: blur(16px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
      position: relative;
      overflow: hidden;
    }

    /* Card Ambient Glow */
    .glass-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200px;
      height: 200px;
      background: var(--accent-gold);
      opacity: 0.15;
      filter: blur(80px);
      pointer-events: none;
    }

    .card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .window-dots {
      display: flex;
      gap: 8px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    .dot-red { background: #ff5f56; }
    .dot-yellow { background: #ffbd2e; }
    .dot-green { background: #27c93f; }

    .card-tag {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--accent-gold);
      background: rgba(140, 115, 67, 0.1);
      padding: 4px 10px;
      border-radius: 6px;
    }

    /* Tech Stack Feature Rows inside Card */
    .feature-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .feature-item:hover {
      background: rgba(255, 255, 255, 0.06);
      transform: translateX(4px);
    }

    .feature-icon {
      width: 42px;
      height: 42px;
      background: rgba(140, 115, 67, 0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-gold);
      flex-shrink: 0;
    }

    .feature-text h4 {
      font-size: 14px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 2px;
    }

    .feature-text p {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* Floating Metric Pill */
    .floating-metric {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: #181b24;
      border: 1px solid var(--card-border);
      padding: 14px 22px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 14px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }

    .metric-number {
      font-size: 20px;
      font-weight: 800;
      color: var(--accent-gold);
    }

    .metric-label {
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.3;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
      }

      .hero-content {
        align-items: center;
      }

      .hero-description {
        max-width: 100%;
      }

      .floating-metric {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: max-content;
      }
    }

        /* ===================================================
       WHY CHOOSE US SECTION STYLES
       =================================================== */
    .why-us-section {
      padding: 100px 8%;
      background-color: var(--bg-soft);
      position: relative;
      overflow: hidden;
    }

    /* Subtle background accent shapes */
    .why-us-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: var(--accent-soft);
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }

    .why-us-container {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    /* --- Section Header --- */
    .why-us-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--accent-gold);
      text-transform: uppercase;
      background: var(--accent-soft);
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 16px;
      border: 1px solid rgba(140, 115, 67, 0.2);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 18px;
    }

    .section-title span {
      color: var(--accent-gold);
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* --- Content Layout: Grid + Banner --- */
    .why-us-content {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 40px;
      align-items: stretch;
    }

    /* Left Highlight Card */
    .stats-highlight-card {
      background: linear-gradient(145deg, #0f1115 0%, #1c212c 100%);
      color: #ffffff;
      border-radius: 24px;
      padding: 48px 36px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    }

    .stats-highlight-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 150px;
      height: 150px;
      background: var(--accent-gold);
      opacity: 0.15;
      filter: blur(50px);
      border-radius: 50%;
    }

    .highlight-top h3 {
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .highlight-top p {
      color: #94a3b8;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 40px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--accent-gold);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-item .stat-label {
      font-size: 0.85rem;
      color: #cbd5e1;
      font-weight: 500;
    }

    /* Right Feature Cards Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .feature-card {
      background: var(--card-bg2);
      border: 1px solid var(--border-light);
      border-radius: 20px;
      padding: 32px 28px;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .feature-card:hover {
      background: #ffffff;
      transform: translateY(-6px);
      border-color: var(--accent-gold);
      box-shadow: 0 20px 35px rgba(140, 115, 67, 0.12);
    }

    .icon-box {
      width: 52px;
      height: 52px;
      background: #ffffff;
      border: 1px solid var(--border-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-gold);
      margin-bottom: 22px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    }

    .feature-card:hover .icon-box {
      background: var(--accent-gold);
      color: #ffffff;
      border-color: var(--accent-gold);
      transform: scale(1.05);
    }

    .feature-card h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .feature-card p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Responsive Breakdown */
    @media (max-width: 992px) {
      .why-us-content {
        grid-template-columns: 1fr;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .features-grid {
        grid-template-columns: 1fr;
      }

      .why-us-section {
        padding: 70px 6%;
      }

      .stats-highlight-card {
        padding: 36px 24px;
      }
    }

        /* ===================================================
       SERVICES SECTION
       =================================================== */
    .services-section {
      padding: 90px 8%;
      background-color: var(--bg-light);
    }

    .services-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    /* --- Header Design --- */
    .services-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .header-subtag {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--accent-gold);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .header-subtag::before,
    .header-subtag::after {
      content: '';
      display: inline-block;
      width: 30px;
      height: 2px;
      background-color: var(--accent-gold);
    }

    .services-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800;
      color: var(--text-dark);
      letter-spacing: -0.5px;
    }

    /* --- 3-Column Services Grid --- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 45px 30px;
    }

    /* Individual Service Item Wrap */
    .service-card-wrapper {
      position: relative;
      padding-top: 15px; /* Offset room for floating icon */
    }

    /* Main Service Gray Box */
    .service-card {
      background-color: var(--card-bg2);
      border: 1px solid var(--border-light);
      padding: 35px 30px 45px 65px; /* Extra left padding to clear floating icon */
      border-radius: 4px;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    }

    .service-card-wrapper:hover .service-card {
      transform: translateY(-4px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    }

    /* Overlapping Icon Card (Left Offset) */
    .service-icon-box {
      position: absolute;
      top: 0;
      left: -15px;
      width: 65px;
      height: 65px;
      background: #ffffff;
      border: 1px solid var(--border-light);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-gold);
      border-radius: 4px;
      z-index: 2;
      transition: all var(--transition-speed) ease;
    }

    .service-card-wrapper:hover .service-icon-box {
      background: var(--accent-gold);
      color: #ffffff;
      border-color: var(--accent-gold);
    }

    /* Card Content Typography */
    .service-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .service-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Bottom Left Offset CTA Button */
    .service-btn {
      position: absolute;
      bottom: -18px;
      left: -10px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background-color: var(--accent-gold);
      color: #ffffff;
      padding: 10px 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-decoration: none;
      border-radius: 3px;
      box-shadow: 0 4px 12px var(--accent-glow);
      z-index: 2;
      transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
    }

    .service-btn:hover {
      background-color: var(--accent-gold-hover);
      transform: translateY(-2px);
    }

    .service-btn svg {
      transition: transform var(--transition-speed) ease;
    }

    .service-btn:hover svg {
      transform: translateX(3px);
    }

    /* --- Responsive Breakpoints --- */
    @media (max-width: 992px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
      }
    }

    @media (max-width: 640px) {
      .services-grid {
        grid-template-columns: 1fr;
        gap: 55px;
      }

      .service-card-wrapper {
        padding-top: 0;
      }

      .service-icon-box {
        left: 15px;
        top: -20px;
      }

      .service-card {
        padding: 50px 20px 45px 20px;
      }

      .service-btn {
        left: 15px;
      }
    }

        /* ===================================================
       ABOUT US SECTION (DARK THEME)
       =================================================== */
    .about-us-section {
      padding: 100px 8%;
      background-color: var(--bg-main);
      position: relative;
      overflow: hidden;
    }

    /* Subtle Gold Background Radial Glow */
    .about-us-section::before {
      content: '';
      position: absolute;
      top: -100px;
      left: -100px;
      width: 450px;
      height: 450px;
      background: rgba(140, 115, 67, 0.08);
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
    }

    .about-container {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 60px;
      position: relative;
      z-index: 2;
    }

    /* --- Header Style Adapted for Dark Background --- */
    .why-us-header {
      text-align: center;
      max-width: 750px;
      margin: 0 auto;
    }

    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: #e2c992;
      text-transform: uppercase;
      background: var(--accent-soft);
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 16px;
      border: 1px solid rgba(140, 115, 67, 0.3);
      backdrop-filter: blur(8px);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 18px;
    }

    .section-title span {
      color: var(--accent-gold);
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* --- About Us Main Content Layout --- */
    .about-content {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 50px;
      align-items: center;
    }

    /* Left Card / Glassmorphism Visual Area */
    .about-visual-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 24px;
      padding: 48px 40px;
      color: var(--text-main);
      position: relative;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(16px);
      overflow: hidden;
    }

    .about-visual-card::after {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 180px;
      height: 180px;
      background: var(--accent-gold);
      opacity: 0.15;
      filter: blur(60px);
      border-radius: 50%;
    }

    .visual-header {
      margin-bottom: 30px;
    }

    .visual-header h3 {
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 12px;
      color: var(--text-main);
    }

    .visual-header p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .about-highlight-box {
      background: rgba(255, 255, 255, 0.03);
      border-left: 3px solid var(--accent-gold);
      padding: 20px;
      border-radius: 0 12px 12px 0;
      margin-bottom: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .about-highlight-box p {
      font-size: 0.92rem;
      color: #cbd5e1;
      font-style: italic;
      line-height: 1.5;
    }

    .about-stats-row {
      display: flex;
      gap: 30px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-block .number {
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent-gold);
      line-height: 1;
      margin-bottom: 6px;
    }

    .stat-block .label {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Right Narrative Area */
    .about-narrative {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .about-narrative h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--text-main);
      line-height: 1.3;
    }

    .about-narrative p {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* Bullet List with Custom Gold Check Icons */
    .about-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 8px;
    }

    .about-list-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .check-icon {
      width: 26px;
      height: 26px;
      background: rgba(140, 115, 67, 0.15);
      border: 1px solid rgba(140, 115, 67, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .item-text h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 2px;
    }

    .item-text p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .about-cta-group {
      margin-top: 12px;
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .btn-about-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--accent-gold) 0%, #6e5932 100%);
      color: var(--text-main);
      padding: 14px 28px;
      font-size: 14px;
      font-weight: 700;
      border-radius: 8px;
      text-decoration: none;
      box-shadow: 0 8px 20px var(--accent-glow);
      transition: all var(--transition-speed) ease;
    }

    .btn-about-primary:hover {
      background: linear-gradient(135deg, var(--accent-gold-hover) 0%, #8c7343 100%);
      transform: translateY(-2px);
      box-shadow: 0 12px 25px rgba(140, 115, 67, 0.4);
    }

    /* --- Responsive Breakpoints --- */
    @media (max-width: 992px) {
      .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 640px) {
      .about-us-section {
        padding: 70px 6%;
      }

      .about-visual-card {
        padding: 36px 24px;
      }

      .about-stats-row {
        flex-wrap: wrap;
        gap: 20px;
      }
    }

    /* ===================================================
       TESTIMONIALS SECTION
       =================================================== */
    .testimonials-section {
      padding: 100px 8%;
      background-color: var(--bg-light);
      position: relative;
      overflow: hidden;
    }

    .testimonials-container {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .testimonials-header {
      text-align: center;
      max-width: 750px;
      margin: 0 auto;
    }

    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--accent-gold);
      text-transform: uppercase;
      background: var(--accent-soft);
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 16px;
      border: 1px solid rgba(140, 115, 67, 0.2);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.2;
      letter-spacing: -0.5px;
      margin-bottom: 18px;
    }

    .section-title span {
      color: var(--accent-gold);
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .testimonial-card {
      background-color: var(--card-bg2);
      border: 1px solid var(--border-light);
      border-radius: 20px;
      padding: 36px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    }

    .testimonial-card:hover {
      background-color: #ffffff;
      transform: translateY(-8px);
      border-color: var(--accent-gold);
      box-shadow: 0 20px 40px rgba(140, 115, 67, 0.12);
    }

    .quote-icon {
      position: absolute;
      top: 25px;
      right: 25px;
      font-size: 2rem;
      color: var(--accent-gold);
      opacity: 0.15;
      transition: opacity var(--transition-speed) ease;
    }

    .testimonial-card:hover .quote-icon {
      opacity: 0.35;
    }

    .rating-stars {
      display: flex;
      gap: 4px;
      color: var(--accent-gold);
      font-size: 0.95rem;
      margin-bottom: 20px;
    }

    .testimonial-text {
      font-size: 0.98rem;
      color: var(--text-dark);
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .client-profile {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-top: 20px;
      border-top: 1px solid var(--border-light);
    }

    .avatar-wrapper {
      position: relative;
      width: 52px;
      height: 52px;
      flex-shrink: 0;
    }

    .client-photo {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--accent-gold);
      box-shadow: 0 4px 10px rgba(140, 115, 67, 0.2);
      transition: transform var(--transition-speed) ease;
    }

    .testimonial-card:hover .client-photo {
      transform: scale(1.05);
    }

    .client-info h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 2px;
    }

    .client-info p {
      font-size: 0.82rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* ===================================================
       CONTACT US SECTION
       =================================================== */
    .contact-section {
      padding: 100px 8%;
      background-color: #F8F9FA;
    }

    .contact-container {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: start;
    }

    /* Left Side - Header & Form */
    .contact-header {
      margin-bottom: 32px;
    }

    .contact-header .section-tag {
      margin-bottom: 12px;
    }

    .contact-header h2 {
      font-size: clamp(2rem, 3.5vw, 2.5rem);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.25;
      margin-bottom: 14px;
    }

    .contact-header h2 span {
      color: var(--accent-gold);
    }

    .contact-header p {
      font-size: 0.98rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .form-group label i {
      color: var(--accent-gold);
      font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--border-light);
      border-radius: 8px;
      background-color: #ffffff;
      color: var(--text-dark);
      font-size: 0.95rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--accent-gold);
      box-shadow: 0 0 0 3px var(--accent-soft);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #cbd5e1;
    }

    .submit-btn {
      margin-top: 10px;
      padding: 16px;
      background-color: var(--accent-gold);
      color: #ffffff;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .submit-btn:hover {
      background-color: var(--accent-hover);
      box-shadow: 0 8px 20px var(--accent-glow);
    }

    /* Right Side - Map & Details Cards */
    .contact-side-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .map-box {
      width: 100%;
      height: 320px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border-light);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    }

    .map-box iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .info-card {
      background-color: var(--card-bg2);
      border: 1px solid var(--border-light);
      padding: 24px 28px;
      border-radius: 14px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      position: relative;
    }

    .info-card-header {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .info-card-header i {
      color: var(--accent-gold);
      font-size: 1.1rem;
    }

    .info-card label {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-dark);
      cursor: pointer;
    }

    .info-card p, .info-card a {
      font-size: 0.92rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .info-card a:hover {
      color: var(--accent-gold);
    }

    /* ===================================================
       FOOTER SECTION
       =================================================== */
    .site-footer {
      background-color: var(--footer-bg);
      color: var(--footer-text);
      padding: 80px 8% 30px;
      border-top: 1px solid var(--footer-border);
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
      gap: 50px;
      padding-bottom: 60px;
      border-bottom: 1px solid var(--footer-border);
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.4rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 16px;
      text-decoration: none;
      letter-spacing: 0.5px;
    }

    .footer-logo span {
      color: var(--accent-gold);
    }

    .logo-img {
      height: 32px;
      width: auto;
      object-fit: contain;
      flex-shrink: 0;
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--footer-text);
      max-width: 320px;
      margin-bottom: 24px;
    }

    .social-icons {
      display: flex;
      gap: 12px;
    }

    .social-icon-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-icon-btn:hover {
      background: var(--accent-gold);
      border-color: var(--accent-gold);
      transform: translateY(-3px);
    }

    .footer-column-title {
      color: #ffffff;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 22px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      color: var(--footer-text);
      text-decoration: none;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.3s ease;
    }

    .footer-links .link-icon {
      font-size: 0.72rem;
      color: var(--accent-gold);
      transition: transform 0.3s ease;
    }

    .footer-links a:hover .link-icon {
      transform: translateX(3px);
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .newsletter-box p {
      font-size: 0.88rem;
      line-height: 1.5;
      margin-bottom: 16px;
      color: var(--footer-text);
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .input-wrapper {
      position: relative;
    }

    .input-wrapper .input-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--footer-text);
      font-size: 0.95rem;
    }

    .newsletter-form input {
      width: 100%;
      padding: 12px 14px 12px 42px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--footer-border);
      border-radius: 8px;
      color: #ffffff;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s ease;
    }

    .newsletter-form input:focus {
      border-color: var(--accent-gold);
    }

    .newsletter-btn {
      padding: 12px;
      background-color: var(--accent-gold);
      color: #ffffff;
      border: none;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background-color 0.3s ease;
    }

    .newsletter-btn:hover {
      background-color: var(--accent-hover);
    }

    .footer-bottom {
      max-width: 1280px;
      margin: 30px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    .footer-bottom-links a {
      color: var(--footer-text);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: #ffffff;
    }

    .back-to-top {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--footer-border);
      border-radius: 6px;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .back-to-top:hover {
      background: var(--accent-gold);
      border-color: var(--accent-gold);
    }

    /* --- Responsive Breakpoints --- */
    @media (max-width: 992px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .contact-container {
        grid-template-columns: 1fr;
      }

      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .testimonials-section, .contact-section {
        padding: 70px 6%;
      }

      .testimonials-grid, .form-row {
        grid-template-columns: 1fr;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
    }


    /* ===================================================
   WHATSAPP WIDGET STYLES
   =================================================== */
.wa-widget-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Scroll reveal initial state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll Active State */
.wa-widget-container.wa-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Floating Action Button (FAB) */
.wa-trigger-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35),
              0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  margin-left: auto;
}

.wa-trigger-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45),
              0 6px 12px rgba(0, 0, 0, 0.2);
}

.wa-trigger-btn .wa-icon-close {
  display: none;
  font-size: 22px;
}

/* Active State when Chat is Open */
.wa-widget-container.wa-open .wa-trigger-btn .wa-icon-main {
  display: none;
}
.wa-widget-container.wa-open .wa-trigger-btn .wa-icon-close {
  display: block;
}
.wa-widget-container.wa-open .wa-unread-badge {
  display: none;
}

/* Pulsing Unread Notification Badge */
.wa-unread-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background-color: #ff3b30;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

/* Chat Box Window */
.wa-chat-box {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18),
              0 0 0 1px rgba(0, 0, 0, 0.05);
  
  /* Hidden Transition State */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-widget-container.wa-open .wa-chat-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Header */
.wa-chat-header {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  padding: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar-wrapper {
  position: relative;
  width: 42px;
  height: 42px;
}

.wa-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.wa-status-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background-color: #4cd964;
  border: 2px solid #075E54;
  border-radius: 50%;
}

.wa-agent-name {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 2px 0;
  color: #ffffff;
}

.wa-agent-status {
  font-size: 11px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.wa-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.wa-close-btn:hover {
  color: #ffffff;
}

/* Body / Message Area */
.wa-chat-body {
  padding: 20px 16px;
  background-color: #e5ddd5;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 0);
  background-size: 12px 12px;
  min-height: 130px;
  display: flex;
  align-items: flex-start;
}

.wa-message-bubble {
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 0px 14px 14px 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  position: relative;
  max-width: 90%;
}

.wa-message-sender {
  font-size: 11px;
  font-weight: 700;
  color: #128C7E;
  margin-bottom: 4px;
}

.wa-message-text {
  font-size: 13px;
  color: #303030;
  line-height: 1.45;
  margin: 0 0 6px 0;
}

.wa-message-time {
  display: block;
  font-size: 10px;
  color: #8c8c8c;
  text-align: right;
}

/* Footer / Action Button */
.wa-chat-footer {
  padding: 14px 16px;
  background: #ffffff;
}

.wa-start-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.wa-start-chat-btn:hover {
  background-color: #1ebc5a;
  transform: translateY(-1px);
}

.wa-start-chat-btn i {
  font-size: 18px;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .wa-widget-container {
    bottom: 16px;
    right: 16px;
  }
  .wa-chat-box {
    right: 0;
    width: calc(100vw - 32px);
  }
}



