/* ================================================
   ALJOOD BUSINESS SOLUTIONS — MAIN STYLESHEET
   Kyndryl-inspired minimal dark enterprise design
   ================================================ */

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

:root {
  --black:         #000000;
  --dark:          #0a0a0f;
  --dark-2:        #0f0f14;
  --dark-3:        #141419;
  --white:         #ffffff;
  --off-white:     #fafafa;
  --border-dark:   rgba(255,255,255,0.07);
  --border-light:  #e2e2e2;
  --text-primary:  #0f0f0f;
  --text-muted:    #666;
  --text-subtle:   rgba(255,255,255,0.4);
  --crimson:       #c0392b;
  --crimson-hover: #e74c3c;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1280px;
  --pad: 0 48px;
  --transition: all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 21px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { color: var(--text-primary); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: var(--pad); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,8,12,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.6); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { text-decoration: none; line-height: 1; }
.nav-logo-main { display: block; font-size: 17px; font-weight: 800; color: #fff; letter-spacing: 0.1em; }
.nav-logo-sub  { display: block; font-size: 8px; font-weight: 400; color: rgba(255,255,255,0.3); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; font-weight: 400; letter-spacing: 0.01em; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { background: #fff !important; color: #000 !important; padding: 8px 20px; border-radius: 2px; font-weight: 600 !important; font-size: 13px !important; }
.nav-cta:hover { background: rgba(255,255,255,0.85) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { width: 24px; height: 2px; background: #fff; transition: var(--transition); display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 15px 34px; font-family: var(--font);
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  text-decoration: none; border-radius: 2px; transition: var(--transition);
  cursor: pointer; border: none; line-height: 1;
}
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: rgba(255,255,255,0.88); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.28); }
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
.btn-dark  { background: #000; color: #fff; }
.btn-dark:hover { background: #222; }
.btn-full { width: 100%; text-align: center; display: block; }

/* ===== LABELS + DIVIDERS ===== */
.section-label {
  display: inline-block; font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px;
  opacity: 0.45;
}
.label-light { color: var(--text-primary); }
.label-dark  { color: #fff; }
.divider { width: 36px; height: 2px; background: var(--crimson); margin-bottom: 32px; }
.divider-c { margin: 0 auto 32px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: url('/hero-bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(4,4,8,0.97) 0%,
    rgba(4,4,8,0.72) 45%,
    rgba(4,4,8,0.2) 100%
  );
  pointer-events: none;
}
.hero-container { position: relative; z-index: 1; width: 100%; }
.hero-content { max-width: 860px; padding: 0 0 100px; }
.hero h1 {
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 900;
  color: #fff;
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
}
.hero h1 em { font-style: normal; color: rgba(255,255,255,0.35); }
.hero-sub {
  font-size: 21px;
  color: rgba(255,255,255,0.48);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.72;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== PAGE HERO — COMPACT ===== */
.page-hero { background: var(--dark); padding: 152px 0 96px; }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 64px); font-weight: 900; color: #fff;
  line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 24px; max-width: 700px;
}
.page-hero-intro { font-size: 21px; color: rgba(255,255,255,0.42); max-width: 620px; line-height: 1.75; margin-top: 8px; font-weight: 300; }

/* ===== SECTIONS ===== */
.section       { padding: 120px 0; }
.section-light { background: #fff; }
.section-cream { background: #f7f7f7; }
.section-dark  { background: var(--dark); }
.section-navy  { background: var(--dark-2); }

/* ===== CARDS ===== */
.card { background: #fff; border: 1px solid #eaeaea; border-radius: 0; padding: 52px 44px; transition: border-color 0.25s; }
.card:hover { border-color: #aaa; }
.card-number { font-size: 10.5px; font-weight: 400; letter-spacing: 0.18em; color: #bbb; margin-bottom: 24px; }
.card h3 { font-size: 22px; font-weight: 700; margin-bottom: 18px; color: #000; letter-spacing: -0.015em; }
.card p { font-size: 21px; line-height: 1.82; color: #666; font-weight: 300; }

/* ===== GRIDS ===== */
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2px; }

/* ===== HOME — WHAT WE DO ===== */
.intro-text { font-size: 21px; line-height: 1.8; color: #666; max-width: 760px; margin-bottom: 64px; font-weight: 300; }

/* ===== HOME — WHY ALJOOD ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.why-headline { font-size: clamp(30px, 4vw, 52px); font-weight: 900; color: #fff; line-height: 1.04; letter-spacing: -0.03em; }
.why-body { font-size: 21px; color: rgba(255,255,255,0.4); line-height: 1.8; font-weight: 300; margin-top: 8px; }

/* ===== HOME — ALLIANCES STRIP ===== */
.strip { background: var(--dark); padding: 96px 0; border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.strip-text p { font-size: 21px; color: rgba(255,255,255,0.38); max-width: 600px; line-height: 1.75; margin-top: 14px; font-weight: 300; }

/* ===== HOME — CLOSING CTA ===== */
.closing { background: #fff; padding: 140px 0; text-align: center; }
.closing h2 { font-size: clamp(30px, 4.5vw, 60px); font-weight: 900; color: #000; max-width: 720px; margin: 0 auto 48px; line-height: 1.04; letter-spacing: -0.03em; }

/* ===== SOLUTIONS ===== */
.solution-block { padding: 96px 0; }
.solution-block:nth-child(odd) { background: #fff; }
.solution-block:nth-child(even) { background: #f7f7f7; }
.solution-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: start; margin-top: 48px; }
.solution-h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; color: #000; line-height: 1.1; margin-bottom: 8px; letter-spacing: -0.02em; }
.solution-body p { font-size: 21px; color: #666; line-height: 1.82; margin-bottom: 16px; font-weight: 300; }
.covers-label { font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #aaa; margin-bottom: 18px; display: block; }
.covers-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.covers-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 21px; color: #555; line-height: 1.7; font-weight: 300; }
.covers-list li::before { content: ''; width: 6px; height: 6px; background: var(--crimson); border-radius: 50%; margin-top: 10px; flex-shrink: 0; }
.closing-strip { background: var(--dark-2); padding: 80px 0; }
.closing-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.closing-strip p { font-size: 21px; font-weight: 400; color: #fff; max-width: 560px; line-height: 1.55; }

/* ===== ALLIANCES ===== */
.domains-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.domain-featured { grid-column: 1 / -1; background: var(--dark-2); border: 1px solid var(--border-dark); padding: 52px 44px; }
.domain-featured h3 { color: #fff; font-size: 24px; margin-bottom: 14px; }
.domain-featured p { color: rgba(255,255,255,0.4); font-size: 21px; line-height: 1.8; font-weight: 300; }
.domain-icon { font-size: 28px; margin-bottom: 20px; opacity: 0.8; }
.domain-card { background: #fff; border: 1px solid #eaeaea; padding: 40px 36px; }
.domain-card h3 { font-size: 21px; font-weight: 700; color: #000; margin-bottom: 12px; letter-spacing: -0.01em; }
.domain-card p { font-size: 21px; color: #666; line-height: 1.8; font-weight: 300; }
.vendors-section { background: var(--dark); padding: 100px 0; }
.vendors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vendors-h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 22px; letter-spacing: -0.02em; }
.vendors-body { font-size: 21px; color: rgba(255,255,255,0.4); line-height: 1.82; margin-bottom: 36px; font-weight: 300; }

/* ===== ABOUT ===== */
.about-body { font-size: 21px; color: #555; line-height: 1.82; max-width: 760px; font-weight: 300; }
.about-body p { margin-bottom: 18px; }
.pull-quote { border-left: 2px solid var(--crimson); padding: 6px 0 6px 32px; margin: 48px 0 0; }
.pull-quote p { font-size: 24px; font-weight: 700; font-style: italic; color: #000; line-height: 1.4; letter-spacing: -0.01em; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 16px; }
.mv-dark { background: var(--dark-2); padding: 52px 44px; }
.mv-light { background: #fff; border: 1px solid #eaeaea; padding: 52px 44px; }
.mv-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; display: block; opacity: 0.4; }
.mv-dark .mv-tag { color: #fff; }
.mv-light .mv-tag { color: #000; }
.mv-quote { font-size: 22px; font-weight: 700; line-height: 1.38; margin-bottom: 22px; letter-spacing: -0.01em; }
.mv-dark .mv-quote { color: #fff; }
.mv-light .mv-quote { color: #000; }
.mv-text { font-size: 21px; line-height: 1.82; font-weight: 300; }
.mv-dark .mv-text { color: rgba(255,255,255,0.4); }
.mv-light .mv-text { color: #666; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.value-item { background: #fff; border: 1px solid #eaeaea; padding: 40px 32px; }
.value-bar { width: 32px; height: 2px; background: var(--crimson); margin-bottom: 22px; }
.value-item h4 { font-size: 18px; font-weight: 700; color: #000; margin-bottom: 12px; }
.value-item p { font-size: 21px; color: #666; line-height: 1.75; font-weight: 300; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-detail { margin-bottom: 22px; }
.contact-label { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: #aaa; display: block; margin-bottom: 5px; }
.contact-value { font-size: 21px; color: #444; font-weight: 300; }
.contact-hours { margin-top: 36px; padding-top: 28px; border-top: 1px solid #eee; }
.contact-hours h4 { font-size: 10.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: #aaa; margin-bottom: 8px; }
.contact-closing { margin-top: 48px; padding-top: 32px; border-top: 1px solid #eee; font-size: 21px; color: #888; font-style: italic; line-height: 1.65; font-weight: 300; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #aaa; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; font-family: var(--font); font-size: 21px; font-weight: 300;
  color: #000; background: #fff; border: 1px solid #e0e0e0;
  border-radius: 0; outline: none; transition: var(--transition); -webkit-appearance: none; appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #000; }
.form-group textarea { resize: vertical; min-height: 128px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; background: #f0faf0; border: 1px solid #86c986; padding: 18px 22px; color: #2a5e2a; font-size: 21px; margin-top: 16px; font-weight: 300; }

/* ===== FOOTER ===== */
.footer { background: #070709; padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; margin-bottom: 60px; }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.3); line-height: 1.75; max-width: 280px; margin-top: 18px; font-weight: 300; }
.footer-col h4 { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 15px; color: rgba(255,255,255,0.35); text-decoration: none; transition: var(--transition); font-weight: 300; }
.footer-links a:hover { color: #fff; }
.f-detail { margin-bottom: 14px; }
.f-label { font-size: 9.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.2); display: block; margin-bottom: 3px; }
.f-value { font-size: 14px; color: rgba(255,255,255,0.35); font-weight: 300; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); font-weight: 300; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .why-grid, .solution-layout, .contact-layout, .vendors-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: rgba(8,8,12,0.98);
    padding: 24px 24px 32px; gap: 20px;
    border-top: 1px solid var(--border-dark);
  }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .mv-grid, .domains-grid, .values-grid { grid-template-columns: 1fr; }
  .domain-featured { grid-column: auto; }
  .strip-inner, .closing-strip-inner { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-content { padding: 0 0 72px; }
  .hero-sub { font-size: 18px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .card { padding: 36px 24px; }
  .mv-dark, .mv-light { padding: 36px 28px; }
}
