
    /* === BASE === */
    :root {
      --primary: #E8740C;
      --primary-dark: #c45f08;
      --secondary: #1a1a2e;
      --accent: #f5a623;
      --light-bg: #fdf8f3;
      --text-dark: #1a1a2e;
      --text-muted: #6c757d;
      --gold: #d4a04a;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Poppins', sans-serif; color: var(--text-dark); overflow-x: hidden; }
    a { text-decoration: none; transition: all .3s ease; }
    section { padding: 80px 0; }
    .section-title { font-size: 2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
    .section-subtitle { color: var(--text-muted); font-style: italic; font-size: 1rem; margin-top: .5rem; }
    .btn-primary-custom {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border: none; color: #fff; padding: 12px 32px; border-radius: 50px;
      font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: .9rem;
      transition: all .3s ease;
    }
    .btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,116,12,.4); color: #fff; }

    /* === NAVBAR === */
    .top-navbar {
      position: fixed; top: 15px; left: 50%; transform: translateX(-50%);
      width: 95%; max-width: 1300px; z-index: 1050;
      background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
      border-radius: 16px; padding: 10px 24px;
      box-shadow: 0 4px 30px rgba(0,0,0,.08);
      transition: all .3s ease;
    }
    .top-navbar.scrolled { top: 0; width: 100%; border-radius: 0; box-shadow: 0 2px 20px rgba(0,0,0,.12); }
    .navbar-brand-custom { display: flex; align-items: center; gap: 12px; }
    .navbar-brand-custom .logo-circle {
      width: 50px; height: 50px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.4rem; font-weight: 700;
    }
    .brand-name { font-weight: 700; color: var(--primary); font-size: 1.25rem; line-height: 1.2; }
    .brand-tagline { font-size: .6rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
    .nav-link-custom { color: var(--text-dark) !important; font-weight: 500; font-size: .88rem; padding: 8px 14px !important; position: relative; transition: color .3s; }
    .nav-link-custom.active { color: var(--primary) !important; }
    .nav-link-custom.active::after {
      content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
      width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
    }
    .nav-link-custom:hover { color: var(--primary) !important; }
    .nav-action-btn {
      width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid #e0e0e0;
      display: inline-flex; align-items: center; justify-content: center;
      background: #fff; color: var(--text-dark); font-size: .9rem; cursor: pointer; transition: all .3s;
    }
    .nav-action-btn:hover { border-color: var(--primary); color: var(--primary); }
    .btn-pay {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff !important; border: none; border-radius: 50px;
      padding: 8px 20px; font-weight: 600; font-size: .85rem; display: inline-flex; align-items: center; gap: 6px;
    }
    .btn-pay:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(232,116,12,.35); color: #fff; }

    /* === HERO === */
    .hero-section {
      min-height: 60vh; position: relative; display: flex; align-items: center;
      background: url('../img/b1.jpg') center/cover no-repeat;
    }
    .hero-section::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(10,10,30,.75) 0%, rgba(30,20,10,.55) 100%);
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,0,0,.6); border: 1px solid var(--gold);
      border-radius: 50px; padding: 6px 18px; color: var(--gold);
      font-size: .85rem; margin-bottom: 20px;
    }
    .hero-section h1 {
      font-size: 3.5rem; font-weight: 900; color: #fff; text-transform: uppercase;
      line-height: 1.15; margin-bottom: 20px; letter-spacing: 2px;
    }
    .hero-section .hero-desc {
      color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 550px; margin-bottom: 30px; line-height: 1.7;
    }
    .hero-cta { display: inline-flex; align-items: center; gap: 10px; }

    /* === ABOUT === */
    .about-section { background: var(--light-bg); }
    .about-accent-bar { width: 4px; height: 80px; background: var(--primary); border-radius: 4px; flex-shrink: 0; }
    .about-section h2 { font-size: 2.2rem; font-weight: 800; }
    .about-img-wrap { position: relative; }
    .about-img-wrap img { border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,.12); width: 100%; height: 400px; object-fit: cover; }
    .trust-badge {
      position: absolute; bottom: -20px; left: -20px;
      background: #fff; border-radius: 16px; padding: 16px 22px;
      box-shadow: 0 8px 30px rgba(0,0,0,.12); display: flex; align-items: center; gap: 12px;
    }
    .trust-badge .icon-circle {
      width: 48px; height: 48px; border-radius: 12px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem;
    }

    /* === SERVICES === */
    .services-section { background: #fff; }
    .service-card {
      background: #fff; border-radius: 20px; padding: 36px 28px; text-align: center;
      box-shadow: 0 5px 25px rgba(0,0,0,.06); transition: all .3s ease; border: 1px solid #f0ebe5;
      height: 100%;
    }
    .service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(232,116,12,.12); border-color: var(--primary); }
    .service-icon {
      width: 70px; height: 70px; border-radius: 18px; margin: 0 auto 20px;
      background: linear-gradient(135deg, rgba(232,116,12,.1), rgba(245,166,35,.1));
      display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--primary);
    }
    .service-card h5 { font-weight: 700; margin-bottom: 12px; }
    .service-card p { color: var(--text-muted); font-size: .9rem; }

    /* === HOW IT WORKS === */
    .how-section { background: var(--light-bg); }
    .step-card { text-align: center; position: relative; padding: 30px 20px; }
    .step-number {
      font-size: 5rem; font-weight: 900; color: rgba(232,116,12,.08);
      position: absolute; top: -10px; left: 50%; transform: translateX(-50%); z-index: 0;
    }
    .step-icon {
      width: 80px; height: 80px; border-radius: 20px; margin: 0 auto 20px; position: relative; z-index: 1;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff;
      box-shadow: 0 8px 25px rgba(232,116,12,.25);
    }
    .step-card h5 { font-weight: 700; position: relative; z-index: 1; }
    .step-card p { color: var(--text-muted); font-size: .9rem; position: relative; z-index: 1; }

    /* === PACKAGES === */
    .packages-section { background: #fff; }
    .package-card {
      border-radius: 20px; overflow: hidden; background: #fff;
      box-shadow: 0 5px 25px rgba(0,0,0,.07); transition: all .3s ease; border: 1px solid #f0ebe5;
      height: 100%;
    }
    .package-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,.12); }
    .package-card .card-img-top { height: 220px; object-fit: cover; }
    .package-badge {
      position: absolute; top: 16px; left: 16px;
      background: var(--primary); color: #fff; padding: 4px 14px;
      border-radius: 50px; font-size: .75rem; font-weight: 600; text-transform: uppercase;
    }
    .package-card .price { color: var(--primary); font-size: 1.4rem; font-weight: 800; }
    .package-card .price small { color: var(--text-muted); font-size: .8rem; font-weight: 400; }
    .package-features li { font-size: .88rem; color: var(--text-muted); padding: 3px 0; }
    .package-features li i { color: var(--primary); margin-right: 8px; }

    /* === TESTIMONIALS === */
    .testimonials-section { background: var(--light-bg); }
    .testimonial-card {
      background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 5px 20px rgba(0,0,0,.06);
      border: 1px solid #f0ebe5; height: 100%;
    }
    .testimonial-card .stars { color: var(--accent); margin-bottom: 12px; }
    .testimonial-card p { color: var(--text-muted); font-style: italic; font-size: .95rem; line-height: 1.7; }
    .testimonial-card .client-info { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
    .testimonial-card .client-avatar {
      width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
      border: 2px solid var(--primary);
    }
    .testimonial-card .client-name { font-weight: 600; font-size: .9rem; }
    .testimonial-card .client-location { font-size: .78rem; color: var(--text-muted); }

    /* === PARTNER BANNER === */
    .partner-section {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      position: relative; overflow: hidden;
    }
    .partner-section::after {
      content: '\f4e1'; font-family: 'bootstrap-icons'; position: absolute;
      right: 60px; top: 50%; transform: translateY(-50%);
      font-size: 12rem; color: rgba(255,255,255,.08);
    }
    .partner-section h2 { color: #fff; font-weight: 800; }
    .partner-section p { color: rgba(255,255,255,.85); }
    .btn-white { background: #fff; color: var(--primary); font-weight: 600; border-radius: 50px; padding: 12px 30px; border: none; }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.15); color: var(--primary); }

    /* === FOOTER === */
    .site-footer { background: var(--secondary); color: rgba(255,255,255,.7); padding: 70px 0 30px; }
    .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo .logo-circle {
      width: 50px; height: 50px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.3rem;
    }
    .footer-logo .brand-name { color: #fff; font-weight: 700; font-size: 1.2rem; }
    .footer-logo .brand-tagline { color: var(--primary); }
    .footer-heading {
      color: #fff; font-weight: 700; font-size: .95rem; text-transform: uppercase;
      letter-spacing: 1px; margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
    }
    .footer-heading::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { color: rgba(255,255,255,.6); font-size: .9rem; transition: all .3s; }
    .footer-links a:hover { color: var(--primary); padding-left: 5px; }
    .footer-location { display: flex; gap: 12px; margin-bottom: 18px; }
    .footer-location .loc-icon {
      width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: .9rem;
    }
    .footer-location .loc-icon.orange { background: rgba(232,116,12,.15); color: var(--primary); }
    .footer-location .loc-icon.blue { background: rgba(52,152,219,.15); color: #3498db; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; text-align: center; font-size: .85rem; }
    .social-icons a {
      width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); margin-right: 8px; transition: all .3s;
    }
    .social-icons a:hover { background: var(--primary); color: #fff; }

    /* === WHATSAPP FAB === */
    .whatsapp-fab {
      position: fixed; bottom: 30px; right: 30px; z-index: 9999;
      width: 60px; height: 60px; border-radius: 50%;
      background: #25D366; color: #fff; font-size: 1.8rem;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      animation: fabPulse 2s infinite;
    }
    .whatsapp-fab:hover { transform: scale(1.1); color: #fff; }
    @keyframes fabPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
      50% { box-shadow: 0 4px 35px rgba(37,211,102,.6); }
    }

    /* === ANIMATIONS === */
    .fade-up {
      opacity: 0; transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* === RESPONSIVE === */
    @media (max-width: 991.98px) {
      .hero-section h1 { font-size: 2.4rem; }
      .top-navbar { width: 98%; padding: 8px 16px; }
      .nav-action-btn { display: none !important; }
      .btn-pay { font-size: .78rem; padding: 6px 14px; }
      section { padding: 60px 0; }
      .about-img-wrap { margin-top: 40px; }
      .trust-badge { left: 10px; bottom: -15px; }
    }
    @media (max-width: 767.98px) {
      .hero-section h1 { font-size: 2rem; letter-spacing: 1px; }
      .hero-section .hero-desc { font-size: .95rem; }
      .section-title { font-size: 1.6rem; }
      .partner-section::after { display: none; }
    }
    @media (max-width: 575.98px) {
      .hero-section { min-height: 90vh; }
      .hero-section h1 { font-size: 1.7rem; }
      .whatsapp-fab { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 16px; }
    }
