/* =====================================================
   FALAK AL ABEER PARKING CAR WASHING LLC
   COMPLETE STYLESHEET
   ===================================================== */

/* -------- Root Colors & Global Styles -------- */
:root {
  --orange: #ff8c00;
  --white: #ffffff;
  --dark-blue: #031427;
  --green: #0f8a5f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #02111d;
  color: var(--white);
  overflow-x: hidden;
}

.topbar {
  background: #031427;
  color: #fff;
  text-align: center;
  padding: 10px 0; /* increased height */
  font-size: 15px;
  letter-spacing: 0.5px;
}
/* -------- Header / Menu -------- */
.site-header {
  background: linear-gradient(90deg, #FFF, #FFA500);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.logo-img {
  height: 30px;
}

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.menu-item {
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.menu-item:hover {
  background: #fff;
  color: var(--orange);
}

/* -------- Hamburger Menu -------- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  z-index: 1001; /* ✅ added */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease; /* ✅ smooth transform */
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background: #02223f;
    padding: 10px 0;
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    z-index: 9999;
    border-radius: 8px;
  }

  .main-nav.open {
    display: flex;
  }

  .menu {
    list-style: none;
    display: flex;
    flex-direction: column; /* ✅ one below another */
    padding: 0;
    margin: 0;
  }

  .menu-item {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 12px 20px;
    text-align: left;
    white-space: nowrap; /* ✅ keep two words in same line */
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .menu-item:hover {
    background: #0f8a5f;
    color: #fff;
  }
}

/* -------- Hero Section -------- */
.hero {
  background: var(--dark-blue);
  text-align: center;
  padding: 100px 20px;
  animation: fadeSlide 1.5s ease forwards;
}

.hero-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.3;
  max-width: 800px;
  margin: 10px auto;
}

.hero-title .highlight {
  color: var(--orange);
}

.hero-sub {
  font-size: 16px;
  margin: 18px 0 30px;
  color: #cce3ff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pre-title {
  font-size: 18px;
  color: var(--orange);
  font-weight: 600;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 12px 24px;
}

.btn-primary:hover {
  background: #fff;
  color: var(--orange);
}

.btn-secondary {
  background: #fff;
  color: var(--orange);
  padding: 12px 24px;
}

.btn-secondary:hover {
  background: var(--orange);
  color: #fff;
}

.btn-icon {
  fill: currentColor;
}

/* -------- Two-Part Section -------- */
.two-part {
  padding: 80px 20px;
  background: #011627;
}

.two-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.two-left {
  flex: 1;
}

.two-right {
  flex: 1;
  text-align: right;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.three-words {
  font-weight: 700;
  color: var(--orange);
}

.two-title {
  font-size: 26px;
  margin: 12px 0;
  font-weight: 700;
}

.two-sub {
  color: #dbeeff;
  line-height: 1.6;
}

/* -------- Services Cards -------- */
.services {
  padding: 50px 0;
}

.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
.card {
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.card-title {
  margin: 8px 0;
  font-weight: 700;
}

.card-sub {
  color: #dbeeff;
  font-size: 14px;
}

/* -------- Features -------- */
.features {
  padding: 50px 0;
}

.features-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
}

.feature-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #0f4f8a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}

.feature-circle strong {
  font-size: 22px;
  color: var(--white);
  display: block;
}

.feature-circle span {
  font-size: 13px;
  color: #dbeeff;
}

/* -------- Pricing -------- */
.pricing {
  padding: 60px 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: auto;
}

.price-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.price-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.price {
  font-size: 28px;
  margin: 8px 0;
  font-weight: 700;
}

.per {
  font-size: 14px;
  color: #dbeeff;
}

.features-list {
  text-align: left;
  padding-left: 18px;
  line-height: 1.6;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* -------- Contact Cards -------- */
.contact-cards {
  padding: 40px 20px;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin: auto;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 8px;
  text-align: left;
}

.info-card .card-icon {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--orange);
}
.info-card {
  background-color: #0b1b2b;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  flex: 1 1 250px;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.icon-title .card-icon {
  font-size: 22px;
  line-height: 1;
}

.icon-title h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

/* -------- Footer -------- */
.site-footer {
  background: #031427;
  padding: 24px 0;
  margin-top: 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1100px;
  margin: auto;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-menu a {
  color: #bedcff;
  text-decoration: none;
}

.footer-menu a:hover {
  color: var(--orange);
}

.socials a {
  font-size: 20px;
  color: #bedcff;
  margin-left: 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.socials a:hover {
  color: var(--orange);
}
.footer-bottom {
  text-align: center;
  margin-top: 12px;
  color: #98bcd8;
  font-size: 14px;
}

/* -------- Floating WhatsApp -------- */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25D366; /* official WhatsApp green */
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  font-size: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* -------- Responsive -------- */
@media (max-width: 900px) {
  .two-inner {
    flex-direction: column;
    text-align: center;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    background: #02223f;
    padding: 10px;
    position: absolute;
    top: 80px;
    right: 0;
    width: 200px;
  }

.main-nav.open {
  display: flex;
}

  .hamburger {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  .hero-title {
    font-size: 28px;
  }

  .feature-circle {
    width: 120px;
    height: 120px;
  }
}

/* -------- Animations -------- */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
html {
  scroll-behavior: smooth;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.footer-menu li {
  white-space: nowrap;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-menu a:hover {
  color: #25D366;
}
/* Alternate layout for .two-part.alt sections */
.two-part.alt .two-inner {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .two-part.alt .two-inner {
    flex-direction: column;
  }
}
