<style>
    /* ----------------------------------------------
      CSS (Modern, Taxi theme, fully responsive)
    ----------------------------------------------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #defeff;
      color: #1e1e2a;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    /* custom variables */
    :root {
      --primary-dark: #1e1e2a;
      --accent-yellow: #39c0c3;
      --accent-yellow-dark: #39c0c3;
      --gray-bg: #f8f9fc;
      --card-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
      --transition-smooth: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    /* container */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* ========== HEADER / NAVBAR ========== */
    .navbar {
      position: sticky;
      top: 0;
      background: rgba(222, 254, 255, 0.92);
      backdrop-filter: blur(12px);
      z-index: 1000;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      padding: 1rem 0;
      transition: var(--transition-smooth);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
    }
.brand-logo {
  height: 50px;     
  width: auto;
  object-fit: contain;
  display: block;
}
    .logo i {
      color: var(--accent-yellow);
      font-size: 2rem;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }
    .logo span {
      background: linear-gradient(135deg, #1e1e2a 0%, #2c2c3a 100%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .nav-links {
      display: flex;
      gap: 2.8rem;
      align-items: center;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      color: #2d2f3a;
      transition: var(--transition-smooth);
      font-size: 1rem;
      position: relative;
    }
    .nav-links a:hover {
      color: var(--accent-yellow-dark);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0%;
      height: 2.5px;
      background: var(--accent-yellow);
      transition: 0.2s ease;
      border-radius: 2px;
    }
    .nav-links a:hover::after {
      width: 100%;
    }

    /* hamburger */
    .hamburger {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--primary-dark);
    }

    /* ========== HERO SECTION (HOME) ========== */
    .hero {
      padding: 5rem 0 6rem 0;
      background: radial-gradient(circle at 85% 20%, rgba(222,254,255,0.08) 0%, rgba(222,254,255,0.2) 80%);
    }

    .hero-grid {
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .hero-content {
      flex: 1.2;
    }
    .hero-badge {
      background: rgba(57,192,195,0.2);
      display: inline-block;
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.8rem;
      color: #39c0c3;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(2px);
    }
    .hero-content h1 {
      font-size: 3.6rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -1px;
      color: #1e1e2a;
      margin-bottom: 1.2rem;
    }
    .hero-content h1 span {
      color: var(--accent-yellow);
      background: linear-gradient(135deg, #39c0c3, #239699);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }
    .hero-description {
      font-size: 1.1rem;
      color: #4a4a5a;
      line-height: 1.5;
      margin-bottom: 2rem;
    }
    .reliable-highlight {
      background: #ffffffd9;
      padding: 1rem 1.8rem;
      border-radius: 32px;
      margin: 1.5rem 0;
      border-left: 5px solid var(--accent-yellow);
      box-shadow: var(--card-shadow);
    }
    .reliable-highlight h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .reliable-highlight p {
      color: #3c3c4a;
    }
    .btn-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 1rem;
    }
    .btn-primary, .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.9rem 2rem;
      font-weight: 700;
      border-radius: 48px;
      transition: var(--transition-smooth);
      cursor: pointer;
      border: none;
      font-size: 1rem;
      font-family: inherit;
    }
    .btn-primary {
      background: var(--primary-dark);
      color: white;
      box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    }
    .btn-primary:hover {
      background: #2c2c3e;
      transform: scale(1.02);
    }
    .btn-secondary {
      background: white;
      color: var(--primary-dark);
      border: 1px solid #dbdbdf;
    }
    .btn-secondary:hover {
      background: #fef5e3;
      border-color: var(--accent-yellow);
      transform: translateY(-2px);
    }
    /* Hero visual */
   .hero-visual {
  display: flex;
  justify-content: flex-end; /* يخليها في اليمين */
  align-items: center;
  height: 100%;
}

.taxi-img {
  width: 350px;        
  max-width: 100%;
  height: auto;
}
    
    /* ========== ABOUT SECTION ========== */
    .about {
      padding: 5rem 0;
      background: white;
    }
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .section-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      display: inline-block;
      background: linear-gradient(120deg, #1e1e2a, #403f58);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      border-bottom: 3px solid var(--accent-yellow);
      padding-bottom: 0.3rem;
    }
    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
    }
    .about-card {
      background: var(--gray-bg);
      padding: 2rem 1.8rem;
      border-radius: 2rem;
      transition: var(--transition-smooth);
      border: 1px solid #defeff;
    }
    .about-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.12);
      background: white;
    }
    .about-icon {
      background: rgba(179,244,246,0.15);
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 30px;
      font-size: 1.8rem;
      color: #39c0c3;
      margin-bottom: 1.5rem;
    }
    .about-card h3 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .about-card p {
      color: #4f4f62;
      line-height: 1.5;
    }

    /* ========== FEATURES SECTION ========== */
    .features {
      padding: 5rem 0;
      background: linear-gradient(145deg, #defeff, #fffbf5);
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }
    .feature-card {
      background: white;
      border-radius: 2rem;
      padding: 2rem 1.8rem;
      text-align: center;
      transition: var(--transition-smooth);
      box-shadow: 0 5px 15px rgba(0,0,0,0.02);
      border: 1px solid #defeff;
    }
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
      border-color: var(--accent-yellow);
    }
    .feature-icon {
      font-size: 3rem;
      background: #defeff;
      width: 85px;
      height: 85px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 60px;
      margin: 0 auto 1.5rem auto;
      color: var(--accent-yellow-dark);
    }
    .feature-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .feature-card p {
      color: #5a5a6e;
      line-height: 1.5;
    }

    /* ========== FOOTER ========== */
    footer {
      background: #111116;
      color: #cdcddf;
      padding: 2.5rem 0;
      text-align: center;
    }
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .social-icons i {
      font-size: 1.4rem;
      margin: 0 0.6rem;
      transition: 0.2s;
      cursor: pointer;
      color: #bfbfd0;
    }
    .social-icons i:hover {
      color: var(--accent-yellow);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 900px) {
      .container {
        padding: 0 1.5rem;
      }
      .hero-content h1 {
        font-size: 2.6rem;
      }
      .hero-grid {
        flex-direction: column;
      }
      .hero-visual {
        order: 0;
        margin-top: 1rem;
      }
      .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(222, 254, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 70%;
        height: 100vh;
        padding: 2rem;
        gap: 2rem;
        transition: 0.3s ease;
        box-shadow: 4px 0 20px rgba(0,0,0,0.08);
        z-index: 999;
        border-right: 1px solid #39c0c3;
      }
      .nav-links.active {
        left: 0;
      }
      .hamburger {
        display: block;
      }39c0c3
    }

    @media (max-width: 550px) {
      .btn-group {
        flex-direction: column;
      }
      .section-header h2 {
        font-size: 2rem;
      }
      .about-card h3 {
        font-size: 1.4rem;
      }
    }

    /* Animation on scroll (simple fade-up) */
    .fade-up {
      opacity: 0;
      transform: translateY(25px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

/*-----------------contact form------------------------*/

/* Buttons & UI */
        .btn-primary-custom {
            background:#39c0c3;
            border: none;
            color: white;
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 60px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(3, 89, 56, 0.2);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            background: #169a9d;
            box-shadow: 0 12px 20px -10px rgba(3, 89, 56, 0.4);
        }
        .btn-outline-custom {
            border: 1.5px solid var(--primary);
            background: transparent;
            color: var(--primary);
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 60px;
            transition: all 0.2s ease;
        }
        .btn-outline-custom:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .btn-secondary-custom {
            background: var(--secondary);
            border: none;
            color: white;
            padding: 12px 32px;
            font-weight: 600;
            border-radius: 60px;
            transition: all 0.2s ease;
        }
        .btn-secondary-custom:hover {
            background: var(--secondary-dark);
            transform: scale(1.02);
        }


/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}


  </style>