/* =============================================
   להב הנדסה — Light Professional Design
   ============================================= */

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

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

:root {
  --navy:        #0D1F3C;
  --navy-mid:    #1A3560;
  --gold:        #B8860B;
  --gold-light:  #D4A017;
  --gold-bg:     #FEF9EE;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --light-gray:  #EEF2F7;
  --border:      #D8E2EF;
  --text:        #1A2B45;
  --text-mid:    #4A5F7A;
  --text-dim:    #7A90AA;
  --shadow-sm:   0 2px 8px rgba(13,31,60,0.08);
  --shadow-md:   0 8px 24px rgba(13,31,60,0.12);
  --shadow-lg:   0 20px 50px rgba(13,31,60,0.15);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --radius:      10px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Rubik', sans-serif;
  background: var(--white);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 3px; }

h1,h2,h3,h4 { font-weight: 700; line-height: 1.25; color: var(--navy); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.gold { color: var(--gold); }
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: block;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 3.5rem;
  max-width: 600px;
}
.section-sub.centered { margin-inline: auto; text-align: center; }
.text-center { text-align: center; }

/* ══════════ NAVBAR ══════════ */
#navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
#navbar.scrolled .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-logo-text { color: var(--navy); }
#navbar.scrolled .hamburger span { background: var(--navy); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img { width: 42px; height: 42px; }
.nav-logo-text { font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,0.95); }
.nav-logo-text .gold-txt { color: #F5C842; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; right: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all var(--transition) !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(184,134,11,0.35) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════ HERO — Dark Professional ══════════ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,18,36,0.92) 0%,
    rgba(13,31,60,0.82) 50%,
    rgba(13,31,60,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 0 3rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

/* Brand identity block */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.hero-brand img {
  width: 72px; height: 72px;
  filter: drop-shadow(0 4px 14px rgba(184,134,11,0.5));
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.hero-brand-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-brand-name .gold-txt { color: #F5C842; }
.hero-brand-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 720px;
}
.hero-title .accent { color: #F5C842; display: block; }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.hero-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.3rem 0.85rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  backdrop-filter: blur(4px);
}

/* Hero impact bullets */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: 3px solid #F5C842;
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  backdrop-filter: blur(4px);
}
.hero-bullet-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.hero-bullet strong {
  display: block;
  color: #F5C842;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.hero-bullet span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Rubik', sans-serif;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(184,134,11,0.4);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,0.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Rubik', sans-serif;
  border: 1.5px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Rubik', sans-serif;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── Stats Bar ── */
.hero-stats-bar { background: rgba(7,18,36,0.85); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 2rem;
}
.hero-stat {
  padding: 1.4rem 1.5rem;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-left: none; }
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #F5C842;
  line-height: 1;
  display: block;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }

/* ══════════ TRUST BAR ══════════ */
#trust-bar {
  background: var(--navy);
  padding: 1.4rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }
.trust-items { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { font-size: 0.85rem; color: rgba(255,255,255,0.75); font-weight: 500; display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; }
.trust-item::before { content: '✓'; color: #4ADE80; font-weight: 700; }

/* ══════════ ABOUT ══════════ */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-img-badge-icon { font-size: 1.8rem; }
.about-img-badge-num { font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.about-img-badge-label { font-size: 0.72rem; color: var(--text-dim); }

.about-text .section-title { text-align: right; }
.about-story { color: var(--text-mid); line-height: 1.85; margin-bottom: 1.2rem; }

.about-features { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.8rem 0; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border-radius: 8px;
  border-right: 3px solid var(--gold);
}
.about-feature-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.about-feature-text { font-size: 0.9rem; color: var(--text-mid); }

/* Profile */
.profile-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--navy);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
.profile-mini-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), #8B6914);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.profile-mini-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.profile-mini-title { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* ══════════ SERVICES ══════════ */
#services { background: var(--off-white); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.service-icon-wrap {
  width: 48px; height: 48px;
  background: var(--gold-bg);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.service-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.service-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; flex: 1; }
.service-features { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.service-features li { font-size: 0.82rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 0.5rem; }
.service-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ══════════ PROJECTS ══════════ */
#projects { background: var(--white); }
.projects-header { text-align: center; margin-bottom: 3.5rem; }

.project-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
  min-height: 380px;
}
.project-featured-img { position: relative; overflow: hidden; }
.project-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.project-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,31,60,0.15) 0%, transparent 100%);
}
.project-featured-label {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.project-featured-content {
  background: var(--navy);
  color: var(--white);
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-featured-eyebrow { font-size: 0.75rem; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem; }
.project-featured-name { font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 0.8rem; }
.project-featured-desc { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 2rem; }
.project-featured-stats { display: flex; gap: 2rem; }
.pf-stat-num { font-size: 2rem; font-weight: 800; color: #F5C842; line-height: 1; }
.pf-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }
.featured-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.featured-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 1.5rem; }
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all var(--transition);
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-card-img { height: 180px; overflow: hidden; position: relative; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-card-img img { transform: scale(1.06); }
.project-card-body { padding: 1.4rem; }
.project-client-badge {
  display: inline-block;
  background: var(--gold-bg);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.project-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.project-desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; }
.project-meta { display: flex; gap: 1rem; margin-top: 0.9rem; flex-wrap: wrap; align-items: center; }
.project-meta-item { font-size: 0.8rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.3rem; }
.project-budget { font-size: 1rem; font-weight: 700; color: var(--gold); }

/* ══════════ IMAGE BREAK ══════════ */
.image-break {
  height: 380px;
  position: relative;
  overflow: hidden;
}
.image-break img { width: 100%; height: 100%; object-fit: cover; }
.image-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,60,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-break-content { text-align: center; color: var(--white); padding: 2rem; }
.image-break-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 0.8rem; }
.image-break-content p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 1.8rem; }

