/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0D47A1; --navy-light: #1565C0; --navy-mid: #1976D2;
  --gold: #c9a227; --gold-light: #e8c04a; --gold-pale: #f9f1dc;
  --white: #fff; --off-white: #f8f7f4; --text: #1a1a2e;
  --text-muted: #5a6275; --border: #e2ddd4;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --radius: 4px; --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(10,22,40,0.1);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
  --transition: 0.3s ease;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.bg-light { background: var(--off-white); }
.bg-dark { background: var(--navy); color: var(--white); }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-sub { color: rgba(255,255,255,0.7); }
.section-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-tag.gold { color: var(--gold-light); }
.section-title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 42px); font-weight: 600; line-height: 1.25; margin-bottom: 16px; color: #8B4513; }
.section-sub { max-width: 600px; margin: 0 auto; color: var(--text-muted); font-size: 17px; }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 32px; border-radius: var(--radius); font-size: 15px; font-weight: 600; letter-spacing: 0.5px; transition: var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* HEADER — WHITE BACKGROUND */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #ffffff; box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: background 0.4s, box-shadow 0.4s; }
.header.scrolled { background: #ffffff; box-shadow: 0 2px 16px rgba(0,0,0,0.12); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 70px; width: auto; }
.logo-icon { width: 40px; height: 40px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 14px; border-radius: 6px; display: flex; align-items: center; justify-content: center; letter-spacing: 1px; flex-shrink: 0; }
.logo-name { display: block; color: #0D47A1; font-weight: 600; font-size: 17px; line-height: 1.1; font-family: var(--font-serif); }
.logo-tag { display: block; color: var(--gold); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; gap: 30px; align-items: center; }
/* FIX — nav links dark blue on white header */
.nav-links a { color: #0D47A1; font-size: 14px; font-weight: 600; transition: color 0.2s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.25s; }
.nav-links a:hover { color: #8B4513; }
.nav-links a:hover::after { width: 100%; }
/* FIX — hamburger icon dark on white header */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: #0D47A1; border-radius: 2px; transition: all 0.3s ease; }

/* Animate hamburger to X when open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.2) 60%, rgba(10,22,40,0.1) 100%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,22,40,0.55) 50%, rgba(10,22,40,0.2) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge { display: inline-block; border: 1px solid var(--gold); color: var(--gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 16px; border-radius: 20px; margin-bottom: 24px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(38px, 6vw, 68px); color: var(--white); line-height: 1.12; font-weight: 700; margin-bottom: 24px; }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 480px; }
.hero-controls { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; align-items: center; gap: 16px; }
.hero-prev, .hero-next { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: var(--white); width: 40px; height: 40px; border-radius: 50%; font-size: 16px; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.hero-prev:hover, .hero-next:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); border: none; }
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-scroll { position: absolute; right: 40px; bottom: 40px; z-index: 3; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollLine 1.5s ease infinite; }

/* STATS */
.stats-bar { background: var(--gold); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 0 20px; }
.stat-item.has-border { border-right: 1px solid rgba(10,22,40,0.15); }
.stat-item strong { display: block; font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-item span { font-size: 13px; font-weight: 600; color: rgba(10,22,40,0.7); letter-spacing: 0.5px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--navy-light); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-accent { position: absolute; top: -20px; right: -20px; width: 80px; height: 80px; background: var(--gold); border-radius: 50%; z-index: -1; }
.about-quote { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(10,22,40,0.88); backdrop-filter: blur(8px); color: var(--white); padding: 20px 24px; border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; }
.about-quote p { font-family: var(--font-serif); font-size: 17px; font-style: italic; margin-bottom: 6px; }
.about-quote span { font-size: 12px; color: var(--gold); letter-spacing: 1px; }
.about-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 16px; }

/* BUSINESSES / PROJECTS */
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.biz-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; transition: var(--transition); position: relative; overflow: hidden; }
.biz-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.biz-card:hover::before { transform: scaleX(1); }
.biz-img { width: 100%; height: 180px; overflow: hidden; border-radius: var(--radius); margin-bottom: 16px; }
.biz-img img { width: 100%; height: 100%; object-fit: cover; }
.biz-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.biz-category { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.biz-name { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 12px; color: #8B4513; }
.biz-desc { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.biz-link { display: inline-block; margin-top: 16px; font-size: 13px; color: var(--gold); font-weight: 600; }
.biz-link:hover { color: var(--navy); }

/* MARQUEE */
.marquee-wrap { background: var(--navy); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 32px; white-space: nowrap; animation: marquee 28s linear infinite; width: max-content; }
.marquee-track span { color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 500; letter-spacing: 1px; }
.marquee-track .mdot { color: var(--gold); font-size: 10px; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; align-items: start; }
.team-card { text-align: center; }
.team-avatar { width: 140px; height: 140px; border-radius: 50%; background: var(--navy-light); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; color: var(--gold); font-family: var(--font-serif); border: 3px solid var(--gold); overflow: hidden; }; background: var(--navy-light); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; color: var(--gold); font-family: var(--font-serif); border: 3px solid var(--gold); overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-name { font-family: var(--font-serif); font-size: 18px; font-weight: 600; margin-bottom: 4px; color: #8B4513; }
.team-title { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--transition); }
.value-card:hover { background: rgba(201,162,39,0.08); border-color: rgba(201,162,39,0.3); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-serif); font-size: 20px; color: var(--gold-light); margin-bottom: 12px; }
.value-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ===== CONNECTIVITY — 3 COLUMN GRID ===== */
.conn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.conn-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 4px 24px rgba(10,22,40,0.1);
  transition: 0.3s ease;
}
.conn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(10,22,40,0.18);
}
.conn-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.conn-card:hover img {
  transform: scale(1.05);
}
.conn-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e85d2f;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* NEWS */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: var(--transition); }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-img { aspect-ratio: 16/9; background: var(--navy-light); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); font-size: 48px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 24px; }
.news-cat { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.news-title { font-family: var(--font-serif); font-size: 18px; font-weight: 600; margin-bottom: 10px; color: #8B4513; line-height: 1.35; }
.news-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.news-date { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.info-items { margin-top: 32px; }
.info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.info-icon { font-size: 24px; flex-shrink: 0; }
.info-item strong { font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.info-item p { color: var(--text-muted); font-size: 15px; }
.info-item a { color: var(--text-muted); transition: color 0.2s; }
.info-item a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); letter-spacing: 0.3px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-sans); font-size: 15px; color: var(--text); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg { padding: 12px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 20px; }
.form-msg.success { background: #eaf7ee; color: #1a7a35; border: 1px solid #c3e6cb; }
.form-msg.error { background: #fdf0ef; color: #c0392b; border: 1px solid #f5c6cb; }

/* FOOTER */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-img { height: 60px; margin-bottom: 16px; }
.footer-about { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes scrollLine { 0%,100% { opacity:.5; transform:scaleY(.7); } 50% { opacity:1; transform:scaleY(1); } }
.fade-in { opacity:0; transform:translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.nav-links.open { display: flex; }
.nav-toggle { display: flex; }
.nav-links a {
  font-size: 18px;
  font-weight: 600;
  color: #0D47A1;
  padding: 10px 40px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #f0ebe3;
}
.nav-links a:hover { color: #8B4513; background: #fdf8ec; }
  .hero-title { font-size:36px; }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:16px; }
  .stat-item { border-right:none; padding:8px 0; }
  .about-grid { grid-template-columns:1fr; gap:40px; }
  .biz-grid { grid-template-columns:1fr 1fr; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .news-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; gap:40px; }
  .form-row { grid-template-columns:1fr; }
  .hero-scroll { display:none; }
  .section { padding:64px 0; }
  .conn-grid { grid-template-columns: repeat(2, 1fr); }
  .conn-card { height: 180px; }
}
@media (max-width: 480px) {
  .biz-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .contact-form-wrap { padding:24px; }
  .conn-grid { grid-template-columns: 1fr; }
  .conn-card { height: 200px; }
}
/* ===== HEADER ACTIONS ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Social Icons */
.header-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.header-social.fb {
  background: #1877f2;
  color: white;
}
.header-social.fb:hover {
  background: #0d65d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24,119,242,0.4);
}
.header-social.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}
.header-social.ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220,39,67,0.4);
}

/* Call Button with pulse animation */
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #28a745;
  color: white;
  padding: 9px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  overflow: visible;
}
.header-call:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40,167,69,0.45);
  color: white;
}

/* Pulse ring animation */
.call-ring {
  position: absolute;
  inset: 0;
  border-radius: 25px;
  border: 2px solid #28a745;
  animation: callPulse 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes callPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Mobile — hide text, show icon only */
@media (max-width: 768px) {
  .header-call span.call-text { display: none; }
  .header-call {
    padding: 9px 12px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }
  .header-social {
    width: 32px;
    height: 32px;
  }
}
/* ===== POPUP SELECT DROPDOWN ===== */
.popup-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a2e;
  background: #fff;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s;
}
.popup-field select:focus {
  border-color: #C9A227;
}