/* ==========================================================
   Gulf International Contracting LLC — Main Stylesheet
   ========================================================== */

:root {
  --navy-950: #07111f;
  --navy-900: #0a1628;
  --navy-800: #101d33;
  --navy-700: #152540;
  --navy-600: #1a2e4d;
  --gold-500: #e8b735;
  --gold-400: #f5cc5c;
  --gold-600: #c99a2b;
  --white: #ffffff;
  --gray-200: #b8c2d6;
  --gray-400: #8b96ad;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-gold: 0 10px 30px rgba(232, 185, 63, 0.25);
  --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy-950);
  color: var(--gray-200);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  width: 98%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}

.section { padding: 80px 0; position: relative; }
.section-tag {
  color: var(--gold-500);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
  display: inline-block;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 { font-size: 40px; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 56px; height: 56px; border-radius: 50%;
  border: 4px solid rgba(232,185,63,0.2);
  border-top-color: var(--gold-500);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Top bar ---------- */
.top-bar { background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 13px; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; height: 40px; color: var(--gray-400); }
.top-bar-left span { margin-right: 22px; }
.top-bar-left i { color: var(--gold-500); margin-right: 6px; }
.top-bar-right a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; margin-left: 8px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  color: var(--gray-200); font-size: 11px;
  transition: var(--transition);
}
.top-bar-right a:hover { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(10, 18, 36, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.header-inner > * { flex-shrink: 0; }
.header-logo { display: none; }
.header-logo img { height: 48px; width: auto; }
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 32px; }
.main-nav > ul > li { position: relative; }
.main-nav a { font-weight: 500; font-size: 15px; color: var(--gray-200); padding: 8px 0; position: relative; transition: var(--transition); }
.main-nav > ul > li > a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold-500); transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-400); }
.main-nav > ul > li > a:hover::after, .main-nav > ul > li > a.active::after { width: 100%; }

.has-dropdown .dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 14px; min-width: 190px;
  background: var(--navy-800); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition); box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 8px 12px; border-radius: 6px; font-size: 14px; }
.dropdown li a:hover { background: rgba(232,185,63,0.1); color: var(--gold-400); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 14px;
  transition: var(--transition); position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--navy-950); box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(232,185,63,0.35); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.25); color: var(--white); }
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-400); }
.btn-outline-dark { border: 1.5px solid var(--navy-700); color: var(--navy-800); }
.full-width { width: 100%; }

.btn-ripple { position: relative; overflow: hidden; }
.ripple-effect {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,0.5);
  transform: scale(0); animation: ripple 0.6s ease-out; pointer-events: none;
}
@keyframes ripple { to { transform: scale(3); opacity: 0; } }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.hamburger span { height: 2px; width: 100%; background: var(--white); border-radius: 2px; transition: var(--transition); }

.back-to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950); font-size: 18px; box-shadow: var(--shadow-gold);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background-size: cover; background-position: center; padding: 80px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,11,22,0.95) 0%, rgba(6,11,22,0.85) 50%, rgba(6,11,22,0.7) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 600px; text-align: left; align-items: flex-start; margin-left: 0; padding-left: 75px; min-height: calc(100vh - 75px); display: flex; flex-direction: column; justify-content: center; }
.hero-logo { margin-bottom: 18px; }
.hero-logo img { width: 330px; height: auto; object-fit: contain; background: transparent; filter: brightness(1.3) contrast(1.1); }
.hero-text h1 { font-size: 48px; line-height: 1.18; color: var(--white); margin-bottom: 20px; font-weight: 800; max-width: 600px; white-space: normal; }
.hero-desc { max-width: 520px; color: var(--gray-200); margin-bottom: 40px; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }


