@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  animation: fadeIn 0.4s ease forwards;
  background-color: #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}

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

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #c41230;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ccc;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active {
  color: #ffffff;
  border-bottom: 2px solid #ffb3bc;
  padding-bottom: 2px;
  font-weight: 600;
}

/* Nav dropdown */
.nav-item-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 2px;
  opacity: 0.7;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #c41230;
  border-top: 2px solid #2a7de1;
  border-radius: 0 0 8px 8px;
  min-width: 190px;
  list-style: none;
  padding: 0.75rem 0 0.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 200;
}

.nav-item-dropdown:hover .nav-dropdown {
  display: block;
}

.nav-dropdown li a {
  display: block;
  padding: 0.55rem 1.2rem;
  color: #ffb3bc;
  font-size: 0.88rem;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown li a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background-color: #111111;
  background-image: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
  color: white;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}


.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.2rem;
  color: #aaaaaa;
  margin-bottom: 2rem;
}

.hero-phone {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #aaaaaa;
}

.hero-phone a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-phone a:hover {
  color: #ffb3bc;
}

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.85rem;
  color: #aaaaaa;
  margin-top: 0.2rem;
}

/* Button */
.btn {
  display: inline-block;
  background: #ffffff;
  color: #c41230;
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: #ffb3bc;
  color: #c41230;
}

/* Sections */
.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: #fdf2f3;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: #c41230;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.section p {
  font-size: 1.05rem;
  color: #444;
  max-width: 680px;
  margin-bottom: 2rem;
}

/* Page spacing */
.page-top {
  padding-top: 4rem;
}

.btn-navy {
  background: #c41230;
  color: #ffffff;
}

.btn-navy:hover {
  background: #961028;
  color: #ffffff;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 480px;
}

.about-text h2 {
  margin-bottom: 1rem;
}

@media (max-width: 680px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: white;
  border-radius: 4px;
  border-top: 4px solid #c41230;
  padding: 1.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.97rem;
  color: #555;
  margin: 0;
}

.client-name {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #961028;
}

/* Certifications */
.certs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.cert {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cert:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.cert-org {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a7de1;
  text-transform: uppercase;
}

.cert-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

/* Footer */
.footer {
  background-color: #111111;
  position: relative;
  overflow: hidden;
  color: #999999;
  padding: 2.5rem 2rem 1.5rem;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #999999;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: #999999;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 960px;
  margin: 1.2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #666666;
}

.footer-bottom a {
  color: #cccccc;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

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

/* Pricing */
.price-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #c41230;
  margin-bottom: 0.75rem;
}

.price-tag-secondary {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 1rem;
}

.price-tag-secondary span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
}

.price-tag span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #888;
}

.pricing-note {
  margin-top: 2rem;
  font-size: 0.92rem;
  color: #666;
  font-style: italic;
  max-width: 100%;
}

/* Quote Banner */
.quote-banner {
  background-color: #c41230;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
}

.quote-banner blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  max-width: 760px;
  margin: 0 auto 1rem;
  line-height: 1.4;
  position: relative;
}

.quote-banner blockquote::before {
  content: '\201C';
  font-size: 5rem;
  color: #2a7de1;
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-banner cite {
  color: #ffb3bc;
  font-size: 0.95rem;
  font-style: normal;
}

/* Why Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-item {
  text-align: center;
  padding: 1.5rem;
}

.why-icon {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.why-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #c41230;
}

.why-item p {
  font-size: 0.93rem;
  color: #555;
  margin: 0;
  max-width: 100%;
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service list */
.service-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-list li {
  font-size: 0.93rem;
  color: #444;
  padding-left: 1.2rem;
  position: relative;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2a7de1;
  font-weight: 700;
}

.availability-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

.services-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f0d0d3;
}

.services-cta p {
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 560px;
  margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #f0c0c5;
  border-radius: 4px;
  background: #fff;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s;
}

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

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  align-self: flex-start;
}

