/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #333; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0A1628;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --gold-dark: #a8872e;
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--navy);
  z-index: 1000;
  padding: 0 20px;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links li a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--gold); }

/* ===== NAV DROPDOWN ===== */
.nav-links li.has-dropdown { position: relative; }
.nav-links li.has-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.75; vertical-align: middle; }
.nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  min-width: 230px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  z-index: 1001;
  flex-direction: column;
  padding: 0.4rem 0;
}
.nav-links li.has-dropdown:hover > .dropdown,
.nav-links li.has-dropdown:focus-within > .dropdown { display: flex; }
.nav-links .dropdown li a {
  display: block;
  padding: 0.55rem 1.25rem;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-links .dropdown li a:hover { background: rgba(201,168,76,0.12); color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 12px 28px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--gold); color: var(--navy); }

/* ===== HERO ===== */
.hero {
  min-height: 80vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}
.hero-content { max-width: 800px; }
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--gold);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  color: var(--navy);
  flex-wrap: wrap;
  gap: 2rem;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; }
.stat-label { font-size: 0.95rem; font-weight: 600; margin-top: 0.25rem; }

/* ===== SECTIONS ===== */
.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 80px 20px; }
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: #555;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: var(--gold); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.card p { color: #555; line-height: 1.7; }

/* ===== LINK ARROW ===== */
.link-arrow {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--gold-dark); }

/* ===== HIGHLIGHT SECTION ===== */
.highlight-section { background: var(--navy); color: var(--white); padding: 80px 20px; }
.highlight-section .section { max-width: 1200px; margin: 0 auto; }

/* ===== TWO COL SECTION ===== */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col-text h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  color: var(--navy);
  margin: 1rem 0;
  line-height: 1.3;
}
.two-col-text p { color: #555; margin-bottom: 1.5rem; line-height: 1.7; }

/* ===== TAG ===== */
.tag {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gold);
  text-align: center;
  padding: 60px 20px;
  color: #fff;
}
.cta-banner h2 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-banner p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: var(--white); padding: 60px 20px 0; }
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col p { margin-bottom: 0.6rem; opacity: 0.8; }
.footer a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 3rem;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { opacity: 0.7; font-size: 0.9rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--white); }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid #e5e7eb; padding: 0; }
.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--gold); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { display: none; padding-bottom: 1.2rem; color: #555; line-height: 1.7; font-size: 0.95rem; }
.faq-item.open .faq-answer { display: block; }

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: transparent;
  transition: background 0.3s;
}
.portfolio-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); border-color: var(--gold); }
.portfolio-card:hover::before { background: var(--gold); }
.portfolio-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* ===== TIMELINE ===== */
.timeline { list-style: none; display: flex; flex-direction: column; gap: 2rem; }
.timeline-item { display: flex; gap: 2rem; align-items: flex-start; }
.timeline-num {
  background: var(--gold);
  color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.timeline-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* ===== VALUE CARDS ===== */
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ===== TRUST LIST ===== */
.trust-list { list-style: none; }
.trust-list li { line-height: 2; }
.trust-list li::before { content: "✅ "; }

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SERVICE DETAIL SECTION ===== */
.service-section {
  padding: 60px 0;
  border-bottom: 1px solid #f0f0f0;
}
.service-section:last-child { border-bottom: none; }

/* ===== CONTACT INFO ===== */
.contact-info h3 {
  font-family: 'Syne', sans-serif;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-info-item h4 { font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.contact-info-item p { color: #555; }
.contact-info-item a { color: var(--gold); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links .dropdown { display: none !important; }
  .nav-links li.has-dropdown > a::after { content: '' !important; }
  .hero h1 { font-size: 2rem; }
  .card-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .two-col-section { grid-template-columns: 1fr; gap: 2rem; }
  .value-cards { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar { flex-direction: column; gap: 1.5rem; }
}

/* Force 4-col grids to stack on mobile */
@media (max-width: 900px) {
  .card-grid[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .card-grid[style*="repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}
