  :root{
    --ink:#15130f;
    --cream:#ffffff;
    --yellow:#f4b400;
    --yellow-deep:#caa018;
    --line:#e9e9e9;
    --gray:#6b6557;
    --card:#ffffff;
    --radius:14px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  body{
    font-family:'Segoe UI', 'Noto Nastaliq Urdu', Tahoma, sans-serif;
    background:var(--cream);
    color:var(--ink);
    line-height:1.6;
  }
  .ltr-block{direction:ltr; text-align:left;}
  header{
    position:sticky; top:0; z-index:50;
    background:#ffffff;
    color:var(--ink);
    padding:14px 20px;
    display:flex; align-items:center; justify-content:space-between;
    border-bottom:1px solid var(--line);
  }
  .brand{display:flex; align-items:center; gap:12px; direction:ltr;}
  .brand-mark{
    width:150px; height:48px; flex-shrink:0;
  }
  .brand-mark img, .brand-mark svg{display:block; width:100%; height:100%;}
  .brand-text{font-size:21px; font-weight:800; letter-spacing:.3px;}
  .brand-text span{color:var(--yellow);}
  .brand-tag{font-size:10px; color:var(--gray); letter-spacing:1.5px; text-transform:uppercase;}
  nav{display:flex; gap:22px; font-size:14px;}
  nav a{color:var(--ink); text-decoration:none; cursor:pointer; position:relative; padding-bottom:3px;}
  nav a::after{
    content:''; position:absolute; left:0; bottom:0; width:0; height:2px;
    background:var(--yellow); transition:width .2s ease;
  }
  nav a:hover{color:var(--yellow-deep);}
  nav a:hover::after{width:100%;}
  .lang-switch{display:flex; gap:6px; direction:ltr;}
  .lang-btn{
    border:1px solid var(--line); background:#fff; color:var(--gray);
    font-size:12px; font-weight:700; padding:6px 12px; border-radius:6px; cursor:pointer;
  }
  .lang-btn.active{background:var(--ink); color:var(--yellow); border-color:var(--ink);}

  .hero-video-section{
    width:100%; padding:18px 24px 0; margin:0; max-width:1400px; margin-inline:auto; box-sizing:border-box;
  }
  .hero-video-wrap{
    position:relative; width:100%; overflow:hidden; background:#000; border-radius:14px;
    box-shadow:0 20px 40px rgba(20,18,10,.16);
  }
  .hero-video-wrap video{
    width:100%; display:block; aspect-ratio:800/346; object-fit:cover; background:#000;
  }
  @media(max-width:760px){
    .hero-video-section{padding:12px 14px 0;}
  }

  .hero{
    position:relative;
    padding:64px 20px 70px;
    background:
      radial-gradient(circle at 85% 20%, rgba(244,180,0,.18), transparent 55%),
      var(--ink);
    color:#fff;
    overflow:hidden;
  }
  .hero-grid{
    max-width:1100px; margin:0 auto;
    display:grid; grid-template-columns:1.2fr .8fr; gap:40px; align-items:center;
  }
  .eyebrow{
    display:inline-block; font-size:12px; letter-spacing:2px; text-transform:uppercase;
    color:var(--yellow); border:1px solid rgba(244,180,0,.4); padding:5px 12px; border-radius:30px;
    margin-bottom:18px;
  }
  .hero h1{font-size:40px; line-height:1.25; font-weight:800; margin-bottom:16px;}
  .hero h1 em{font-style:normal; color:var(--yellow);}
  .hero p{color:#cfc9b8; font-size:16px; max-width:480px; margin-bottom:26px;}
  .hero-actions{display:flex; gap:14px; flex-wrap:wrap;}
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:13px 26px; border-radius:8px; font-weight:700; font-size:15px;
    text-decoration:none; cursor:pointer; border:none; transition:.15s;
  }
  .btn-primary{background:var(--yellow); color:var(--ink);}
  .btn-primary:hover{background:var(--yellow-deep); box-shadow:0 8px 18px rgba(244,180,0,.35); transform:translateY(-1px);}
  .btn-ghost{background:transparent; color:#fff; border:1px solid rgba(255,255,255,.35);}
  .btn-ghost:hover{border-color:var(--yellow); color:var(--yellow); transform:translateY(-1px);}
  .hero-stats{display:flex; gap:28px; margin-top:34px;}
  .stat b{display:block; font-size:24px; color:var(--yellow);}
  .stat span{font-size:12px; color:#bdb6a4;}

  .hero-visual{
    background:var(--card); border-radius:18px; padding:18px;
    box-shadow:0 30px 60px rgba(0,0,0,.35);
    color:var(--ink);
  }
  .hero-visual .tag{
    display:inline-block; background:var(--yellow); color:var(--ink); font-weight:800;
    font-size:13px; padding:5px 10px; border-radius:6px; margin-bottom:10px;
  }
  .hero-visual img{width:100%; border-radius:10px; display:block;}
  .hero-visual .price{font-size:22px; font-weight:800; margin-top:10px;}
  .hero-visual .price span{color:var(--gray); font-size:13px; font-weight:400;}

  section{max-width:1100px; margin:0 auto; padding:60px 20px;}
  .section-head{text-align:center; margin-bottom:34px;}
  .section-head .eyebrow{color:var(--yellow-deep); border-color:#e6d9ad;}
  .section-head h2{font-size:30px; font-weight:800; margin-top:6px;}
  .section-head p{color:var(--gray); max-width:520px; margin:8px auto 0;}

  .brand-filter-row{
    display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin:-8px 0 28px;
  }
  .brand-pill{
    padding:9px 20px; border-radius:999px; border:1.5px solid var(--line); background:#fff;
    font-size:13.5px; font-weight:700; color:var(--ink); cursor:pointer; transition:.15s;
  }
  .brand-pill:hover{border-color:var(--yellow-deep); color:var(--yellow-deep);}
  .brand-pill.active{background:var(--ink); border-color:var(--ink); color:var(--yellow);}
  .brand-pill.has-logo{padding:6px 16px; display:inline-flex; align-items:center;}
  .brand-pill.has-logo img{height:26px; width:auto; max-width:80px; object-fit:contain; display:block;}
  .footer-brand-logo{height:20px; width:auto; max-width:70px; object-fit:contain; vertical-align:middle;}

  .fleet-grid{display:grid; grid-template-columns:repeat(auto-fill, minmax(250px,1fr)); gap:22px;}
  .car-card{
    background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
    overflow:hidden; transition:.2s; display:flex; flex-direction:column; position:relative;
  }
  .car-card::before{
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background:var(--yellow); transform:scaleX(0); transform-origin:left; transition:transform .25s ease;
  }
  .car-card:hover::before{transform:scaleX(1);}
  .car-card:hover{transform:translateY(-4px); box-shadow:0 16px 30px rgba(20,18,10,.08);}
  .car-img-wrap{
    position:relative; aspect-ratio:4/3; background:#f2f2f2;
    display:flex; align-items:center; justify-content:center; overflow:hidden;
  }
  .car-img-wrap img{width:100%; height:100%; object-fit:cover;}
  .car-img-wrap .no-img{color:#b0b0b0; font-size:13px;}
  .car-badge{
    position:absolute; top:10px; right:10px;
    background:var(--yellow); color:var(--ink); font-weight:800; font-size:12px;
    padding:4px 9px; border-radius:6px;
  }
  .car-body{padding:16px; flex:1; display:flex; flex-direction:column;}
  .car-body h3{font-size:17px; font-weight:700; margin-bottom:4px;}
  .car-body p{font-size:13px; color:var(--gray); margin-bottom:12px; flex:1;}
  .car-price{font-size:18px; font-weight:800; color:var(--yellow-deep); margin-bottom:10px;}
  .car-price small{font-size:12px; color:var(--gray); font-weight:400;}
  .car-actions{display:flex; gap:8px;}
  .car-actions .btn{flex:1; padding:9px; font-size:13px; justify-content:center;}

  .how-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
  .how-step{
    background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
    padding:24px; position:relative;
  }
  .how-step .num{
    font-size:13px; font-weight:800; color:var(--yellow-deep); letter-spacing:1px;
    margin-bottom:10px; display:block;
  }
  .how-step h4{font-size:16px; margin-bottom:6px;}
  .how-step p{font-size:13px; color:var(--gray);}

  .booking{background:var(--ink); color:#fff;}
  .booking .section-head h2{color:#fff;}
  .booking .section-head p{color:#bdb6a4;}
  .booking-grid{
    display:grid; grid-template-columns:1fr 1fr; gap:30px;
    background:#1d1b15; border:1px solid #34301f; border-radius:18px; padding:30px;
  }
  .field{margin-bottom:16px;}
  .field label{display:block; font-size:13px; color:#cfc9b8; margin-bottom:6px;}
  .field input, .field select, .field textarea{
    width:100%; padding:11px 12px; border-radius:8px; border:1px solid #3a3626;
    background:#15130f; color:#fff; font-size:14px; font-family:inherit;
  }
  .field input:focus, .field select:focus, .field textarea:focus{outline:2px solid var(--yellow);}
  .two-col{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
  .booking-info h3{font-size:18px; margin-bottom:14px;}
  .info-row{display:flex; gap:10px; margin-bottom:14px; font-size:14px; color:#d8d2c2;}
  .info-row b{color:#fff; min-width:90px; display:inline-block;}
  .booking-confirm{
    background:rgba(244,180,0,.12); border:1px solid rgba(244,180,0,.4);
    border-radius:10px; padding:14px; font-size:13px; color:var(--yellow); margin-top:16px; display:none;
  }
  .social-row{display:flex; gap:10px; margin-top:16px; flex-wrap:wrap;}
  .social-btn{
    display:inline-flex; align-items:center; gap:7px; padding:9px 14px; border-radius:8px;
    background:#252012; border:1px solid #3a3626; color:#fff; text-decoration:none; font-size:13px; font-weight:600;
    transition:.15s;
  }
  .social-btn:hover{border-color:var(--yellow); color:var(--yellow); transform:translateY(-1px);}
  .social-btn-light{background:#fff; border-color:var(--line); color:var(--ink);}
  .social-btn-light:hover{border-color:var(--yellow-deep); color:var(--yellow-deep);}
  .footer-social-row{display:flex; gap:12px; margin-top:14px;}
  .footer-social-row a{
    display:flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:50%;
    background:#f5f4ef; border:1px solid var(--line); color:var(--gray); transition:.15s;
  }
  .footer-social-row a:hover{color:var(--yellow-deep); border-color:var(--yellow-deep);}

  .founder-section{background:#fafafa;}
  .founder-grid{
    display:grid; grid-template-columns:.8fr 1.2fr; gap:40px; align-items:center;
  }
  .founder-photo-wrap{
    position:relative; display:flex; justify-content:center;
  }
  .founder-photo-wrap::before{
    content:''; position:absolute; inset:-10px; border-radius:20px;
    background:linear-gradient(135deg, var(--yellow), var(--yellow-deep));
    opacity:.15; z-index:0;
  }
  .founder-photo{
    position:relative; z-index:1; width:100%; max-width:320px; aspect-ratio:4/4.2;
    object-fit:cover; border-radius:16px; box-shadow:0 24px 48px rgba(20,18,10,.18);
    border:4px solid #fff;
  }
  .founder-info h3{font-size:24px; font-weight:800; margin-bottom:4px;}
  .founder-info .founder-role{
    display:inline-block; color:var(--yellow-deep); font-weight:700; font-size:14px;
    margin-bottom:16px;
  }
  .founder-info p{color:var(--gray); font-size:15px; margin-bottom:18px;}
  .founder-contact-row{display:flex; gap:10px; flex-wrap:wrap;}
  @media(max-width:760px){
    .founder-grid{grid-template-columns:1fr; text-align:center;}
    .founder-info .founder-role{margin-bottom:12px;}
    .founder-contact-row{justify-content:center;}
  }

  footer{
    background:#ffffff; color:var(--gray); padding:56px 20px 0; font-size:13px;
    border-top:1px solid var(--line);
  }
  footer .brand-text{color:var(--ink);}
  footer a{color:var(--yellow-deep); text-decoration:none;}
  .footer-inner{max-width:1100px; margin:0 auto;}
  .footer-grid{
    display:grid; grid-template-columns:1fr 2.2fr; gap:36px;
    padding-bottom:40px; border-bottom:1px solid var(--line);
  }
  .footer-brand-row{display:flex; align-items:center; gap:12px; margin-bottom:14px; direction:ltr;}
  .footer-logo-mark{
    width:190px; height:64px; flex-shrink:0; border-radius:8px; overflow:hidden;
    background:#ffffff; padding:6px 10px;
  }
  .footer-logo-mark img{width:100%; height:100%; object-fit:contain; display:block;}
  .footer-brand-row .brand-text{font-size:19px; font-weight:800;}
  .footer-tagline{color:var(--gray); font-size:13px; max-width:260px; line-height:1.7;}
  .footer-col h5{
    color:var(--ink); font-size:13px; letter-spacing:1px; text-transform:uppercase;
    font-weight:700; margin-bottom:16px;
  }
  .footer-col{display:flex; flex-direction:column; gap:11px;}
  .footer-col a{color:var(--gray); font-size:13.5px; transition:color .15s; width:fit-content;}
  .footer-col a:hover{color:var(--yellow-deep);}
  .footer-links-row{display:flex; flex-wrap:wrap; gap:10px 22px;}
  .footer-links-row a{color:var(--gray); font-size:13.5px; transition:color .15s; white-space:nowrap;}
  .footer-links-row a:hover{color:var(--yellow-deep);}
  .footer-contact-item{display:flex; flex-direction:column; gap:2px;}
  .footer-contact-item span{color:var(--gray);}
  .footer-bottom{
    max-width:1100px; margin:0 auto; padding:20px 0 26px;
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
    color:#9b9686; font-size:12.5px;
  }
  @media(max-width:760px){
    .footer-grid{grid-template-columns:1fr 1fr; gap:30px;}
    .footer-bottom{justify-content:center; text-align:center;}
  }
  @media(max-width:480px){
    .footer-grid{grid-template-columns:1fr;}
  }

  .admin-fab{
    position:fixed; bottom:22px; left:22px; z-index:60;
    background:var(--ink); color:var(--yellow); width:50px; height:50px; border-radius:50%;
    display:flex; align-items:center; justify-content:center; font-size:20px; cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.3); border:2px solid var(--yellow);
  }
  .modal-overlay{
    display:none; position:fixed; inset:0; background:rgba(10,9,5,.7); z-index:100;
    align-items:flex-start; justify-content:center; padding:40px 16px; overflow-y:auto;
  }
  .modal-overlay.open{display:flex;}
  .modal{
    background:var(--cream); border-radius:16px; max-width:780px; width:100%; padding:28px;
    max-height:90vh; overflow-y:auto;
  }
  .modal-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:18px;}
  .modal-head h3{font-size:20px;}
  .modal-close{background:none; border:none; font-size:22px; cursor:pointer; color:var(--gray);}
  .admin-locked, .admin-panel{display:none;}
  .admin-locked.active, .admin-panel.active{display:block;}
  .admin-car-row{
    display:flex; gap:12px; align-items:center; background:var(--card); border:1px solid var(--line);
    border-radius:10px; padding:10px; margin-bottom:10px;
  }
  .admin-car-row img{width:60px; height:48px; object-fit:cover; border-radius:6px; background:#eee;}
  .admin-car-row .meta{flex:1; font-size:13px;}
  .admin-car-row .meta b{display:block; font-size:14px;}
  .danger{background:#c0392b; color:#fff;}
  .small-btn{padding:7px 12px; font-size:12px; border-radius:6px;}
  .form-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
  .toast{
    position:fixed; bottom:22px; right:22px; background:var(--ink); color:var(--yellow);
    padding:12px 18px; border-radius:8px; font-size:14px; z-index:200; display:none;
    box-shadow:0 10px 24px rgba(0,0,0,.3);
  }

  .page{display:none;}
  .page.active{display:block;}

  .floating-whatsapp{
    position:fixed; bottom:24px; right:24px; width:58px; height:58px; border-radius:50%;
    background:#25D366; display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 28px rgba(0,0,0,.28); z-index:200; transition:transform .15s;
  }
  .floating-whatsapp:hover{transform:scale(1.08);}
  .floating-whatsapp svg{width:30px; height:30px; fill:#fff;}
  @media(max-width:600px){
    .floating-whatsapp{width:50px; height:50px; bottom:16px; right:16px;}
    .floating-whatsapp svg{width:26px; height:26px;}
  }

  .nav-dropdown{position:relative;}
  .nav-dropdown > a{user-select:none;}
  .nav-dropdown-panel{
    display:none; position:absolute; top:calc(100% + 14px); right:0;
    background:#fff; border:1px solid var(--line); border-radius:10px;
    padding:8px; min-width:190px; box-shadow:0 16px 32px rgba(20,18,10,.14);
    flex-direction:column; gap:2px; z-index:80;
  }
  .nav-dropdown-panel.open{display:flex;}
  .nav-dropdown-panel a{
    padding:9px 12px; border-radius:6px; font-size:13.5px; color:var(--ink);
  }
  .nav-dropdown-panel a::after{display:none;}
  .nav-dropdown-panel a:hover{background:#f5f4ef; color:var(--yellow-deep);}

  @media(max-width:860px){
    .hero-grid{grid-template-columns:1fr;}
    .booking-grid{grid-template-columns:1fr;}
    .how-grid{grid-template-columns:1fr;}
    .two-col, .form-grid{grid-template-columns:1fr;}
    nav{display:none;}
  }