/* ---------- Stats ---------- */
.stats-strip { background: #081327; padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.08); min-height: 215px; display: flex; align-items: center; }
.stats-row { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.stat-item { flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-icon { font-size: 17px; color: var(--white); margin-bottom: 16px; }
.stat-item .counter { font-size: 36px; font-weight: 800; color: #FFD23F; font-family: 'Rajdhani', sans-serif; line-height: 1; margin-bottom: 14px; }
.stat-item p { color: var(--white); font-size: 16px; font-weight: 500; margin: 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; }
.about-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-media:hover img { transform: scale(1.05); }
.play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80px; height: 80px; border-radius: 50%; background: rgba(232,185,63,0.95);
  display: flex; align-items: center; justify-content: center; color: var(--navy-950); font-size: 24px;
  box-shadow: 0 0 0 15px rgba(232,185,63,0.2); cursor: pointer; transition: var(--transition);
}
.play-badge:hover { transform: translate(-50%, -50%) scale(1.1); }
.about-content h2 { font-size: 42px; margin-bottom: 8px; }
.about-content h3 { color: var(--gold-400); font-size: 22px; font-weight: 600; margin-bottom: 20px; }
.about-content p { margin-bottom: 24px; font-size: 16px; line-height: 1.7; color: var(--gray-200); }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--gray-200); }
.about-list i { color: var(--gold-400); font-size: 14px; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.service-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md);
  padding: 24px 20px; transition: var(--transition); position: relative; overflow: hidden;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(6,11,22,0.6);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold-400);
}
.service-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--white); font-weight: 600; }
.service-card p { font-size: 14px; margin-bottom: 16px; line-height: 1.5; color: var(--gray-400); flex-grow: 1; }
.visa-badge {
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

/* ---------- Strengths ---------- */
.strengths-section { padding: 60px 0; background: var(--navy-900); }
.strengths-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.strength-card {
  min-height: 155px;
  padding: 24px 14px;
  background: #101c34;
  border: 1px solid rgba(120, 150, 190, 0.18);
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.strength-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 178, 46, 0.55);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}
.strength-icon {
  width: 20px;
  height: 20px;
  background: #d9a92d;
  color: #07111f;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 11px;
}
.strength-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}
.strength-card p {
  margin: 0;
  color: #9eb1d5;
  font-size: 13px;
  line-height: 1.45;
}

/* ---------- Leadership Team ---------- */
.leadership-section { background: var(--navy-950); }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.leadership-card {
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.leadership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.leadership-image-wrapper {
  position: relative;
  padding: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #14233d, #0a1427);
  border: 1px solid rgba(231, 180, 48, 0.28);
  border-radius: 18px 18px 0 0;
}
.leadership-image {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: contain;
  object-position: center;
  background: #0b162a;
  border-radius: 13px;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease;
}
.leadership-card:hover .leadership-image {
  transform: scale(1.02);
}
.leadership-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px 24px 30px;
}
.leadership-name {
  min-height: 32px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}
.leadership-position {
  width: 280px;
  max-width: 100%;
  min-height: 66px;
  margin: 0 0 20px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  border-radius: 999px;
  background: #f0b932;
  color: #07111f;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.leadership-description {
  margin: 0;
  color: #d1d9e8;
  font-size: 16px;
  line-height: 1.8;
}
.leadership-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.leadership-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8c2d6;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}
.leadership-contact a:hover {
  color: #e8b735;
}
.leadership-contact i {
  color: #e8b735;
  font-size: 14px;
}

/* ---------- Projects ---------- */
.project-filters { display: flex; justify-content: center; gap: 12px; margin-bottom: 45px; flex-wrap: wrap; }
.filter-btn {
  padding: 12px 28px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2);
  color: var(--gray-200); font-size: 15px; font-weight: 500; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold-500); color: var(--navy-950); border-color: var(--gold-500); }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.project-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.project-card.hidden-item { display: none; }
