/* ========================================
   PLAN A CONSULTING — style.css
   Colors: Navy #16163f | Gold #d3b574 | White #fff | Dark #181818
   Font: Montserrat
======================================== */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- HEADER ---- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo { flex: 0 0 auto; }
.header-logo img { width: 180px; }

.header-nav { flex: 1; }
.header-nav > ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.header-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #16163f;
  text-transform: capitalize;
  transition: color 0.2s;
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active { color: #d3b574; }

.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  background: #fff;
  box-shadow: 0 15px 20px rgba(0,0,0,0.1);
  min-width: 220px;
  z-index: 100;
}

.dropdown li a {
  display: block;
  padding: 20px 10px;
  font-size: 16px;
  font-weight: 400;
  color: #16163f;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s, background 0.2s;
}

.dropdown li a:hover { color: #d3b574; background: rgba(0,0,0,0.02); }

.has-dropdown:hover .dropdown { display: none; }
.has-dropdown.open .dropdown { display: block; }

.header-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #16163f;
  white-space: nowrap;
}

.header-contact i { color: #d3b574; font-size: 13px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #16163f;
  cursor: pointer;
  margin-left: auto;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('images/Header-scaled.jpg') bottom center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,24,24,0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.hero-text-wrap {
  background: rgba(24,24,24,0.43);
  padding: 60px 40px;
  display: inline-block;
}

.hero h1 {
  color: #fff;
  font-size: 75px;
  font-weight: 300;
  text-transform: capitalize;
  line-height: 1.2;
}

.hero-sub {
  color: #d3b574;
  font-size: 28px;
  font-weight: 300;
  margin-top: 14px;
}

.hero-scroll {
  display: inline-block;
  margin-top: 24px;
  color: #d3b574;
  font-size: 39px;
  transition: transform 0.2s;
}

.hero-scroll:hover { transform: translateY(4px); }

/* ---- OUR STORY ---- */
.ourstory-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 50px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.ourstory-images {
  display: contents;
}

.story-img {
  height: 445px;
  background-size: cover;
  background-position: center;
  margin: 10px;
}

.ourstory-text {
  padding: 25px 25px 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ourstory-text h2 {
  color: #16163f;
  font-size: 50px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.4;
  padding-left: 30px;
  border-left: 4px solid #d3b574;
  margin-bottom: 20px;
}

.ourstory-text p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}

/* ---- EXPERIENCE BANNER ---- */
.exp-banner {
  position: relative;
  background: url('images/josh-calabrese-Ca8r0PSWg9Q-unsplash-1-scaled.jpg') 0px 800px no-repeat;
  background-color: #181818;
}

.exp-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,24,24,0.47);
}

.exp-banner-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 50px;
  text-align: center;
}

.exp-banner-content p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* ---- SERVICES ---- */
.services-section {
  background: #fff;
}

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

.services-img img { width: 100%; }

.services-text {
  padding: 0 0 0 35px;
}

.services-text h2 {
  color: #16163f;
  font-size: 50px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.4;
  padding-left: 30px;
  border-left: 4px solid #d3b574;
  margin-bottom: 20px;
}

.services-text p {
  color: #000;
  font-size: 16px;
  margin-bottom: 14px;
}

/* ---- SERVICE CARDS ---- */
.service-cards {
  background: #fff;
  padding: 0 0 100px;
}

.service-cards-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: #fff;
  border-top: 4px solid #6c6b7d;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  text-align: center;
  transition: border-color 0.2s;
  cursor: pointer;
}

.service-card:hover { border-color: #d3b574; }

.service-card:hover .service-card-content h3 { color: #fff; }
.service-card:hover { background: rgba(24,24,24,0.71); }

.service-card-content { padding: 30px 20px; }

.service-card-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #16163f;
  transition: color 0.2s;
}

/* ---- MISSION QUOTE ---- */
.mission-quote {
  position: relative;
  background: url('images/mission-1-scaled.jpeg') center center / cover no-repeat;
  background-attachment: fixed;
}

.mission-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,24,24,0.71);
}

.mission-content {
  position: relative;
  z-index: 1;
  max-width: 894px;
  margin: 0 auto;
  padding: 100px 100px;
  text-align: center;
}

.mission-divider {
  width: 100%;
  height: 3px;
  background: #d3b574;
  margin-bottom: 30px;
}

.mission-content h2 {
  color: #fff;
  font-size: 39px;
  font-weight: 600;
  text-transform: capitalize;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 20px;
}

.mission-content p {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
}

/* ---- IMPORTANT INFO ---- */
.info-section {
  background: #f6f6f6;
}

.info-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.info-text h2 {
  color: #16163f;
  font-size: 50px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.4;
  padding-left: 30px;
  border-left: 4px solid #d3b574;
  margin-bottom: 50px;
}

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 30px; }

.accordion-item {
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  cursor: pointer;
  border: 2px solid #d3b574;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  color: #4a4a4a;
  user-select: none;
}

