@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
  --navy: #111111;
  --dark-blue: #1a1a1a;
  --blue: #222222;
  --accent: #e87a1e;
  --accent-light: #f5921f;
  --gold: #f5921f;
  --white: #ffffff;
  --off-white: #f4f6f8;
  --light-gray: #e2e8f0;
  --text: #2d3748;
  --text-light: #718096;
  --shadow: 0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
  --radius: 6px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6, .nav a, .btn, .top-bar, .footer-bottom {
  font-family: 'Montserrat', sans-serif;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }

/* ── Logo Bar ── */
.logo-bar {
  background: #000000;
  padding: 16px 0;
}
.logo-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 60px; width: auto; }
.logo-bar-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-bar-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.5px;
}
.logo-bar-phone .phone-icon { color: var(--accent); margin-right: 6px; }
.logo-bar-phone:hover { color: var(--accent) !important; }
.logo-bar-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.logo-bar-cta .pin-icon { color: var(--accent); margin-right: 4px; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Navbar ── */
.navbar {
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Nav ── */
.nav { display: flex; align-items: center; gap: 0; }
.nav > li { list-style: none; position: relative; }
.nav > li > a {
  display: block;
  padding: 14px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color var(--transition), background var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}
.nav > li > a:hover, .nav > li.active > a {
  color: var(--accent);
  border-bottom-color: var(--accent);
  background: rgba(232,122,30,0.06);
}
/* Dropdown */
.nav .dropdown { display: none; position: absolute; top: 100%; left: 0; background: #1a1a1a; min-width: 240px; box-shadow: var(--shadow-lg); border-radius: 0 0 var(--radius) var(--radius); padding: 8px 0; z-index: 100; border-top: 2px solid var(--accent); }
.nav li:hover .dropdown { display: block; }
.nav .dropdown li { list-style: none; }
.nav .dropdown a { display: block; padding: 10px 20px; font-size: 0.84rem; font-weight: 500; color: rgba(255,255,255,0.8); }
.nav .dropdown a:hover { background: rgba(255,255,255,0.05); color: var(--accent); }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ── Hero ── */
.hero {
  background: #000000;
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,122,30,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; text-align: center; }
.hero h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; line-height: 1.2; }
.hero h1 span { color: var(--accent-light); }
.hero .subtitle { font-size: 1.15rem; font-weight: 300; max-width: 700px; margin: 0 auto 12px; opacity: 0.9; font-family: 'Source Serif 4', serif; }
.hero .cta-line { font-size: 1rem; margin-top: 24px; font-weight: 500; font-family: 'Montserrat', sans-serif; }
.hero .cta-line .phone { color: var(--gold); font-weight: 700; font-size: 1.3rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,122,30,0.35); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #d4b55e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }

/* ── Sections ── */
.section { padding: 70px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.text-center { text-align: center; }

/* ── Cards Grid ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 200px; background-size: cover; background-position: center; }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card-body p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 16px; }

/* ── Content Layout ── */
.content-row { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.content-row.reverse { grid-template-columns: 380px 1fr; }
.content-text h2 { font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.content-text p { margin-bottom: 16px; color: var(--text); font-size: 1rem; }
.content-text ul { padding-left: 20px; margin-bottom: 16px; }
.content-text ul li { margin-bottom: 8px; color: var(--text); }
.content-text strong { color: var(--navy); }

/* ── Form Sidebar ── */
.form-sidebar {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}
.form-sidebar h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Testimonials ── */
.testimonial {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  margin-bottom: 24px;
}
.testimonial p { font-style: italic; margin-bottom: 10px; }
.testimonial .author { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--accent); }

/* ── FAQ ── */
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); overflow: hidden; }
.faq-item summary {
  padding: 18px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--accent); font-weight: 300; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer { padding: 0 24px 18px; color: var(--text); font-size: 0.95rem; }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); }
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }

/* ── Contact Info ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 16px; }
.contact-info p { margin-bottom: 10px; }
.contact-info .label { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-bottom: 40px; }
.footer h4 { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 16px; }
.footer p, .footer a { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.8; }
.footer a:hover { color: var(--accent-light); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 6px; }
.footer ul a { font-size: 0.88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }

/* ── Benefits strip ── */
.benefits { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.benefit {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.benefit:last-child { border-right: none; }
.benefit-icon { font-size: 2.4rem; margin-bottom: 12px; }
.benefit h4 { font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.benefit p { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #1a1a1a; box-shadow: var(--shadow-lg); padding: 16px; }
  .nav.open { display: flex; }
  .nav > li > a { padding: 12px 16px; border-bottom: none; margin-bottom: 0; }
  .nav .dropdown { position: static; box-shadow: none; padding-left: 16px; display: block; border-top: none; }
  .nav-toggle { display: block; }
  .navbar .container { justify-content: flex-end; }
  .logo-bar-right { flex-direction: column; gap: 4px; align-items: flex-end; }
  .logo-bar-phone { font-size: 1.1rem; }
  .logo-bar-cta { font-size: 0.8rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 50px 0; }
  .content-row, .content-row.reverse { grid-template-columns: 1fr; }
  .form-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .benefit { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .top-bar .container { flex-direction: column; gap: 4px; text-align: center; }
}
