/* ============================================================
   BINA LLC — Website Stylesheet
   Colors: Teal #007C8A | Deep Teal #005F6B | Mint #3EB489
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ==============================
   RESET & BASE
   ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #007C8A;
  --secondary:  #005F6B;
  --accent:     #3EB489;
  --support:    #2A6EBB;
  --bg-teal:    #E0F4F6;
  --neutral:    #F4F7F9;
  --text:       #1A1A2E;
  --muted:      #5A6A7A;
  --white:      #ffffff;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
  --radius:     12px;
  --ease:       all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--support); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--primary); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--secondary);
}

/* ==============================
   UTILITIES
   ============================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg { padding: 16px 34px; font-size: 16px; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #33a076;
  border-color: #33a076;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(62,180,137,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--bg-teal);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ==============================
   HEADER / NAVIGATION
   ============================== */
header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}

.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.nav-logo .logo-tagline {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--ease);
}

/* Mobile nav open */
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }

  header.nav-open .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-top: 2px solid var(--neutral);
    gap: 0;
    z-index: 999;
  }
  header.nav-open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--neutral);
    font-size: 15px;
  }
  header.nav-open .nav-links a:last-child { border-bottom: none; }
  header.nav-open .nav-cta { display: flex; padding: 0 24px 20px; position: absolute; top: calc(100% + 220px); }
}

/* ==============================
   HERO
   ============================== */
.hero {
  background: linear-gradient(140deg, var(--secondary) 0%, var(--primary) 55%, #009aaa 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -80px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -60px;
  width: 400px; height: 400px;
  background: rgba(62,180,137,0.12);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 1; max-width: 740px; }

.hero-badge {
  display: inline-flex;
  align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
}
.hero h1 span { color: var(--accent); }

.hero-subtitle {
  font-size: 17px;
  opacity: 0.88;
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.75;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.hero-stat {}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 700;
  color: var(--accent); line-height: 1;
}
.stat-label { font-size: 13px; opacity: 0.75; margin-top: 4px; }

/* ==============================
   TRUST BAR
   ============================== */
.trust-bar { background: var(--secondary); padding: 26px 0; }
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 13px; font-weight: 500;
}
.trust-item i { font-size: 20px; color: var(--accent); }
.trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.18); }

/* ==============================
   SERVICES SECTION
   ============================== */
.services { background: var(--neutral); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--ease);
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--accent);
}
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 52px; height: 52px;
  background: var(--bg-teal);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon i { font-size: 22px; color: var(--primary); }

.service-card h3 { font-size: 17px; color: var(--secondary); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }

.service-link {
  font-size: 13px; font-weight: 600;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--ease);
}
.service-link:hover { color: var(--accent); gap: 10px; }

/* ==============================
   ABOUT TEASER
   ============================== */
.about-teaser { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--bg-teal) 0%, var(--primary) 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 90px; color: rgba(255,255,255,0.5);
  overflow: hidden;
}
.about-badge {
  position: absolute; bottom: 28px; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 700; color: var(--primary); line-height: 1;
}
.badge-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

.about-content .lead-text { font-size: 17px; color: var(--muted); margin-bottom: 14px; line-height: 1.75; }
.certs { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 28px; }
.cert-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-teal); color: var(--primary);
  padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials { background: var(--bg-teal); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); position: relative;
  transition: var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 88px; color: var(--bg-teal);
  position: absolute; top: 8px; left: 18px; line-height: 1;
  pointer-events: none;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars i { color: #F59E0B; font-size: 14px; }
.testimonial-text {
  font-size: 14px; color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 24px; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.author-avatar {
  width: 46px; height: 46px;
  background: var(--bg-teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 18px; flex-shrink: 0;
}
.author-name { font-weight: 600; color: var(--text); font-size: 14px; }
.author-title { font-size: 12px; color: var(--muted); }

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -120px; left: -120px;
  width: 400px; height: 400px;
  background: rgba(62,180,137,0.1); border-radius: 50%;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.04); border-radius: 50%;
}
.cta-section h2 { color: var(--white); font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 17px; max-width: 560px; margin: 0 auto 36px; line-height: 1.7; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ==============================
   FOOTER
   ============================== */
footer { background: var(--text); color: rgba(255,255,255,0.65); padding: 60px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--white); margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 270px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px;
  transition: var(--ease);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: var(--ease); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 12px;
}
.footer-contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; flex-wrap: wrap; gap: 10px;
}