.project-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-img-wrap img { transform: scale(1.1); }
.project-overlay {
  position: absolute; inset: 0; background: rgba(6,11,22,0.6);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.zoom-icon { font-size: 28px; color: var(--gold-400); }
.project-info { padding: 22px; }
.project-info h4 { font-size: 18px; margin-bottom: 6px; }
.project-info span { font-size: 13px; color: var(--gold-400); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.project-info p { margin-top: 10px; font-size: 14px; color: var(--gray-200); }
.center-cta { text-align: center; margin-top: 50px; }

/* ---------- Process ---------- */
.process-track { display: flex; justify-content: space-between; align-items: flex-start; gap: 0; position: relative; padding: 20px 0; }
.process-track::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  border-style: dashed;
  border-width: 2px;
  border-image: linear-gradient(90deg, var(--gold-400), var(--gold-600)) 1;
  opacity: 0.5;
}
.process-step {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 1;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  border-radius: 50%; background: var(--gold-500); color: var(--navy-950); font-weight: 800; margin-bottom: 12px; font-size: 14px;
  position: relative;
  z-index: 2;
}
.step-content h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--white);
  font-weight: 700;
}
.step-content p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.4;
  margin: 0;
}

/* ---------- Testimonials & FAQ ---------- */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.testimonial-slider { position: relative; margin-top: 35px; background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); border-radius: var(--radius-lg); padding: 40px; border: 1px solid rgba(255,255,255,0.08); min-height: 240px; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.stars { color: var(--gold-500); font-size: 18px; margin-bottom: 18px; letter-spacing: 4px; }
.testimonial-slide p { font-size: 16px; margin-bottom: 24px; font-style: italic; line-height: 1.6; color: var(--gray-200); }
.testi-author { display: flex; align-items: center; gap: 16px; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px;
}
.testi-author strong { display: block; color: var(--white); font-size: 15px; }
.testi-author span { font-size: 13px; color: var(--gray-400); }
.slider-dots { position: absolute; bottom: 20px; right: 30px; display: flex; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--gold-500); width: 26px; border-radius: 6px; }

.faq-list { margin-top: 35px; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 26px; color: var(--white); font-weight: 500; font-size: 16px; text-align: left;
}
.faq-toggle { font-size: 24px; color: var(--gold-500); transition: var(--transition); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 250px; }
.faq-answer p { padding: 0 26px 24px; font-size: 15px; line-height: 1.6; color: var(--gray-200); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; }
.contact-form { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, select, textarea {
  width: 100%; background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 14px 16px; color: var(--white); font-family: inherit; font-size: 14px;
  transition: var(--transition);
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(232,185,63,0.15); }
.map-block { display: flex; flex-direction: column; gap: 20px; }
.map-placeholder {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center; padding: 30px;
}
.map-pin { font-size: 34px; color: var(--gold-400); }
.contact-details-list { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item { display: flex; gap: 14px; align-items: flex-start; background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 16px 18px; }
.contact-detail-item i { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--gold-400); }
.contact-detail-item strong { display: block; color: var(--white); font-size: 13px; margin-bottom: 3px; }
.contact-detail-item span { font-size: 13px; color: var(--gray-200); }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin: 16px 0; font-size: 14px; }
.alert-success { background: rgba(46, 204, 113, 0.12); border: 1px solid rgba(46,204,113,0.4); color: #6ee7a8; }
.alert-error { background: rgba(231, 76, 60, 0.12); border: 1px solid rgba(231,76,60,0.4); color: #ff9385; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800));
  padding: 90px 0 50px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-hero h1 { font-size: 42px; margin-bottom: 10px; }
.breadcrumb { color: var(--gray-400); font-size: 14px; }
.breadcrumb a { color: var(--gold-400); }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(135deg, var(--navy-900), var(--navy-950)); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr; gap: 35px; padding-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.footer-logo strong { display: block; color: var(--white); font-size: 16px; }
.footer-logo span { font-size: 12px; color: var(--gold-400); letter-spacing: 1px; }
.footer-brand p { font-size: 14px; margin-bottom: 22px; line-height: 1.6; color: var(--gray-200); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
  color: var(--gray-200);
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }
.footer-col h4 { font-size: 16px; margin-bottom: 22px; color: var(--white); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 14px; color: var(--gray-200); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-400); padding-left: 6px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-200); }
.footer-contact i { color: var(--gold-400); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 14px; color: var(--gray-200); }
.designed-by .heart { color: var(--gold-500); }

