 @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
 
 :root {
      --primary: #0a6b3c;
      --primary-dark: #064d2b;
      --primary-light: #1a8f55;
      --secondary: #f4c430;
      --secondary-dark: #e0b020;
      --accent: #e8f5e9;
      --text-dark: #1a1a1a;
      --text-muted: #5a5a5a;
      --white: #ffffff;
      --light-bg: #f8faf8;
      --gradient-hero: linear-gradient(135deg, #f0f9f4 0%, #ffffff 50%, #fff9e6 100%);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

body {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;

}
    body {
    
      color: var(--text-dark);
      overflow-x: hidden;
      background: var(--white);
    }

    /* ========== NAVBAR ========== */
    .navbar {
      background: var(--white);
      box-shadow: 0 2px 20px rgba(0,0,0,0.06);
      padding: 0.8rem 0;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 0.5rem 0;
      box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--primary) !important;
    }

    .logo-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.4rem;
      box-shadow: 0 4px 12px rgba(10,107,60,0.3);
      animation: float 3s ease-in-out infinite;
    }

    .brand-text span {
      display: block;
      font-size: 0.7rem;
      font-weight: 400;
      color: var(--text-muted);
      margin-top: -4px;
    }

    .nav-link {
      font-weight: 500;
      color: var(--text-dark) !important;
      margin: 0 0.4rem;
      position: relative;
      transition: color 0.3s;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 70%;
    }

    .nav-link:hover {
      color: var(--primary) !important;
    }

    .btn-book {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: white !important;
      border: none;
      border-radius: 50px;
      padding: 0.55rem 1.5rem;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(10,107,60,0.3);
    }

    .btn-book:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(10,107,60,0.4);
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    }

    /* ========== HERO ========== */
    .hero {
      background: var(--gradient-hero);
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(244,196,48,0.15) 0%, transparent 70%);
      border-radius: 50%;
      animation: pulse 8s ease-in-out infinite;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(10,107,60,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-title {
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.15;
      color: var(--text-dark);
      margin-bottom: 1.2rem;
    }

    .hero-title .highlight {
      color: var(--primary);
      position: relative;
    }

    .hero-title .highlight::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 0;
      width: 100%;
      height: 12px;
      background: rgba(244,196,48,0.35);
      z-index: -1;
      border-radius: 4px;
    }

    .hero-desc {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 480px;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .btn-primary-custom {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: white;
      border: none;
      border-radius: 50px;
      padding: 0.85rem 1.8rem;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(10,107,60,0.3);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(10,107,60,0.4);
      color: white;
    }

    .btn-outline-custom {
      background: white;
      color: var(--primary);
      border: 2px solid var(--primary);
      border-radius: 50px;
      padding: 0.75rem 1.6rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .btn-outline-custom:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }

    .trust-badges {
display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    background: var(--secondary);
    padding: 1rem;
}
    

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-muted);
    }

    .trust-badge i {
      color: var(--primary);
      font-size: 1.1rem;
    }

    /* Hero Illustration */
    .hero-illustration {
      position: relative;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .illustration-card {
      position: absolute;
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      padding: 15px;
      transition: all 0.4s ease;
      animation: float 4s ease-in-out infinite;
    }

    .illustration-card:hover {
      transform: scale(1.05) translateY(-5px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    .phone-mock {
      width: 160px;
      height: 300px;
      background: linear-gradient(145deg, #1a1a1a, #333);
      border-radius: 28px;
      border: 6px solid #222;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 3;
      animation-delay: 0.5s;
    }

    .phone-screen {
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, #e8f5e9, #fff);
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .scooter-card {
      width: 180px;
      height: 140px;
      left: 20px;
      top: 40px;
      z-index: 2;
      background: linear-gradient(135deg, #fff9e6, #fff);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      animation-delay: 0.2s;
    }

    .bike-card {
      width: 150px;
      height: 120px;
      right: 10px;
      bottom: 60px;
      z-index: 2;
      background: linear-gradient(135deg, #e8f5e9, #fff);
      animation-delay: 0.8s;
    }

    .truck-card {
      width: 160px;
      height: 100px;
      right: 30px;
      top: 30px;
      z-index: 1;
      background: linear-gradient(135deg, #f0f9f4, #fff);
      animation-delay: 1.2s;
    }

    .vehicle-icon {
      font-size: 3rem;
      color: var(--primary);
    }

    .scooter-icon { color: #e6a817; }
    .bike-icon { color: var(--primary); }
    .truck-icon { color: var(--primary-dark); }

    /* ========== TRUST BAR ========== */
    .trust-bar {
      background: linear-gradient(90deg, var(--primary-dark), var(--primary));
      color: white;
      padding: 1.2rem 0;
      margin-top: -30px;
      position: relative;
      z-index: 10;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(10,107,60,0.3);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .trust-item i {
      font-size: 1.2rem;
      color: var(--secondary);
    }

    /* ========== WELCOME ========== */
    .welcome-section {
      padding: 100px 0 80px;
      background: var(--light-bg);
    }

    .mascot-box {
      background: white;
      border-radius: 30px;
      padding: 30px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.08);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .mascot-box::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 150px;
      height: 150px;
      background: rgba(244,196,48,0.15);
      border-radius: 50%;
    }

    .mascot-emoji {
      font-size: 8rem;
      line-height: 1;
      animation: bounce 2s ease-in-out infinite;
      display: inline-block;
    }

    .feature-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 1.5rem;
    }

    .feature-pill {
      background: white;
      border: 1px solid #e0e0e0;
      border-radius: 50px;
      padding: 0.5rem 1.2rem;
      font-size: 0.9rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .feature-pill:hover {
      border-color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(10,107,60,0.15);
    }

    .feature-pill i {
      color: var(--primary);
    }

    /* ========== SERVICES ========== */
    .services-section {
      padding: 90px 0;
    }

    .section-title {
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .section-subtitle {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 600px;
      margin: 0 auto 3rem;
    }

    .service-card {
      background: white;
      border-radius: 20px;
      padding: 2rem 1.5rem;
      height: 100%;
      border: 1px solid #f0f0f0;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      border-color: transparent;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      width: 70px;
      height: 70px;
      background: var(--accent);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 1.2rem;
      transition: all 0.3s ease;
    }

    .service-card:hover .service-icon {
      background: var(--primary);
      color: white;
      transform: scale(1.1) rotate(5deg);
    }

    .service-card h5 {
      font-weight: 600;
      margin-bottom: 0.8rem;
    }

    .service-card p {
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.6;
      margin-bottom: 1.2rem;
    }

    .learn-more {
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.3s;
    }

    .learn-more:hover {
      gap: 10px;
      color: var(--primary-dark);
    }

    /* ========== WHY + HOW ========== */
    .why-how-section {
      padding: 80px 0;
      background: var(--light-bg);
    }

    .why-card, .how-card {
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      height: 100%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .why-list {
      list-style: none;
      padding: 0;
    }

    .why-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 1.2rem;
      font-weight: 500;
    }

    .why-list li i {
      color: var(--primary);
      background: var(--accent);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.85rem;
    }

    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      margin-bottom: 1.8rem;
      position: relative;
    }

    .step-item:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 22px;
      top: 50px;
      width: 2px;
      height: calc(100% - 20px);
      background: linear-gradient(to bottom, var(--primary), transparent);
    }

    .step-number {
      width: 46px;
      height: 46px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(10,107,60,0.3);
    }

    .step-content h6 {
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .step-content p {
      color: var(--text-muted);
      font-size: 0.9rem;
      margin: 0;
    }

    /* ========== COMMITMENT ========== */
    .commitment-section {
      padding: 90px 0;
      background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
      position: relative;
      overflow: hidden;
    }

    .commitment-section::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      background: rgba(244,196,48,0.2);
      border-radius: 50%;
    }

    .commitment-img {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.12);
      position: relative;
    }

    .commitment-img-placeholder {
      height: 320px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 5rem;
    }

    /* ========== BUSINESS TRUST ========== */
    .business-trust {
      padding: 70px 0 40px;
      text-align: center;
    }

    .business-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .biz-icon {
      width: 110px;
      height: 100px;
      background: white;
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.06);
      transition: all 0.3s ease;
      border: 1px solid #f0f0f0;
    }

    .biz-icon:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(10,107,60,0.15);
      border-color: var(--primary);
    }

    .biz-icon i {
      font-size: 1.8rem;
      color: var(--primary);
    }

    .biz-icon span {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-muted);
    }

    /* ========== STATS ========== */
    .stats-bar {
      background: linear-gradient(90deg, var(--primary-dark), var(--primary));
      color: white;
      padding: 2.5rem 0;
      border-radius: 20px;
      margin: 20px 0 60px;
      box-shadow: 0 15px 40px rgba(10,107,60,0.25);
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 2.4rem;
      font-weight: 800;
      margin-bottom: 0.3rem;
    }

    .stat-label {
      font-size: 0.95rem;
      opacity: 0.9;
    }

    /* ========== APP SECTION ========== */
    .app-section {
      padding: 80px 0;
      background: var(--light-bg);
    }

    .app-phones {
      display: flex;
      justify-content: center;
      gap: 20px;
      position: relative;
    }

    .app-phone {
      width: 160px;
      height: 320px;
      background: #1a1a1a;
      border-radius: 28px;
      border: 6px solid #111;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
      transition: transform 0.4s ease;
    }

    .app-phone:hover {
      transform: scale(1.05) rotate(-2deg);
    }

    .app-phone:nth-child(2) {
      transform: translateY(-20px);
    }

    .app-phone:nth-child(2):hover {
      transform: translateY(-20px) scale(1.05) rotate(2deg);
    }

    .phone-content {
      height: 100%;
      background: linear-gradient(180deg, #e8f5e9, #fff);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 15px;
      text-align: center;
    }

    .store-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #111;
      color: white;
      padding: 0.7rem 1.3rem;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s;
      margin: 0.3rem;
    }

    .store-btn:hover {
      background: #333;
      color: white;
      transform: translateY(-2px);
    }

    /* ========== CONTACT ========== */
    .contact-section {
      padding: 90px 0;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 1.5rem;
    }

    .contact-info-item i {
      width: 45px;
      height: 45px;
      background: var(--accent);
      color: var(--primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .form-control, .form-select {
      border-radius: 12px;
      padding: 0.85rem 1.2rem;
      border: 1px solid #e0e0e0;
      font-size: 0.95rem;
      transition: all 0.3s;
    }

    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(10,107,60,0.15);
    }

    .btn-send {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: white;
      border: none;
      border-radius: 50px;
      padding: 0.9rem 2.2rem;
      font-weight: 600;
      transition: all 0.3s;
      width: 100%;
    }

    .btn-send:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(10,107,60,0.3);
      color: white;
    }

    /* ========== FOOTER ========== */
    footer {
      background: linear-gradient(135deg, #064d2b, #0a6b3c);
      color: white;
      padding: 60px 0 30px;
    }

    .footer-brand {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .footer-links h6 {
      font-weight: 600;
      margin-bottom: 1.2rem;
      position: relative;
      padding-bottom: 8px;
    }

    .footer-links h6::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--secondary);
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 0.6rem;
    }

    .footer-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: all 0.3s;
      font-size: 0.95rem;
    }

    .footer-links a:hover {
      color: var(--secondary);
      padding-left: 5px;
    }

    .social-icons a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: white;
      margin-right: 10px;
      transition: all 0.3s;
    }

    .social-icons a:hover {
      background: var(--secondary);
      color: var(--primary-dark);
      transform: translateY(-3px);
    }

    .copyright {
      border-top: 1px solid rgba(255,255,255,0.15);
      margin-top: 40px;
      padding-top: 25px;
      text-align: center;
      font-size: 0.9rem;
      opacity: 0.8;
    }

    /* ========== ANIMATIONS ========== */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.6; }
      50% { transform: scale(1.1); opacity: 0.8; }
    }

    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .animate-left {
      animation: slideInLeft 0.8s ease forwards;
    }

    .animate-right {
      animation: slideInRight 0.8s ease forwards;
    }

    /* Smooth scroll */
    html {
      scroll-behavior: smooth;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .hero-title {
        font-size: 2.4rem;
      }
      .hero-illustration {
        height: 350px;
        margin-top: 40px;
      }
      .phone-mock {
        width: 130px;
        height: 250px;
      }
    }

    @media (max-width: 767px) {
      .hero {
        padding: 80px 0 60px;
      }
      .hero-title {
        font-size: 2rem;
      }
      .trust-bar {
        margin-top: 20px;
        border-radius: 12px;
      }
      .trust-item {
        justify-content: center;
        margin-bottom: 0.5rem;
      }
      .section-title {
        font-size: 1.8rem;
      }
      .mascot-emoji {
        font-size: 5rem;
      }
    }
    .w-100{
        width: 100%;
    }
    .overflowr{
        position: absolute;
        width: 200px;
        right: 0;
    }
    .flogo {
        width: 267px;
        height: 77px;
        object-fit: contain;
        display: block;
    }
    /* ========== DANKEEGO LOGO ========== */

    .brand-text img {
        width: 267px;
        height: 77px;
        object-fit: contain;
        display: block;
    }

    .footer-brand img {
        width: 267px;
        height: 77px;
        object-fit: contain;
        display: block;
    }

    .scroll-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.25s ease;
  z-index: 1050;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: #000;
  transform: translateY(-2px);
}