/* ==============================
   PAGE HERO (inner pages)
   ============================== */
.page-hero {
  background: linear-gradient(140deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 65px 0; color: var(--white);
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 46px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 17px; max-width: 600px; line-height: 1.7; }
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 10px; }

/* ==============================
   ABOUT PAGE
   ============================== */
.bio-section { background: var(--white); }
.bio-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; align-items: start; }
.bio-image {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--bg-teal), var(--primary));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 90px; color: rgba(255,255,255,0.5);
}
.bio-content h2 { font-size: 36px; margin-bottom: 8px; }
.bio-title { font-size: 16px; font-weight: 600; color: var(--accent); margin-bottom: 20px; }
.bio-text { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }

.certs-section { background: var(--neutral); }
.certs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.cert-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); text-align: center; transition: var(--ease);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cert-icon {
  width: 72px; height: 72px;
  background: var(--bg-teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.cert-icon i { font-size: 30px; color: var(--primary); }
.cert-card h3 { font-size: 20px; margin-bottom: 8px; }
.cert-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.mission-section { background: var(--white); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mission-card {
  border-radius: var(--radius); padding: 36px;
  position: relative; overflow: hidden;
}
.mission-card.mission { background: var(--secondary); color: var(--white); }
.mission-card.vision { background: var(--bg-teal); }
.mission-card h3 { font-size: 24px; margin-bottom: 16px; }
.mission-card.mission h3 { color: var(--white); }
.mission-card.mission p { color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.75; }
.mission-card.vision h3 { color: var(--secondary); }
.mission-card.vision p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.mission-card .card-icon { font-size: 48px; margin-bottom: 20px; }
.mission-card.mission .card-icon { color: var(--accent); }
.mission-card.vision .card-icon { color: var(--primary); }

.values-section { background: var(--neutral); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.value-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); text-align: center; transition: var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 60px; height: 60px; background: var(--bg-teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.value-icon i { font-size: 24px; color: var(--primary); }
.value-card h3 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Timeline */
.timeline-section { background: var(--white); }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--bg-teal); transform: translateX(-50%);
}
.timeline-item { display: flex; gap: 40px; margin-bottom: 48px; position: relative; align-items: flex-start; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  width: calc(50% - 40px);
  background: var(--white); border-radius: var(--radius);
  padding: 22px 26px; box-shadow: var(--shadow);
  transition: var(--ease);
}
.timeline-content:hover { box-shadow: var(--shadow-lg); }
.timeline-dot {
  position: absolute; left: 50%; top: 18px;
  width: 16px; height: 16px;
  background: var(--accent); border-radius: 50%;
  transform: translateX(-50%);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent); z-index: 1;
}
.timeline-year { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--accent); margin-bottom: 6px; text-transform: uppercase; }
.timeline-content h4 { font-size: 16px; margin-bottom: 6px; }
.timeline-content p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ==============================
   SERVICES PAGE
   ============================== */
.service-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--neutral);
}
.service-section:last-child { border-bottom: none; }
.service-section:nth-child(even) { background: var(--neutral); }

.service-section-header {
  display: flex; align-items: center; gap: 20px; margin-bottom: 36px;
}
.service-section-icon {
  width: 64px; height: 64px;
  background: var(--bg-teal); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-section-icon i { font-size: 28px; color: var(--primary); }
.service-section-header h2 { font-size: 30px; color: var(--secondary); }

.service-body-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 52px; align-items: start; }

.service-desc { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }

.target-box {
  background: var(--bg-teal); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 24px;
}
.target-box h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.target-box p { font-size: 14px; color: var(--secondary); line-height: 1.6; }

