
:root{
  --dark:#07111b;
  --dark2:#0f2232;
  --green:#18c777;
  --green2:#0b9d56;
  --text:#10212f;
  --muted:#607486;
  --border:#dfe8ef;
  --soft:#f3f7fa;
  --white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Cairo',Tahoma,Arial,sans-serif;
  background:#f3f7fa;
  color:var(--text);
  direction:rtl;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
iframe{width:100%;min-height:360px;border:0;border-radius:22px}
.container{
  width:min(1180px, calc(100% - 32px));
  margin-left:auto;
  margin-right:auto;
}

/* Header */
.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:#07111b;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  flex:0 0 auto;
}
.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
}
.brand strong{
  display:block;
  font-size:20px;
  letter-spacing:.06em;
  line-height:1.1;
}
.brand span{
  display:block;
  color:#9ee8c1;
  font-size:13px;
  margin-top:4px;
}
.main-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex:1;
}
.main-nav a{
  color:#e8f1f6;
  font-size:15px;
  font-weight:700;
  white-space:nowrap;
}
.main-nav a:hover{color:var(--green)}
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}
.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-size:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid transparent;
  font-family:inherit;
  font-weight:800;
  cursor:pointer;
  line-height:1.2;
  text-align:center;
}
.btn-primary{
  background:linear-gradient(135deg,var(--green),var(--green2));
  color:#04130b;
}
.btn-ghost{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.12);
}
.btn-dark{
  background:#0f2232;
  color:#fff;
}
.btn-outline{
  background:#fff;
  color:#10212f;
  border-color:var(--border);
}
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:transparent;
  color:#fff;
  font-size:22px;
}

/* Hero */
.hero{
  background:
    radial-gradient(circle at 15% 15%, rgba(24,199,119,.20), transparent 30%),
    linear-gradient(180deg,#07111b 0%,#0e2131 100%);
  color:#fff;
  padding:72px 0 58px;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  gap:34px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  margin-bottom:18px;
  padding:9px 15px;
  border-radius:999px;
  color:#b8f7d8;
  background:rgba(24,199,119,.12);
  border:1px solid rgba(24,199,119,.20);
  font-weight:800;
}
.hero h1{
  margin:0 0 16px;
  font-size:clamp(32px,5vw,58px);
  line-height:1.15;
  max-width:760px;
}
.hero p{
  margin:0;
  color:#cad8e3;
  font-size:18px;
  line-height:1.9;
  max-width:740px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:26px;
}
.metric{
  padding:17px;
  border-radius:20px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);
}
.metric strong{
  display:block;
  color:#fff;
  font-size:22px;
}
.metric span{
  display:block;
  color:#b8c9d5;
  margin-top:4px;
  font-size:14px;
  line-height:1.5;
}
.hero-visual{
  position:relative;
  min-height:430px;
  border-radius:32px;
  background:linear-gradient(135deg,#10293c,#07111b);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
  box-shadow:0 28px 70px rgba(0,0,0,.30);
}
.hero-visual .logo-float{
  position:absolute;
  top:20px;
  left:20px;
  width:78px;
  height:78px;
  object-fit:contain;
  z-index:2;
}
.hero-visual .car{
  position:absolute;
  inset:70px 25px 110px 25px;
  background:url('../img/hero-car.svg') center/contain no-repeat;
}
.floating-cards{
  position:absolute;
  right:18px;
  left:18px;
  bottom:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.float-card{
  padding:15px;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(8px);
}
.float-card h4{
  margin:0 0 7px;
  color:#fff;
}
.float-card p{
  margin:0;
  color:#c9d9e4;
  font-size:14px;
  line-height:1.7;
}

/* Sections */
.section{padding:72px 0}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  margin-bottom:26px;
}
.section-head h2{
  margin:0;
  font-size:32px;
  line-height:1.25;
}
.section-head p{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.8;
  max-width:760px;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.service-card,
.booking-card,
.cta-card,
.review-card,
.content-card,
.booking-box,
.booking-side,
.result-card,
.map-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  box-shadow:0 12px 34px rgba(11,25,38,.06);
}
.service-card{
  padding:24px;
  min-height:245px;
  transition:.2s;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 46px rgba(11,25,38,.10);
}
.service-card .icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#e9f9f1;
  font-size:28px;
  margin-bottom:16px;
}
.service-card h3{
  margin:0 0 10px;
  font-size:22px;
}
.service-card p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
  font-size:15px;
}
.service-card .link{
  display:inline-flex;
  margin-top:16px;
  color:#0b9d56;
  font-weight:800;
}
.stat-strip{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-top:22px;
}
.stat-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:20px;
  text-align:center;
}
.stat-box strong{
  display:block;
  font-size:22px;
  margin-bottom:6px;
}
.stat-box span{
  display:block;
  color:var(--muted);
  line-height:1.6;
}