.accordion-title .toggle-icon { color: #d3b574; font-size: 16px; transition: transform 0.3s; }

.accordion-item.open .toggle-icon { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: 0 25px 25px;
  border: 2px solid #d3b574;
  border-top: none;
  color: #3d4459;
  font-size: 15px;
  font-weight: 300;
}

.accordion-body p { margin-bottom: 12px; }
.accordion-body p:last-child { margin-bottom: 0; }

.accordion-item.open .accordion-body { display: block; }

/* ---- CONTACT SECTION ---- */
.contact-section {
  padding: 50px 50px;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  color: #16163f;
  font-size: 50px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-inner h4 {
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 0;
}

.contact-form {
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d7d7d9;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #16163f;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: #d3b574; }

.contact-form textarea {
  width: 100%;
  display: block;
  resize: vertical;
  text-transform: none;
  margin-bottom: 10px;
}

.form-submit { display: flex; justify-content: flex-start; }

.form-submit button {
  background: #d3b574;
  color: #16163f;
  border: none;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}

.form-submit button:hover {
  background: #16163f;
  color: #d3b574;
}

/* ---- FOOTER ---- */
.site-footer {
  position: relative;
  background: url('images/matthew-henry-VviFtDJakYk-unsplash-scaled.jpg') center / cover no-repeat;
  min-height: 500px;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,24,24,0.71);
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: 50px 50px 0;
}

.footer-brand {
  background: rgba(24,24,24,0.71);
  padding: 30px 0 50px;
  border-bottom: 1px solid #d3b574;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand img {
  margin: 0 auto 16px;
  width: 180px;
}

.footer-brand p {
  color: #d7d7d9;
  font-size: 16px;
  font-weight: 400;
  max-width: 540px;
  margin: 0 auto 8px;
}

.footer-cols {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(24,24,24,0.71);
  padding: 20px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.footer-col h4 {
  color: #d3b574;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d7d7d9;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-col ul li i { color: #d7d7d9; margin-top: 3px; font-size: 13px; flex-shrink: 0; }

.footer-col-stamps img {
  width: 40%;
  margin-bottom: 12px;
  margin-left: auto;
}

.footer-col-stamps h4 { text-align: right; }

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(24,24,24,0.71);
  border-top: 1px solid #d3b574;
  padding: 30px 0;
  text-align: center;
}

.footer-bottom p {
  color: #d7d7d9;
  font-size: 14px;
  font-weight: 300;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.footer-bottom a { color: #d7d7d9; }
.footer-bottom a:hover { color: #d3b574; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding-top: 80px;
  height: 300px;
  background: url('images/Header-scaled.jpg') center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,22,63,0.7);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 50px;
  font-weight: 300;
  text-transform: capitalize;
  text-align: center;
}

/* ---- INNER PAGE SECTIONS ---- */
.inner-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 50px;
}

.inner-section h2 {
  color: #16163f;
  font-size: 50px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.4;
  padding-left: 30px;
  border-left: 4px solid #d3b574;
  margin-bottom: 24px;
}

.inner-section p { color: #000; font-size: 16px; margin-bottom: 14px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.section-alt { background: #f6f6f6; }
.section-navy { background: #16163f; }
.section-navy h2, .section-navy p { color: #fff; }

/* ---- MOBILE NAV MENU ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #16163f;
  z-index: 2000;
  padding: 40px 30px;
  overflow-y: auto;
}

.mobile-nav.open { display: block; }

.mobile-nav-close {
  color: #d3b574;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 30px;
}

.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid rgba(211,181,116,0.2); }
.mobile-nav ul li a {
  display: block;
  padding: 16px 0;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
}

.mobile-nav ul.sub-menu { padding-left: 20px; }
.mobile-nav ul.sub-menu li a { font-size: 15px; color: #d3b574; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .ourstory-section {
    grid-template-columns: 1fr 1fr;
    padding: 80px 20px 80px;
  }

  .ourstory-images { display: contents; }

  .story-img:nth-child(2) { display: none; }

  .ourstory-text { grid-column: 2; }

  .ourstory-text h2 { font-size: 38px; }

  .services-inner {
    padding: 60px 25px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .services-text h2 { font-size: 38px; }

  .services-text { padding: 25px; }

  .info-inner { padding: 80px 25px; }
  .info-text h2 { font-size: 38px; }

  .mission-content { padding: 60px 40px; }
  .mission-content h2 { font-size: 40px; }

  .contact-inner h2 { font-size: 38px; }
  .contact-section { padding: 0 25px; }

  .footer-cols { grid-template-columns: 1fr 1fr; padding: 50px 0; }
  .footer-col-stamps { grid-column: 1/-1; }
  .footer-col-stamps h4 { text-align: center; }
  .footer-col-stamps img { margin: 0 auto 12px; width: 25%; }

  .header-contact { display: none; }
  .header-nav { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 767px) {
  .hero h1 { font-size: 45px; }
  .hero-sub { font-size: 24px; }
  .hero-text-wrap { padding: 40px 20px; }

  .ourstory-section {
    grid-template-columns: 1fr;
    padding: 50px 20px 20px;
  }
  .story-img { display: none; }
  .ourstory-text { grid-column: 1; padding: 0; }
  .ourstory-text h2 { font-size: 32px; }

  .services-inner {
    grid-template-columns: 1fr;
    padding: 50px 0 0;
  }
  .services-text { padding: 20px; }
  .services-text h2 { font-size: 32px; }

  .service-cards-inner { grid-template-columns: 1fr; }

  .info-inner {
    grid-template-columns: 1fr;
    padding: 50px 15px;
    gap: 40px;
  }
  .info-text h2 { font-size: 32px; }
  .info-img { display: none; }

  .mission-content { padding: 20px 20px; }
  .mission-content h2 { font-size: 30px; }

  .contact-section { padding: 0 25px; min-height: auto; }
  .contact-inner h2 { font-size: 34px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { justify-content: stretch; }
  .form-submit button { width: 100%; justify-content: center; }

  .footer-cols { grid-template-columns: 1fr; padding: 30px 35px 0; }
  .footer-col-stamps { text-align: center; }
  .footer-col-stamps img { width: 50%; margin: 0 auto 12px; }
  .footer-col-stamps h4 { text-align: center; }
  .footer-inner { padding: 25px 25px 0; }

  .page-hero h1 { font-size: 34px; }
  .inner-section { padding: 50px 20px; }
  .inner-section h2 { font-size: 30px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .two-col.reverse { direction: ltr; }
}
