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

:root {
  --navy: #1B365D;
  --navy-dark: #122442;
  --gold: #C9A962;
  --gold-light: #d4ba7a;
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-400: #ADB5BD;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --text: #2C3E50;
  --text-light: #5A6C7D;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --radius: 10px;
  --transition: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.25; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 90%; max-width: 1140px; margin: 0 auto; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.logo svg { width: 36px; height: 36px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--gray-600); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links .btn-nav {
  background: var(--navy); color: var(--white); padding: 9px 22px; border-radius: 6px; font-weight: 600; font-size: .85rem;
  transition: background var(--transition);
}
.nav-links .btn-nav:hover { background: var(--gold); color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; top: -40%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,98,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; max-width: 720px; }
.hero-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.hero-stars span { font-size: .85rem; color: rgba(255,255,255,.7); margin-left: 8px; letter-spacing: 0; font-family: 'Plus Jakarta Sans', sans-serif; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; color: var(--white); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.8); margin-bottom: 36px; line-height: 1.8; }
.btn-hero {
  display: inline-block; background: var(--gold); color: var(--navy); padding: 14px 36px; border-radius: 8px;
  font-weight: 700; font-size: .95rem; transition: background var(--transition), transform var(--transition);
}
.btn-hero:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--white); }
.about .container { max-width: 860px; text-align: center; }
.section-label { font-size: .8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.about h2 { font-size: 2.2rem; margin-bottom: 22px; }
.about p { font-size: 1.05rem; color: var(--text-light); line-height: 1.85; }
.stats { display: flex; justify-content: center; gap: 60px; margin-top: 50px; }
.stat h3 { font-size: 2.6rem; color: var(--gold); }
.stat p { font-size: .9rem; color: var(--gray-600); margin-top: 4px; font-family: 'Plus Jakarta Sans', sans-serif; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--off-white); }
.services .section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.services h2 { font-size: 2.2rem; margin-bottom: 14px; }
.services .section-header p { color: var(--text-light); font-size: 1.05rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); padding: 40px 32px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 52px; height: 52px; background: var(--navy); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; color: var(--navy); }
.service-card p { font-size: .93rem; color: var(--text-light); line-height: 1.75; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials .section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.testimonials h2 { font-size: 2.2rem; margin-bottom: 14px; }
.testimonials .section-header p { color: var(--text-light); font-size: 1.05rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--off-white); padding: 36px 32px; border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.testimonial-stars { color: var(--gold); font-size: .95rem; margin-bottom: 14px; }
.testimonial-card blockquote { font-size: .97rem; color: var(--text-light); line-height: 1.8; font-style: italic; margin-bottom: 18px; }
.testimonial-author { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testimonial-location { font-size: .82rem; color: var(--gray-600); }

/* ===== CONTACT / GET QUOTE ===== */
.contact { padding: 100px 0; background: var(--off-white); }
.contact .container { max-width: 640px; }
.contact .section-header { text-align: center; margin-bottom: 40px; }
.contact h2 { font-size: 2.2rem; margin-bottom: 10px; }
.contact .section-header p { color: var(--text-light); font-size: 1.05rem; }
.form-card { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .93rem; color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.consent-group { display: flex; align-items: flex-start; gap: 10px; margin: 24px 0; }
.consent-group input[type="checkbox"] { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--navy); flex-shrink: 0; cursor: pointer; }
.consent-group label { font-size: .8rem; color: var(--gray-600); line-height: 1.6; cursor: pointer; }
.consent-group label a { color: var(--navy); text-decoration: underline; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--navy); color: var(--white); border: none; border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .95rem; font-weight: 700; cursor: pointer;
  transition: background var(--transition);
}
.btn-submit:hover { background: var(--gold); color: var(--navy); }
.form-success {
  display: none; text-align: center; padding: 30px; background: var(--off-white); border-radius: var(--radius);
}
.form-success h3 { color: var(--navy); margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.form-success p { font-size: .93rem; color: var(--text-light); }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 60px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 340px; }
.footer-brand h4 { font-size: 1.15rem; color: var(--white); margin-bottom: 12px; font-family: 'Playfair Display', serif; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-contact h4 { font-size: .95rem; color: var(--gold); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-contact p { font-size: .88rem; margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-links h4 { font-size: .95rem; color: var(--gold); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-links a { display: block; font-size: .88rem; margin-bottom: 8px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; font-size: .82rem; color: rgba(255,255,255,.45); }

/* ===== POLICY / TERMS PAGES ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  text-align: center;
}
.page-hero h1 { font-size: 2.5rem; color: var(--white); }
.policy-content { padding: 60px 0 100px; background: var(--white); }
.policy-content .container { max-width: 780px; }
.policy-content h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--navy); }
.policy-content h3 { font-size: 1.15rem; margin: 24px 0 10px; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.policy-content p { font-size: .95rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { margin: 10px 0 18px 24px; list-style: disc; }
.policy-content ul li { font-size: .93rem; color: var(--text-light); margin-bottom: 6px; line-height: 1.7; }
.policy-content a { color: var(--navy); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats { flex-direction: column; gap: 24px; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; width: 100%; flex-direction: column; background: var(--white); padding: 20px; gap: 16px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 130px 0 80px; }
  .hero h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .form-card { padding: 28px 20px; }
}