/* Offers */
.offers-stack{
  display:grid;
  gap:16px;
}
.offer-banner{
  min-height:190px;
  border-radius:28px;
  overflow:hidden;
  position:relative;
  background:linear-gradient(135deg,#0b1722,#143149);
  display:flex;
  align-items:center;
  border:1px solid rgba(0,0,0,.08);
}
.offer-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(5,13,20,.92),rgba(5,13,20,.55));
  z-index:1;
}
.offer-img{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}
.offer-content{
  position:relative;
  z-index:2;
  width:min(720px,100%);
  padding:30px;
  color:#fff;
}
.offer-badge{
  display:inline-flex;
  margin-bottom:12px;
  padding:8px 13px;
  border-radius:999px;
  color:#b8f7d8;
  background:rgba(24,199,119,.14);
  border:1px solid rgba(24,199,119,.20);
  font-weight:800;
}
.offer-content h3{
  margin:0 0 8px;
  font-size:30px;
}
.offer-content p{
  margin:0 0 15px;
  color:#d6e3eb;
  line-height:1.85;
}
.price-line{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
}
.old-price{
  color:#aabac5;
  text-decoration:line-through;
}
.new-price{
  color:#fff;
  font-weight:900;
  font-size:22px;
}

/* Booking and details */
.booking-strip,
.detail-layout,
.booking-layout,
.warranty-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.65fr);
  gap:20px;
}
.booking-card,.cta-card,.content-card,.booking-box,.booking-side,.result-card{padding:26px}
.booking-card h3,.cta-card h3,.content-card h2,.content-card h3,.booking-side h3{
  margin-top:0;
}
.booking-card p,.cta-card p,.content-card p,.content-card li{
  color:var(--muted);
  line-height:1.9;
}
.page-hero{
  background:linear-gradient(180deg,#07111b,#0f2232);
  color:#fff;
  padding:62px 0 44px;
}
.page-hero .grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr);
  gap:24px;
  align-items:center;
}
.page-hero h1{
  margin:0 0 14px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.2;
}
.page-hero p{
  margin:0 0 20px;
  color:#d2dde6;
  line-height:1.9;
}
.breadcrumbs{
  display:flex;
  gap:10px;
  color:#9eb1be;
  margin-bottom:12px;
}
.glass{
  border-radius:28px;
  padding:24px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}
.process-list{
  display:grid;
  gap:12px;
}
.process-step{
  display:flex;
  gap:14px;
  padding:16px;
  border-radius:18px;
  background:#f8fbfd;
  border:1px solid #e7eef4;
}
.step-no{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:#e4f8ee;
  color:#0b8f4d;
  font-weight:900;
}
.packages-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.package-item{
  padding:17px;
  background:#f9fbfd;
  border:1px solid #e5edf3;
  border-radius:18px;
}
.package-item h4{margin:0 0 6px}
.package-item p{margin:0}
.faq-item{
  padding:16px 0;
  border-top:1px solid #e7eef4;
}
.faq-item:first-child{border-top:0}
.faq-item h4{margin:0 0 8px}

