/* =============================================
   برق لغسيل السيارات — fast-lock-294.css
   ============================================= */

:root {
  --gold:        #9A7F53;
  --gold-dark:   #7b6642;
  --gold-light:  #cdbfa9;
  --dark:        #1e1e1e;
  --dark-2:      #2a2a2a;
  --dark-3:      #3d3d3d;
  --text:        #212529;
  --text-light:  #6c757d;
  --white:       #ffffff;
  --radius:      4px;
  --transition:  0.3s ease;
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  direction: rtl;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 700;
  line-height: 1.2;
}

p { margin-top: 0; margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

/* ====================================================
   NAVBAR
   ==================================================== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: var(--dark);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo svg {
  width: 44px;
  height: 44px;
}

.nav-logo .brand-text {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.nav-logo .brand-sub {
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--gold);
  background: rgba(154,127,83,.15);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-menu li a { display: block; }
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img-assets/hero-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.65) 0%, rgba(0,0,0,.45) 60%, rgba(0,0,0,.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 20px;
}

.hero-script {
  display: block;
  font-size: clamp(22px, 4vw, 36px);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 8px;
  font-weight: 300;
}

.hero h1 {
  font-size: clamp(36px, 7vw, 72px);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 900;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====================================================
   SECTIONS
   ==================================================== */
.section { padding: 80px 0; }

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background: var(--gold);
}

.section-title.centered { text-align: center; }
.section-title.centered::after { right: 50%; transform: translateX(50%); }

.section-lead {
  font-size: 17px;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 30px;
}

/* Alternating rows */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.alt-row.reverse { direction: ltr; }
.alt-row.reverse .alt-text { direction: rtl; }

.alt-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
}

.alt-text .section-title { font-size: clamp(22px, 3vw, 32px); }

/* Gold border accent (left of h3) */
.title-accent {
  border-right: 5px solid var(--gold);
  padding-right: 16px;
}

@media (max-width: 768px) {
  .alt-row { grid-template-columns: 1fr; gap: 30px; }
  .alt-row.reverse { direction: rtl; }
}

/* ---- Dark Band ---- */
.band-dark {
  background: var(--dark);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.band-dark h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.band-dark p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin: 0 auto 30px;
}

/* ====================================================
   PRICE TABLE
   ==================================================== */
.price-section { background: #f8f7f5; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.price-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
}

.price-card-head {
  background: var(--dark);
  color: var(--white);
  padding: 22px 24px 18px;
  text-align: center;
}

.price-card-head h3 {
  margin: 0 0 6px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.price-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
}

.price-amount span {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,.65);
}

.price-card-body {
  padding: 22px 24px;
}

.price-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.price-card-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0ede8;
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card-body ul li i {
  color: var(--gold);
  font-size: 13px;
}

.price-card-body .btn { width: 100%; text-align: center; }

.price-card.featured .price-card-head { background: var(--gold); }

/* ====================================================
   GALLERY / PHOTO GRID
   ==================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====================================================
   SERVICES ICONS ROW
   ==================================================== */
.services-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-icon-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform var(--transition);
}

.service-icon-card:hover { transform: translateY(-5px); }

.service-icon-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}

.service-icon-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-icon-card p { font-size: 14px; color: var(--text-light); margin: 0; }

/* ====================================================
   STATS ROW
   ==================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-left: none; }

.stat-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-left: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ====================================================
   SOCIAL SECTION
   ==================================================== */
.social-links-row {
  text-align: center;
  padding: 50px 0;
}

.social-links-row h3 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--dark);
}

.social-icons { display: flex; gap: 20px; justify-content: center; }

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  transition: background var(--transition), transform var(--transition);
}

.social-icon-link:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* ====================================================
   CONTACT FORM
   ==================================================== */
.contact-section { background: #f8f7f5; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-item i {
  font-size: 20px;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-item p { margin: 0; font-size: 15px; line-height: 1.6; }

.contact-form .form-group { margin-bottom: 18px; }

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
  direction: rtl;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(154,127,83,.2);
}

.contact-form textarea { resize: vertical; min-height: 130px; }

/* ====================================================
   FOOTER
   ==================================================== */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .brand-logo svg { width: 40px; height: 40px; }
.footer-brand .brand-text { color: var(--white); font-size: 17px; font-weight: 700; }
.footer-brand .brand-sub { color: var(--gold-light); font-size: 11px; letter-spacing: 2px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
  max-width: 260px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  color: rgba(255,255,255,.5);
  font-size: 17px;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }

/* ====================================================
   COOKIES GDPR
   ==================================================== */
#cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-2);
  color: var(--white);
  padding: 18px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookies-banner.visible { transform: translateY(0); }

#cookies-banner p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  flex: 1;
  min-width: 220px;
}

#cookies-banner a { color: var(--gold); }

.cookies-btns { display: flex; gap: 10px; flex-wrap: wrap; }

#btn-accept-cookies {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background var(--transition);
}
#btn-accept-cookies:hover { background: var(--gold-dark); }

#btn-reject-cookies {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
#btn-reject-cookies:hover { border-color: var(--white); color: var(--white); }

/* ====================================================
   PAGE HERO (inner pages)
   ==================================================== */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 140px 20px 70px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  max-width: 540px;
  margin: 10px auto 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  font-size: 13px;
}
.breadcrumb li { color: rgba(255,255,255,.5); }
.breadcrumb li a { color: var(--gold); }
.breadcrumb li + li::before { content: '/'; margin-left: 8px; }

/* ====================================================
   ABOUT
   ==================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.team-card { text-align: center; }
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}
.team-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card p { font-size: 14px; color: var(--text-light); margin: 0; }

/* ====================================================
   SERVICE DETAILS
   ==================================================== */
.service-detail-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  margin-bottom: 32px;
}

.service-detail-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.service-detail-card .card-body { padding: 28px 30px; }

.service-detail-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  border-right: 4px solid var(--gold);
  padding-right: 14px;
}

.service-detail-card p { color: var(--text); font-size: 16px; margin-bottom: 16px; }

/* ====================================================
   UTILITY
   ==================================================== */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }

.bg-light-warm { background: #f8f7f5; }