.deliverables-box { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.deliverables-box h4 { font-size: 14px; font-weight: 700; color: var(--secondary); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.deliverables-list { display: flex; flex-direction: column; gap: 10px; }
.deliverables-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.deliverables-list li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

.faq-box { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.faq-box h4 { font-size: 14px; font-weight: 700; color: var(--secondary); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.faq-item { border: 1px solid #e8ecef; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-question {
  background: none; border: none; width: 100%;
  text-align: left; padding: 14px 18px;
  font-size: 14px; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif; transition: var(--ease); gap: 12px;
}
.faq-question:hover { background: var(--neutral); color: var(--primary); }
.faq-question i { color: var(--primary); transition: var(--ease); flex-shrink: 0; font-size: 14px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; font-size: 13px; color: var(--muted); line-height: 1.7; }
.faq-answer.open { max-height: 250px; padding: 0 18px 14px; }
.faq-question.active { color: var(--primary); }
.faq-question.active i { transform: rotate(45deg); }

.service-cta-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-section { background: var(--neutral); }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }

.contact-info-card {
  background: var(--secondary); color: var(--white); border-radius: 20px; padding: 40px;
  position: sticky; top: 110px;
}
.contact-info-card h3 { color: var(--white); font-size: 24px; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 32px; line-height: 1.6; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.ci-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon i { color: var(--accent); font-size: 17px; }
.ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.ci-value { font-size: 14px; font-weight: 500; color: var(--white); }

.contact-form-card {
  background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow);
}
.contact-form-card h3 { font-size: 26px; margin-bottom: 8px; }
.contact-form-card > p { color: var(--muted); font-size: 14px; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 15px;
  border: 2px solid #e5eaef; border-radius: 8px;
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text);
  transition: var(--ease); background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,124,138,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { cursor: pointer; }

.map-placeholder {
  margin-top: 40px; height: 280px;
  background: linear-gradient(135deg, var(--bg-teal), #c5e8ed);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 14px; font-weight: 500; gap: 10px;
  flex-direction: column;
}
.map-placeholder i { font-size: 36px; opacity: 0.6; }

/* ==============================
   HERO BACKGROUND IMAGE
   ============================== */
.hero { position: relative; }
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg-image img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.12; filter: saturate(0.6);
}
.hero .container { position: relative; z-index: 1; }

/* ==============================
   IMAGE STRIP (between services & about)
   ============================== */
.img-strip { background: var(--secondary); }
.img-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
}
.img-strip-item { position: relative; overflow: hidden; }
.img-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(0.85) brightness(0.88);
}
.img-strip-item:hover img { transform: scale(1.06); filter: saturate(1) brightness(0.95); }
.img-strip-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,95,107,0.85));
  padding: 28px 18px 14px;
}
.img-strip-overlay span {
  color: #fff; font-size: 13px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
}

/* ==============================
   SERVICE PAGE PHOTOS
   ============================== */
.service-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
  height: 240px;
}
.service-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-photo:hover img { transform: scale(1.04); }

/* Service sections — reorder grid so photo is on the right for even services */
#operations .service-body-grid,
#participant .service-body-grid,
#safety .service-body-grid {
  direction: rtl;
}
#operations .service-body-grid > div,
#participant .service-body-grid > div,
#safety .service-body-grid > div {
  direction: ltr;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .bio-grid { gap: 40px; }
  .service-body-grid { grid-template-columns: 1fr; gap: 32px; }
  .img-strip-grid { grid-template-columns: repeat(2, 1fr); height: 320px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 56px 0; }
  .hero { padding: 60px 0 50px; }
  .hero-stats { gap: 28px; }
  .trust-divider { display: none; }
  .trust-items { gap: 20px; }
  .about-grid, .bio-grid, .mission-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline::before { left: 16px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; padding-left: 44px; }
  .timeline-content { width: 100%; }
  .timeline-dot { left: 16px; }
  .img-strip-grid { grid-template-columns: repeat(2, 1fr); height: 280px; }
  #operations .service-body-grid,
  #participant .service-body-grid,
  #safety .service-body-grid { direction: ltr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .img-strip-grid { grid-template-columns: 1fr 1fr; height: 220px; }
  .img-strip-overlay span { font-size: 11px; }
}