/* ══════════ CLIENTS ══════════ */
#clients { background: var(--off-white); }
.clients-header { text-align: center; margin-bottom: 3rem; }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}
.client-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.client-chip:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.client-chip-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.client-chip-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); line-height: 1.35; }
.client-chip-type { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.25rem; }

/* ══════════ TESTIMONIALS ══════════ */
#testimonials { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 5rem;
  color: var(--gold-bg);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: #F5C842; font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; border-top: 1px solid var(--border); padding-top: 1.2rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #F5C842;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--navy); font-size: 0.88rem; }
.author-org { font-size: 0.75rem; color: var(--gold); }

/* ══════════ CREDENTIALS ══════════ */
#credentials { background: var(--off-white); }
.credentials-header { text-align: center; margin-bottom: 3.5rem; }
.creds-grid-main { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.cred-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all var(--transition);
}
.cred-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.cred-icon {
  width: 44px; height: 44px;
  background: var(--gold-bg);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.cred-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.cred-issuer { font-size: 0.76rem; color: var(--gold); margin: 0.15rem 0; font-weight: 500; }
.cred-valid { font-size: 0.74rem; color: var(--text-dim); }

/* ══════════ CONTACT ══════════ */
#contact { background: var(--white); }
.contact-header { text-align: center; margin-bottom: 3.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3.5rem; align-items: start; }

.contact-info-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-title { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.contact-info-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.contact-item-value { font-size: 0.92rem; color: var(--white); font-weight: 500; }
.contact-item-value a { transition: color var(--transition); }
.contact-item-value a:hover { color: #F5C842; }

.contact-quick {
  background: rgba(245,200,66,0.12);
  border: 1px solid rgba(245,200,66,0.25);
  border-radius: 8px;
  padding: 1rem 1.2rem;
}
.contact-quick-title { font-size: 0.8rem; font-weight: 600; color: #F5C842; margin-bottom: 0.4rem; }
.contact-quick-text { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.8rem; color: var(--text-mid); margin-bottom: 0.4rem; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Rubik', sans-serif;
  direction: rtl;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(184,134,11,0.08); }
.form-group textarea { height: 110px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-submit { width: 100%; padding: 0.9rem; font-size: 0.98rem; margin-top: 0.5rem; border-radius: 7px; }

.form-success { display: none; text-align: center; padding: 2rem; color: var(--gold); font-size: 1.05rem; }

/* ══════════ FOOTER ══════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { width: 38px; }
.footer-logo-text { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-col-title { font-size: 0.82rem; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-list a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links-list a:hover { color: #F5C842; }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact-list li { font-size: 0.85rem; color: rgba(255,255,255,0.55); display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-contact-list a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-list a:hover { color: #F5C842; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ══════════ SCROLL REVEAL ══════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem 1.5rem 1.5rem; }
  .hero-photo { display: none; }
  .hero-photo-frame img { height: 300px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap img { height: 340px; }
  .contact-grid { grid-template-columns: 1fr; }
  .project-featured { grid-template-columns: 1fr; }
  .project-featured-img { height: 280px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links {
    display: none;
    position: fixed; top: 0; right: 0; left: 0; bottom: 0;
    background: rgba(13,31,60,0.98);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 2.5rem; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: rgba(255,255,255,0.9) !important; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .hero-stat { padding: 0.8rem 0.5rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .contact-form { padding: 1.5rem; }
}
