/* ============================================================
   Dubai Van Movers - style.css
   SEO-Optimised, Mobile-First, Production-Grade Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --orange:       #f97316;
  --orange-dark:  #ea580c;
  --orange-light: #fff7ed;
  --green-wa:     #25D366;
  --green-wa-dark:#1ebe5d;
  --gray-900:     #111827;
  --gray-800:     #1f2937;
  --gray-700:     #374151;
  --gray-600:     #4b5563;
  --gray-400:     #9ca3af;
  --gray-100:     #f3f4f6;
  --gray-50:      #f9fafb;
  --white:        #ffffff;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:    0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:    0 10px 30px rgba(0,0,0,.12);
  --radius:       12px;
  --transition:   .22s ease;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  color: var(--gray-700);
  background: var(--gray-50);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--gray-900);
  line-height: 1.25;
}
h1 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h3 { font-size: 1.1rem; }

/* ---------- Utility ---------- */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1rem; }
.section-pad { padding: 3.5rem 0; }
.text-orange  { color: var(--orange); }
.bg-orange-light { background: var(--orange-light); }

/* ---------- Header / Nav ---------- */
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav { display: flex; justify-content: space-between; align-items: center; padding: .9rem 1rem; }
.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.3px;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }
#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--gray-700);
  display: none;
}
#nav-menu { display: flex; }
@media (max-width: 767px) {
  #menu-toggle { display: block; }
  #nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    padding: .5rem 0 1rem;
  }
  #nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; gap: 0; width: 100%; }
  .nav-links a { padding: .75rem 1.5rem; font-size: 1rem; width: 100%; border-bottom: 1px solid var(--gray-100); }
  .nav-cta { margin: .75rem 1.5rem 0; text-align: center; border-radius: 8px; border-bottom: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 60%, #fed7aa 100%);
  padding: 3rem 0 2.5rem;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  border-left: 5px solid var(--orange);
}
.hero-card .tagline {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: .5rem;
}
.hero-card h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1rem;
}
.hero-card p { color: var(--gray-600); margin-bottom: 1.5rem; }
.hero-btns { display: flex; flex-direction: column; gap: .75rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}
.btn-orange  { background: var(--orange); color: var(--white); }
.btn-orange:hover  { background: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-whatsapp { background: var(--green-wa); color: var(--white); }
.btn-whatsapp:hover { background: var(--green-wa-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }
.hero-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 360px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .hero-img img { height: 220px; }
}

/* ---------- Section Headings ---------- */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 { margin-bottom: .5rem; }
.section-title p { color: var(--gray-600); font-size: .95rem; max-width: 560px; margin: 0 auto; }
.section-title .underline-bar {
  width: 52px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
  margin: .6rem auto 0;
}

/* ---------- Cards Grid ---------- */
.cards-grid { display: grid; gap: 1.25rem; }
.cards-grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card .icon { font-size: 2rem; color: var(--orange); margin-bottom: .75rem; }
.card h3 { margin-bottom: .4rem; }
.card p  { color: var(--gray-600); font-size: .93rem; }

/* ---------- Advantages / Why-Us Flex Cards ---------- */
.list-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.list-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.list-card .icon { font-size: 1.5rem; color: var(--orange); flex-shrink: 0; }
.list-card p { color: var(--gray-700); font-size: .93rem; }

/* ---------- Inquiry / Quote Form ---------- */
#inquiry { background: linear-gradient(135deg, #1f2937 0%, #374151 100%); }
#inquiry .section-title h2,
#inquiry .section-title p { color: var(--white); }
#inquiry .section-title .underline-bar { background: var(--orange); }

.inquiry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: start;
}
.inquiry-info { color: #d1d5db; }
.inquiry-info h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 1rem; }
.inquiry-info ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.inquiry-info ul li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; }
.inquiry-info ul li i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.inquiry-info .contact-strip {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.inquiry-info .contact-strip a {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #f3f4f6;
  font-weight: 600;
  font-size: .95rem;
  transition: color var(--transition);
}
.inquiry-info .contact-strip a:hover { color: var(--orange); }

.inquiry-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-col-2 { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-group label .req { color: var(--orange); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .7rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { margin-top: .75rem; }
.form-submit .btn { width: 100%; font-size: 1.05rem; padding: .9rem; }
.form-note { font-size: .78rem; color: var(--gray-400); text-align: center; margin-top: .6rem; }
#form-status {
  display: none;
  padding: .9rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .92rem;
  margin-top: .75rem;
  text-align: center;
}
#form-status.success { background: #d1fae5; color: #065f46; display: block; }
#form-status.error   { background: #fee2e2; color: #991b1b; display: block; }

@media (max-width: 900px) {
  .inquiry-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-col-2 { grid-column: 1; }
}

/* ---------- Tags Cloud ---------- */
.tags-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; max-width: 900px; margin: 0 auto; }
.tag {
  background: var(--white);
  color: var(--gray-700);
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .83rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e7eb;
  transition: all var(--transition);
}
.tag:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: .97rem;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-question .faq-icon { color: var(--orange); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.25rem;
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.25rem 1.1rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--gray-900);
  color: #9ca3af;
  padding: 2rem 1rem 1.25rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: .75rem; }
.footer-col p, .footer-col a {
  font-size: .85rem;
  line-height: 1.7;
  color: #9ca3af;
  display: block;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  font-size: .8rem;
}

/* ---------- Floating Action Buttons ---------- */
.fab {
  position: fixed;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 200;
  display: none; /* hidden until scroll */
}
.fab:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,.28); }
.fab-phone   { bottom: 6.5rem; background: var(--orange); color: var(--white); }
.fab-wa      { bottom: 1.5rem; background: var(--green-wa); color: var(--white); }

/* ---------- Schema / SEO hidden breadcrumb ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---------- Input date placeholder fix ---------- */
input[type="date"]:required:invalid::-webkit-datetime-edit { color: transparent; }
input[type="date"]:focus::-webkit-datetime-edit { color: var(--gray-800) !important; }