/* Forms */
.booking-page,.warranty-page{padding:52px 0 80px}
.booking-steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-bottom:18px;
}
.step-chip{
  padding:13px;
  border-radius:16px;
  text-align:center;
  background:#f6f9fb;
  border:1px solid #e4ecf2;
  color:#405669;
  font-weight:800;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field label{
  font-weight:800;
  color:#172b3a;
}
.field input,
.field select,
.field textarea{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border:1px solid #d6e2eb;
  border-radius:14px;
  background:#f9fbfd;
  font-family:inherit;
  color:#112431;
}
.field textarea{
  min-height:120px;
  resize:vertical;
}
.field-full{grid-column:1/-1}
.summary-list{display:grid;gap:11px}
.summary-item{
  padding:14px;
  background:#f8fbfd;
  border:1px solid #e5edf3;
  border-radius:16px;
}
.summary-item strong{
  display:block;
  margin-bottom:4px;
}
.summary-item span{
  color:var(--muted);
}
.note-box{
  padding:16px;
  border-radius:16px;
  background:#edf7ff;
  border:1px solid #dceefe;
  color:#39566b;
  line-height:1.8;
}
.tab-head{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:18px}
.tab-head button{
  padding:12px 16px;
  border-radius:14px;
  border:1px solid #d6e2eb;
  background:#fff;
  font-family:inherit;
  font-weight:800;
  cursor:pointer;
}
.tab-head button.active{
  background:#0f2232;
  color:#fff;
}
.tab-pane{display:none}
.tab-pane.active{display:block}
.inline-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:999px;
  background:#eef5f8;
  color:#173040;
}
.pill.ok{background:#e3f8ed;color:#0b8f4d}
.pill.warn{background:#fff4d5;color:#8a5e00}
.pill.bad{background:#ffe7e7;color:#b53b3b}
.flash{
  padding:14px 16px;
  border-radius:16px;
  margin-bottom:16px;
}
.flash-success{background:#e6f8ee;color:#0a6d3d;border:1px solid #cdeedc}
.flash-error{background:#fff0f0;color:#a62d2d;border:1px solid #ffd1d1}

/* Reviews, map, footer */
.testimonials{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.review-card{padding:22px}
.stars{color:#f5a623;margin-bottom:8px}
.review-card p{
  color:var(--muted);
  line-height:1.85;
}
.map-card{padding:16px}
.footer{
  background:#07111b;
  color:#fff;
  padding:36px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr 1fr;
  gap:24px;
}
.footer-copy,
.footer-links a,
.footer-bottom{
  color:#aebfcb;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.socials{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.socials a{
  padding:9px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
}
.footer-bottom{
  margin-top:24px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.mini-map iframe{min-height:150px}
.floating-wa{
  position:fixed;
  left:16px;
  bottom:16px;
  z-index:1001;
  background:#20d66f;
  color:#062714;
  padding:13px 18px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 16px 42px rgba(0,0,0,.22);
}

/* Responsive */
@media(max-width:1100px){
  .topbar-inner{position:relative}
  .main-nav{
    display:none;
    position:absolute;
    top:82px;
    right:0;
    left:0;
    padding:18px;
    background:#07111b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:0 0 22px 22px;
    flex-direction:column;
    align-items:stretch;
  }
  .main-nav.open{display:flex}
  .menu-toggle{display:inline-flex;align-items:center;justify-content:center}
  .chip{display:none}
  .hero-grid,
  .page-hero .grid,
  .booking-strip,
  .detail-layout,
  .booking-layout,
  .warranty-grid{
    grid-template-columns:1fr;
  }
  .hero-visual{min-height:390px}
  .services-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stat-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:720px){
  .container{width:min(100% - 24px,1180px)}
  .topbar-inner{min-height:74px}
  .brand img{width:48px;height:48px}
  .brand strong{font-size:17px}
  .nav-actions .btn{display:none}
  .hero{padding:48px 0 40px}
  .hero h1{font-size:31px}
  .hero p{font-size:16px}
  .hero-metrics,
  .services-grid,
  .stat-strip,
  .testimonials,
  .packages-grid,
  .form-grid,
  .booking-steps,
  .floating-cards{
    grid-template-columns:1fr;
  }
  .section{padding:52px 0}
  .section-head{
    display:block;
  }
  .section-head h2{font-size:27px}
  .hero-visual{min-height:330px;border-radius:24px}
  .hero-visual .car{inset:58px 10px 130px}
  .offer-content{padding:22px}
  .offer-content h3{font-size:24px}
  .footer-grid{grid-template-columns:1fr}
}
