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

:root {
  --navy:  #0f2140;
  --navy2: #1a3560;
  --gold:  #c9952a;
  --gold2: #e8b84b;
  --white: #ffffff;
  --light: #f4f6fa;
  --gray:  #6b7280;
  --text:  #1f2937;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

.btn-gold  { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold2); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-navy  { background: var(--navy); color: var(--white); }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 88px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo span:first-child {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.3px;
}
.nav-logo span:last-child {
  font-size: 0.72rem;
  color: var(--gold2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-logo-img {
  height: 68px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold2);
  background: rgba(255,255,255,0.07);
}
.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--white);
  padding: 8px 18px;
  font-weight: 700;
}
.nav-links .nav-cta a:hover { background: var(--gold2); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0d3b6e 100%);
  color: var(--white);
  padding: 90px 20px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201,149,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,149,42,0.2);
  border: 1px solid rgba(201,149,42,0.4);
  color: var(--gold2);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold2);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 32px;
}

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

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-photo {
  width: 260px;
  height: 310px;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid rgba(201,149,42,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  flex-shrink: 0;
  background: var(--navy2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
}
.hero-photo-placeholder svg { opacity: 0.3; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gold);
  color: var(--white);
  padding: 14px 20px;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 20px; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-navy .section-label { color: var(--gold2); }
.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
}
.section-header p {
  margin-top: 12px;
  color: var(--gray);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-navy .section-header p { color: rgba(255,255,255,0.7); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,149,42,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p  { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-item { text-align: center; }
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.why-item h3 { font-weight: 700; margin-bottom: 8px; color: var(--white); }
.why-item p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; }
.review-text { font-size: 0.95rem; color: var(--gray); font-style: italic; margin-bottom: 18px; line-height: 1.7; }
.reviewer { font-weight: 700; font-size: 0.88rem; }
.reviewer span { font-weight: 400; color: var(--gray); }

/* ===== AREA ===== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.cities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.city-tag {
  background: rgba(201,149,42,0.12);
  border: 1px solid rgba(201,149,42,0.3);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px;
  background: #dde;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.phone-big {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold2);
  display: block;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.phone-big a { color: inherit; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(201,149,42,0.13);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-weight: 700; margin-bottom: 3px; }
.contact-detail-text span { color: var(--gray); font-size: 0.9rem; }

form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--white);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,149,42,0.12);
}
textarea { resize: vertical; min-height: 120px; }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.about-photo {
  width: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--light);
  height: 340px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
}
.credentials { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.cred-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  border-left: 4px solid var(--gold);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: #080f1e;
  color: rgba(255,255,255,0.6);
  padding: 50px 20px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.88rem; margin-top: 12px; max-width: 300px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 14px; font-size: 0.95rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold2); }
.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo-sub {
  font-size: 0.68rem;
  color: var(--gold2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 88px; left: 0; right: 0;
    background: var(--navy);
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { display: none; }
  .hero-stats { gap: 20px; }

  .area-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { width: 100%; height: 260px; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