/* ---------- Fade Up Animation ---------- */
.fade-up { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Admin Preview Bits ---------- */
.hide-sm { display: inline; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .container { padding: 0 30px; }
  .hero-inner { grid-template-columns: 1fr; }
  .about-grid, .contact-grid, .two-col-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .strengths-grid { grid-template-columns: repeat(4, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { flex-wrap: wrap; }
  .process-step { flex: 1 1 50%; margin-bottom: 30px; }
  .process-track::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .top-bar { display: none; }
  .site-header { padding: 0; }
  .header-inner { height: 78px; }
  .header-logo { display: flex; align-items: center; }
  .header-logo img { height: 42px; }
  .main-nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--navy-900); padding: 100px 26px 26px; transition: right 0.4s ease; z-index: 600; }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 6px; }
  .has-dropdown .dropdown { position: static; opacity: 1; visibility: visible; transform: none; margin-top: 6px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .header-actions .btn-outline { display: none; }
  .header-actions .btn-primary { padding: 10px 18px; font-size: 13px; }
  .section { padding: 50px 0; }
  .hero { padding: 40px 0; min-height: auto; }
  .hero-inner { padding-left: 20px; padding-right: 20px; min-height: auto; justify-content: flex-start; padding-top: 30px; }
  .hero-text { text-align: left; }
  .hero-logo { display: flex; justify-content: flex-start; margin-bottom: 15px; }
  .hero-logo img { width: 180px; height: auto; }
  .hero-text h1 { font-size: 32px; }
  .hero-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid, .leadership-grid { grid-template-columns: 1fr; }
  .process-track { flex-direction: column; gap: 0; }
  .process-track::before {
    left: 15px;
    top: 0;
    bottom: 0;
    right: auto;
    width: 2px;
    height: auto;
  }
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
  }
  .process-step:last-child { margin-bottom: 0; }
  .step-num {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; }
  .hero-side-icons { display: none; }
  .about-list { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 0 40px; }
  .page-hero h1 { font-size: 32px; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .header-inner { height: 70px; }
  .header-logo img { height: 38px; }
  .header-actions .btn-primary { padding: 8px 14px; font-size: 12px; }
  .hamburger { width: 22px; }
  .hamburger span { height: 2px; }
  .hero { padding: 30px 0; }
  .hero-inner { padding-top: 20px; }
  .hero-logo img { width: 150px; height: auto; }
  .hero-text h1 { font-size: 26px; }
  .hero-text p { font-size: 14px; }
  .hero-cards { gap: 15px; }
  .hero-card { padding: 20px 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .strengths-grid { grid-template-columns: 1fr; }
  .stat-item { flex: 1 1 100%; }
  .stat-item p { font-size: 13px; }
  .leadership-image { height: 280px; }
  .leadership-position { width: 100%; max-width: 100%; }
  .section-head h2 { font-size: 28px; }
  .page-hero h1 { font-size: 26px; }
  .btn { padding: 12px 24px; font-size: 14px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ================= ADMIN SHARED (for style.css reuse on login) ================= */
.admin-login-body {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at top, var(--navy-800), var(--navy-950));
}
.admin-login-card {
  background: var(--navy-900); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  padding: 44px; width: 100%; max-width: 380px; text-align: center;
}
.admin-login-logo { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; }
.admin-login-card h2 { font-size: 22px; margin-bottom: 4px; }
.admin-login-sub { font-size: 13px; color: var(--gray-400); margin-bottom: 24px; }
.admin-login-card form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.admin-login-card label { font-size: 13px; color: var(--gray-300); }
.admin-login-hint { font-size: 12px; color: var(--gray-400); margin-top: 18px; }
.back-to-site { display: inline-block; margin-top: 14px; font-size: 13px; color: var(--gold-400); }