.form-success {
  display: none;
  background: #e8f4ee;
  border: 1px solid #a8d5b8;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  color: #1e6b3a;
  font-weight: 500;
  font-size: 1rem;
}

.form-success p {
  margin: 0;
  color: #1e6b3a;
  max-width: 100%;
}

.form-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.5rem;
}

/* Who I Work With */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.who-card {
  background: white;
  border-radius: 8px;
  padding: 1.6rem;
  border-left: 3px solid #2a7de1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.who-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.09);
}

.who-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #c41230;
  margin-bottom: 0.5rem;
}

.who-card p {
  font-size: 0.93rem;
  color: #555;
  margin: 0;
  max-width: 100%;
}

/* Cert Badges */
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.cert-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: #961028;
  background: #fde8ea;
  border: 1px solid #f0b8bc;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* Areas Served */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}

.area-tag {
  background: white;
  border: 1px solid #f0b8bc;
  color: #961028;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.area-note {
  font-size: 0.88rem;
  color: #888;
  margin: 0;
}

/* FAQ */
.faq-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
}

.faq-item {
  border: 1px solid #f0d0d3;
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c41230;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: #2a7de1;
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.4rem 1.1rem;
  font-size: 0.97rem;
  color: #555;
  margin: 0;
  max-width: 100%;
}

/* FAQ more link */
.faq-more {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2a7de1;
}

.faq-more:hover {
  color: #c41230;
}

/* Which Option */
.which-option {
  margin-top: 3rem;
  padding: 2rem;
  background: #fdf2f3;
  border-radius: 8px;
}

.which-option h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c41230;
  margin-bottom: 1.2rem;
}

.which-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.which-card {
  background: white;
  border-radius: 6px;
  padding: 1.2rem;
  border-left: 3px solid #2a7de1;
}

.which-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2a7de1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.which-card p {
  font-size: 0.92rem;
  color: #555;
  margin: 0;
  max-width: 100%;
}

/* Certificate photo grid */
.cert-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.cert-photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cert-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

@media (max-width: 680px) {
  .cert-photos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    grid-template-columns: unset;
  }

  .cert-photo {
    flex: 0 0 220px;
    width: 220px;
    scroll-snap-align: start;
  }
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.contact-sidebar {
  background: #fdf2f3;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2a7de1;
  margin-bottom: 0.4rem;
}

.contact-detail a,
.contact-detail span {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 500;
}

.contact-detail a:hover {
  color: #2a7de1;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.93rem;
  color: #444;
}

.hours-row span:first-child {
  font-weight: 500;
  color: #1a1a1a;
}

.hours-note {
  font-size: 0.82rem;
  color: #888;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Footer phone */
.footer-phone {
  display: block;
  color: #cccccc;
  margin-top: 0.3rem;
  font-size: 0.9rem;
}

.footer-phone:hover {
  color: #ffffff;
}

@media (max-width: 680px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Tabs */
.tab-nav {
  display: flex;
  border-bottom: 2px solid #f0d0d3;
  margin-bottom: 2.5rem;
}

.tab-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #888;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.75rem 1.5rem;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn:hover {
  color: #c41230;
}

.tab-btn.active {
  color: #c41230;
  border-bottom-color: #2a7de1;
}

.tab-panel[hidden] {
  display: none;
}

/* What Happens Next */
.next-steps {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #f0d0d3;
  max-width: 560px;
}

.next-steps h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #c41230;
  margin-bottom: 1rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.4rem;
}

.steps-list li {
  font-size: 0.97rem;
  color: #444;
  padding-left: 0.4rem;
}

.steps-list li::marker {
  color: #2a7de1;
  font-weight: 700;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  background: #c41230;
  color: white;
  border: none;
  border-radius: 30px;
  height: 44px;
  padding: 0 1.5rem;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #961028;
}

/* Mobile */
@media (max-width: 680px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #c41230;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.4rem;
    letter-spacing: -1px;
  }

  .section h2 {
    font-size: 1.8rem;
  }

  .nav-dropdown,
  .dropdown-arrow {
    display: none;
  }
}
