/* A2GG — Clean Professional Static Site */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --navy: #1b2d5b;
  --navy-light: #243870;
  --gold: #b8933a;
  --gold-light: #d4aa55;
  --light-bg: #f7f8fc;
  --text: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(27,45,91,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo span {
  font-size: 1.3rem; font-weight: 700; color: var(--white); letter-spacing: 0.05em;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s; letter-spacing: 0.03em;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--white) !important;
  padding: 9px 20px; border-radius: 6px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile nav */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy-light); padding: 16px 24px;
}
.mobile-menu a {
  color: rgba(255,255,255,0.85); padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem; font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2a4080 100%);
  color: var(--white); padding: 100px 24px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.hero-inner { max-width: 800px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-block;
  background: rgba(184,147,58,0.2); border: 1px solid var(--gold);
  color: var(--gold-light); padding: 6px 18px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
  line-height: 1.2; margin-bottom: 20px;
}
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.8);
  max-width: 600px; margin: 0 auto 40px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--white);
  padding: 14px 32px; border-radius: 8px; font-weight: 600;
  font-size: 1rem; transition: all 0.2s; border: 2px solid var(--gold);
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 8px; font-weight: 600;
  font-size: 1rem; border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ── SECTIONS ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700;
  color: var(--navy); margin-bottom: 16px; line-height: 1.25;
}
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 580px; }
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ── STEPS ── */
.steps-section { background: var(--light-bg); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 56px;
}
.step {
  text-align: center; padding: 40px 28px;
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; margin: 0 auto 20px;
}
.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step p { color: var(--text-light); font-size: 0.95rem; }
.step-icon { font-size: 2rem; margin-bottom: 16px; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px;
}
.service-card {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 36px 28px; transition: all 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow); transform: translateY(-3px);
  border-color: var(--navy);
}
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--navy); color: var(--white); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px;
}
.testimonial {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 32px; position: relative;
}
.testimonial::before {
  content: '\201C'; font-size: 4rem; color: var(--gold);
  position: absolute; top: 12px; left: 24px; line-height: 1;
  font-family: 'Playfair Display', serif;
}
.testimonial p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-top: 24px; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
}
.testimonial-author-info strong { display: block; color: var(--white); font-size: 0.95rem; }
.testimonial-author-info span { color: var(--gold-light); font-size: 0.82rem; }

/* ── ABOUT PAGE ── */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white; padding: 80px 24px; text-align: center;
}
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

.about-content {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
}
.about-photo img {
  border-radius: 12px; width: 100%; box-shadow: var(--shadow);
}
.about-quote {
  background: var(--light-bg); border-left: 4px solid var(--gold);
  padding: 20px 24px; border-radius: 0 8px 8px 0;
  margin-bottom: 28px; font-style: italic;
  font-size: 1.05rem; color: var(--navy);
}
.about-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 20px; }

/* ── WHY US ── */
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 56px;
}
.why-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px; border: 1px solid var(--border); border-radius: 12px;
  transition: box-shadow 0.2s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon {
  width: 52px; height: 52px; min-width: 52px; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { color: var(--text-light); font-size: 0.93rem; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--navy); margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--light-bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-detail strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }
.contact-detail span { font-size: 1rem; color: var(--navy); font-weight: 500; }

.contact-form { background: var(--light-bg); border-radius: 16px; padding: 40px; }
.contact-form h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--text); background: var(--white); transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  width: 100%; background: var(--navy); color: white;
  padding: 14px; border: none; border-radius: 8px; font-size: 1rem;
  font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--navy-light); }

/* ── CONSULTATION PAGE ── */
.consult-steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin: 48px 0;
}
.consult-step {
  text-align: center; padding: 32px 20px;
  background: var(--light-bg); border-radius: 12px;
}
.consult-step .step-num { margin-bottom: 16px; }
.consult-step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.consult-step p { color: var(--text-light); font-size: 0.9rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white; padding: 64px 24px; text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 14px;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 56px 24px 32px; }
.footer-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px;
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: var(--gold-light); }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .steps-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .consult-steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 56px 20px; }
  .hero { padding: 72px 20px 56px; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
