/* ============================================
   SHUKRI CONSTRUCTION — GLOBAL STYLES
   Palette: Charcoal #1E2228, Orange #F47B20, 
   Off-white #F5F5F3, Mid-gray #6B7280, Steel #2D3340
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --charcoal: #1E2228;
  --steel: #2D3340;
  --orange: #F47B20;
  --orange-dark: #D96A10;
  --off-white: #F5F5F3;
  --mid-gray: #6B7280;
  --light-gray: #E8E8E6;
  --white: #ffffff;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* ---- NAVIGATION ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--charcoal);
  border-bottom: 3px solid var(--orange);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s;
}

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  font-size: 15px !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--orange-dark); color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--off-white);
  transition: all 0.3s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--charcoal); }

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: var(--steel); transform: translateY(-1px); }

/* ---- SECTION STRUCTURE ---- */
.section { padding: 96px 40px; }
.section-sm { padding: 64px 40px; }

.container {
  max-width: 1160px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-title-white { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--mid-gray);
  max-width: 560px;
  line-height: 1.7;
}

.section-sub-white { color: rgba(255,255,255,0.72); }

/* ---- ORANGE DIVIDER ---- */
.divider {
  width: 56px; height: 4px;
  background: var(--orange);
  margin: 20px 0 32px;
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(244,123,32,0.04) 40px,
      rgba(244,123,32,0.04) 41px
    );
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(244,123,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--orange);
}

.hero-headline {
  font-size: clamp(52px, 8vw, 96px);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero-headline span { color: var(--orange); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ---- SERVICES ---- */
#services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  border-bottom-color: var(--orange);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.65;
}

.service-card-accent {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--orange);
  transition: height 0.3s;
}

.service-card:hover .service-card-accent { height: 100%; }

/* ---- WHY US ---- */
#why { background: var(--charcoal); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}

.why-points { display: flex; flex-direction: column; gap: 32px; }

.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-point-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  min-width: 48px;
}

.why-point h4 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px;
}

.why-point p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.why-visual {
  background: var(--steel);
  padding: 48px;
  position: relative;
}

.why-visual::before {
  content: '';
  position: absolute;
  top: -3px; left: -3px;
  right: 50%; bottom: 50%;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
}

.coverage-list { list-style: none; }

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

.coverage-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
  min-width: 20px;
}

.coverage-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* ---- ABOUT ---- */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  margin-top: 8px;
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 500;
}

.about-visual {
  background: var(--charcoal);
  padding: 56px 48px;
  position: relative;
}

.about-visual::after {
  content: '';
  position: absolute;
  bottom: -3px; right: -3px;
  left: 50%; top: 50%;
  border-bottom: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.about-stat {
  background: var(--steel);
  padding: 32px 28px;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.about-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ---- GALLERY ---- */
#gallery { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 56px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--steel);
  cursor: pointer;
}

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--charcoal);
  transition: background 0.3s;
}

.gallery-item:hover .gallery-placeholder { background: var(--steel); }

.gallery-icon { font-size: 40px; opacity: 0.4; }

.gallery-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244,123,32,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--mid-gray);
  font-style: italic;
}

/* ---- CONTACT ---- */
#contact { background: var(--charcoal); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 56px;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(244,123,32,0.15);
  border: 1px solid rgba(244,123,32,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

.contact-item-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value a:hover { color: var(--orange); }

/* ---- CONTACT FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group select option { background: var(--charcoal); }

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit { margin-top: 8px; }

.form-submit .btn { width: 100%; text-align: center; }

/* ---- CTA BANNER ---- */
#cta-banner {
  background: var(--orange);
  padding: 64px 40px;
  text-align: center;
}

#cta-banner h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 16px;
}

#cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

/* ---- FOOTER ---- */
footer {
  background: #13161A;
  padding: 48px 40px 28px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo img { height: 44px; }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-entity {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- MOBILE ---- */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--charcoal); padding: 24px; gap: 20px; border-bottom: 3px solid var(--orange); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .section, .section-sm { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 48px; }
  .about-stats-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
