/* ===== PCGT — Powercar General Transport ===== */
:root {
  --navy: #0d1b2a;
  --navy-2: #14273c;
  --steel: #1b3a57;
  --amber: #f5a623;
  --amber-dark: #d98a0b;
  --ink: #1a2432;
  --muted: #5b6b7d;
  --light: #f4f6f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(13, 27, 42, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container { width: min(1160px, 92%); margin: 0 auto; }

h1, h2, h3, .logo-mark {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.08;
  letter-spacing: 0.4px;
}

a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber-dark);
  margin-bottom: 0.6rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: var(--navy); box-shadow: 0 8px 20px rgba(245,166,35,0.35); }
.btn-primary:hover { background: var(--amber-dark); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.7rem; color: #fff; }
.logo-mark {
  font-size: 1.5rem; font-weight: 700; color: var(--amber);
  letter-spacing: 1px;
}
.logo-text { font-size: 0.82rem; color: #cdd7e2; font-weight: 500; }
.logo-img {
  height: 54px; width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
}
.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a { color: #dde5ee; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav a:hover { color: var(--amber); }
.nav-cta { background: var(--amber); color: var(--navy) !important; padding: 0.55rem 1.2rem; border-radius: 999px; font-weight: 600; }
.nav-cta:hover { background: var(--amber-dark); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background: linear-gradient(140deg, #05080e 0%, var(--navy) 45%, #3a2a12 100%);
  color: #fff;
  padding: 4rem 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 820px; }
.hero-truck img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0,0,0,0.55), 0 0 80px rgba(245,166,35,0.15);
}
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; margin-bottom: 1.2rem; }
.hero-sub { font-size: 1.15rem; color: #dce4ee; max-width: 640px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; color: var(--amber); }
.hero-stats span { font-size: 0.9rem; color: #b9c5d3; text-transform: uppercase; letter-spacing: 1px; }

/* ===== Sections ===== */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--navy); color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; margin-bottom: 0.8rem; }
.section-dark .section-head h2, .section-dark h2 { color: #fff; }
.section-lead { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-lead { color: #b9c5d3; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--amber); }
.card-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.45rem; margin-bottom: 0.6rem; color: var(--navy); }
.card p { color: var(--muted); font-size: 0.98rem; }

/* ===== CEO Message ===== */
.ceo-grid { display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 3rem; align-items: center; }
.ceo-portrait-frame {
  aspect-ratio: 1 / 1;
  background: linear-gradient(150deg, var(--navy), var(--steel));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem; font-weight: 700; color: var(--amber);
  box-shadow: var(--shadow);
}
.ceo-content blockquote {
  font-size: 1.2rem; font-style: italic; color: var(--ink);
  border-left: 4px solid var(--amber); padding-left: 1.3rem;
  margin: 1.2rem 0 1.5rem; line-height: 1.7;
}
.ceo-name { font-weight: 700; font-size: 1.1rem; color: var(--navy); }
.ceo-title { color: var(--muted); font-size: 0.92rem; }

/* ===== Cranes section background ===== */
#cranes {
  position: relative;
  background:
    linear-gradient(120deg, rgba(5,8,14,0.90) 15%, rgba(13,27,42,0.68) 100%),
    url('assets/hero-crane.jpg') center 35%/cover;
}
.uae-flag-badge {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  background: rgba(13,27,42,0.85);
  border: 1px solid rgba(245,166,35,0.4);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
}

/* ===== Capacity ===== */
.capacity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.capacity-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
}
.capacity-item strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; color: var(--amber); margin-bottom: 0.4rem; }
.capacity-item span { color: #c3cedb; font-size: 0.95rem; }

/* ===== Certifications ===== */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.cert-item {
  background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--amber);
  border-radius: var(--radius); padding: 2rem 1.4rem; text-align: center; box-shadow: var(--shadow);
}
.cert-item strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.9rem; color: var(--navy); margin-bottom: 0.4rem; }
.cert-item span { color: var(--muted); font-size: 0.92rem; }

/* ===== Industries ===== */
.industries { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.industries li {
  background: var(--light);
  border-left: 4px solid var(--amber);
  padding: 1.1rem 1.3rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--navy);
}

/* ===== Clients & Projects ===== */
.client-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.1rem; }
.client-tile {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.client-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--amber); }
.client-mark {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--amber);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.15rem; letter-spacing: 1px;
  border-radius: 10px;
}
.client-name { font-weight: 600; color: var(--navy); font-size: 0.98rem; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3.5rem; align-items: center; }
.about-grid h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
.about-grid p { color: var(--muted); margin-bottom: 1.1rem; }
.about-grid .btn { margin-top: 0.6rem; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.highlight { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.highlight strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 0.3rem; }
.highlight span { color: var(--muted); font-size: 0.9rem; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
.contact-list { list-style: none; margin: 1.8rem 0; display: grid; gap: 1.2rem; }
.contact-list li { display: flex; flex-direction: column; }
.contact-label { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1.5px; color: var(--amber); margin-bottom: 0.2rem; }
.contact-list a, .contact-list span:not(.contact-label) { color: #e6edf4; font-size: 1.1rem; font-weight: 500; }
.contact-list a:hover { color: var(--amber); }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); }
.contact-form label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 1.1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; margin-top: 0.4rem; padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 0.98rem; color: var(--ink);
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--amber); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: #08131f; color: #c3cedb; padding: 2.5rem 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-inner .logo-mark { font-size: 1.6rem; }
.footer-inner p { font-size: 0.9rem; margin-top: 0.3rem; }
.copyright { font-size: 0.85rem; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; gap: 0;
    padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav.open { max-height: 520px; padding: 0.5rem 0 1.2rem; }
  .nav a { width: 100%; padding: 0.9rem 6%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { margin: 0.6rem 6% 0; text-align: center; }
  .menu-toggle { display: flex; }
  .about-grid, .contact-grid, .ceo-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ceo-portrait-frame { max-width: 220px; margin: 0 auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-truck { order: -1; }
  .hero-truck img { max-width: 420px; margin: 0 auto; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.8rem; }
}
@media (max-width: 480px) {
  .logo-text { display: none; }
  .about-highlights { grid-template-columns: 1fr; }
}
