/* DON'T TOUCH */
@font-face {
    font-family: 'Century Gothic';
    src: url('/fonts/centurygothic.ttf') format('truetype');
    font-weight: normal; 
    font-style: normal;
}

@font-face {
    font-family: 'Century Gothic Bold';
    src: url('/fonts/centurygothic_bold.ttf') format('truetype');
    font-weight: bold;
}

@font-face {
    font-family: 'Trebuchet MS';
    src: url('/fonts/trebuchetms.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
  --coral: #ff5a5f;
  --navy: #1b115c;
  --emerald: #009b72;
  --blue: #4c6ef5;
  --purple: #9c27b0;
  --white: #F8F8F8;
}

/* DON'T TOUCH */
html { scroll-behavior: smooth; }

/* DON'T TOUCH */
.logo, .footer-logo img {
    max-width: 100px;
    height: auto;
}

/* DON'T TOUCH */
body {
    margin: 0;
    font-family: 'Trebuchet MS', sans-serif;
    background: var(--white);
    color: var(--navy);
}

/* DON'T TOUCH */
header {
    background: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* DON'T TOUCH */
.hamburger {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transform-origin: 50% 50%;
  transition:
    transform .34s cubic-bezier(.22,.61,.36,1),
    top .34s cubic-bezier(.22,.61,.36,1),
    opacity .2s ease;
}

.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 26px; }

.hamburger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg) scaleX(.9) }
.hamburger[aria-expanded="true"] span:nth-child(2) { transform: scaleX(0); opacity: 0 }
.hamburger[aria-expanded="true"] span:nth-child(3) {top: 19px; transform: rotate(-45deg) scaleX(.9); }


/* DON'T TOUCH */
nav ul {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* DON'T TOUCH */
nav a {  
    font-family: 'Century Gothic Bold', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--navy);
    padding: 0.25rem 0.5rem;
  line-height: 1.5;
}

/* DON'T TOUCH */
nav a:hover { color: var(--emerald); }

/* DON'T TOUCH */
  /* Hero */

.hero, .page-header {
    font-family: 'Century Gothic Bold', sans-serif;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 1rem 0;
  text-align: center; 
}

.hero h2, .page-header h2 {
  margin-bottom: 5rem;
}

.who-we-are h2, .what-we-do h2 {
    margin-top: 2rem;
}

.hero p {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--navy);
  font-family: 'Trebuchet MS', sans-serif;
}

.hero p:last-child {
  margin-bottom: 5rem;
}

.hero + .services-overview, .page-header + .who-we-are, .page-header + .what-we-do, .page-header + .what-were-seeing, .page-header + .contact-us {
  padding-top: 0;
}

h1, h2, h3, h4, h5 {
    margin: 0 0 1rem;
    font-family: 'Century Gothic', sans-serif;
}

h1 { font-size: 4rem; font-weight: bold; color: var(--navy); }
h2 { font-size: 2rem; font-weight: bold; color: var(--coral); }
h3 { font-size: 1.5rem; font-weight: bold; color: var(--navy); }
h4 { font-size: 1.5rem; font-weight: bold; color: var(--coral); }
h5 { font-size: 1rem; font-weight: bold; color: var(--navy); }
p:last-of-type {
    margin-bottom: 0;
}

section { padding: 3rem 1rem; }
  
/* DON'T TOUCH */
  /* Services grid */

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 2.5rem;                 /* a touch more space between cards */
  margin: 2.5rem auto;
  max-width: 1100px;           /* lets them breathe on wide screens */
}

.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.20);
  display: flex;               /* equal height cards */
  flex-direction: column;
  min-height: 180px;           /* keeps rows aligned */
  transition: transform .2s ease, box-shadow .2s ease;
  color: inherit;
}

.service-card h5 { margin: 1rem 0; font-size: 1.2rem; text-align: center; }

.service-card p { margin: 0; line-height: 1.6; text-align: center; }

.service-card .custom-intro {
  text-align: center;
  margin-top: 2rem;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(27,17,92,0.28);
}

.service-intro {
  margin: 0 0 0.75rem;
  line-height: 1.6;
  font-size: 1rem;
  text-align: left;
}

.service-text {
  width: 50ch;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.services-overview,
.why-us,
.who-we-are, 
.what-we-do,
.what-were-seeing 
{
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 5rem;
}

.why-us p, 
.services-overview p, 
.who-we-are p, 
.what-we-do p,
.faq p {
  text-align: left;
  max-width: 100ch;
  margin: 0.5rem auto;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  margin: 0.35rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-list li::before {
  content: "•";
  color: var(--coral);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.services-overview { padding-bottom: 0; }
.why-us { padding-top: 0; }

/* CONTACT FORM */
.contact {
    width: 100%;
    max-width: 1100px;
    margin: 5rem auto;
    padding: 0 1rem 3rem;
}

.contact h3 {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--navy);
  font-family: 'Trebuchet MS', sans-serif;
}

.form-group-container {
    display: grid;
    gap: 1rem;
    margin-top: 0;
    text-align: left;
    max-width: 50rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label, .form-label-required {
    margin-bottom: 0.5rem;
}

.form-label-required::after {
    content: " *";
    color: var(--coral);
    font-weight: bold;
}

.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-input, .form-textarea {
    padding: 0.5rem;
  border: 1px solid #e5e7eb;
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
  color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 1px solid #ff5a5f;
  outline-offset: 1px;
}

.form-textarea {
  min-height: 120px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2px 0.5fr;
    column-gap: 3rem;
    align-items: stretch; 
}

.contact-divider {
    background: var(--coral);
    border-radius: 2px;
}

.contact-image {
    height: 100%;
    width: 100%;
}

.contact-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.contact-image p {
    text-align: center;
}

/* DON'T TOUCH */
  /* Buttons */
  
.cta-button {
    margin-top: 3rem; 
    background: var(--coral);
    color: var(--white);
    border-radius: 30px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-family: 'Century Gothic', sans-serif;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
    display: inline-block;
    line-height: 1.5;
    vertical-align: middle;
}

.cta-button:hover { 
    background: var(--emerald); 
    color: var(--white); 
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    font-weight: bold;
}

.cta-button:focus-visible { 
    outline: 3px solid var(--purple); outline-offset: 2px; 
}

.sec-button {
  border: 2px solid var(--coral);
  background: var(--white); 
  color: var(--coral); 
  border-radius: 15px; 
  padding: 0.5rem 0.75rem; 
  text-decoration: none; 
  font-family: 'Century Gothic', sans-serif; 
  font-weight: bold; 
  transition: background 0.3s ease; 
  display: inline-block; 
  line-height: 1.5; 
  vertical-align: middle;  
}

.sec-button:hover { 
    border: 2px solid var(--coral);
    background: var(--white); 
    color: var(--coral);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    font-weight: bold; 
}

.tert-button {
    background: transparent;
  color: var(--navy);
  border: none;
  padding: 0;              /* so it reads more like text */
  font-size: 1rem;
}

.tert-button:hover { 
    background: ; transparent;
    color: var(--coral); 
    
}

.buttons { margin-top: 2rem; }

.about-card {
    flex: 0 0 250px;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.about-card:last-of-type {
  border-bottom: none;
}

.about-card > summary {
  display: flex;
  flex-direction: column;
  align-items: center;      /* center everything */
  text-align: center;
  cursor: pointer;
  position: relative;
  padding-bottom: 1rem;
}

.about-card > summary::-webkit-details-marker {
  display: none;
}

/* Make the h2 a little "anchor" for the + sign */
.about-card summary h2 {
  position: relative;         /* lets us position things inside it */
  margin-top: 0.25rem;         /* we'll also tweak the spacing here */
  padding-right: 1.5rem;      /* space on the right for the + */
}

/* Draw the + next to the heading */
.about-card summary h2::after {
  content: "+";               /* closed state */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%); /* vertically centre it on the text */
  font-size: 1.4rem;
  color: #1b115c;
}



/* When the card is open, swap + for – */
.about-card[open] summary h2::after {
  content: "–";
}

.about-img {
    width: 250px;           
    height: 250px;          
    object-fit: contain;   
    margin-bottom: 0rem;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Slight hint on hover so people know it's clickable */
.about-card > summary:hover h2 {
  text-decoration: underline;
}

.about-content {
    padding: 0 1.75rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    margin: 1rem 0 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;    
}

.about-button[open] {
    box-shadow: 0 10px 40px rgba(27,17,92,0.32);
}

.submit-button {
  width: 287px;
  height: 56px;
  margin-top: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  background: var(--navy);
  color: var(--white);
  border: none;
  appearance: none;
  border-radius: 30px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-family: 'Century Gothic', sans-serif;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  line-height: 1.5;
  vertical-align: middle;
}

.submit-button:hover { 
    background: var(--emerald); 
    color: var(--white);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    font-weight: bold;}
    
.submit-button:focus-visible { 
    outline: 3px solid var(--purple); outline-offset: 2px; 
}


.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #fff;
  max-width: 700px;
  width: 90%;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

.modal-close:hover {
  color: var(--coral);
}

.faq-container {
    max-width: 800px;
    text-align: left;
    margin: 0 auto 5rem;
    padding: 0 1rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--coral);
}

.faq-q {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Century Gothic Bold', sans-serif;
    font-size: 1.1rem;
    color: var(--navy);
    padding: 1rem 0;
    cursor: pointer;
    position: relative;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.faq-q.active::after {
  content: "−";
}

.faq-a {
  display: none;
  padding-bottom: 1rem;
  color: var(--navy);
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 1rem;
  line-height: 1.6;  
}

/* DON'T TOUCH */
  /* Footer */

footer {
    background: var(--coral);
    padding: 1rem;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: space-evenly;
    max-width: 2000px;
    margin: 0 auto;
    padding: 1rem;
    color: var(--white);
    gap: 2rem;
}

.footer-logo {
    display: grid;
    position: relative;
    top: 9px;
}

.footer-column {
    text-align: left;
    padding: 0 1rem;
    color: var(--white)
}

.footer-column h4 {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: inherit;
}

.footer-column ul {
    display: block;
    list-style: none;
    padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;  
}

.footer-column a {
    text-decoration: none;
    font-size: 0.9rem;
    color: inherit;
}

.footer-column a:hover {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    font-weight: bold;
    transform: scale(1.1);
}

.footer-socials {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 1.5rem;
    padding: 0;
}

.footer-socials img {
    width: 24px;
    height: 24px;
    display: block;
}

.footer-socials img:hover {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem; 
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 0.8rem;
    color: var(--white); }
    
.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-right: 0.75rem;
    position: relative;
}

/* Responsive */

@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: .5rem; /* nudges hamburger closer to edge */
  }
    
  /* Show hamburger on mobile; keep it above the menu for easy closing */
  .hamburger {
    display: inline-block;
    position: relative;
    z-index: 1201;
  }

body.menu-open .hamburger {
    position: fixed;
    top: 10px;
    right: 10px;
  }

  /* ===== TOP SECTION (fixed), no rounded rectangle =====
     - Sits at the very top of the viewport (behind the hamburger button)
     - We push the whole page down by adding padding-top to <body> equal to this section's height
  */
  .mobile-panel {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    background: var(--white);     /* solid top section */
    border-radius: 0;             /* NO rounded corners */
    box-shadow: none;             /* NO inner card shadow */
    z-index: 1200;                /* just under the hamburger */

    /* collapsed: slide up off-screen */
    transform: translateY(-100%);
    transition: transform .60s cubic-bezier(.22,.61,.36,1);
    /* padding is the vertical thickness of the section; adjust to taste */
    padding: 12px 16px;
  }

  /* open: slide the section into view at the top */
  .mobile-panel[data-open="true"] {
    transform: translateY(0);
  }

  /* the list of links inside the top section */
  .mobile-panel ul {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  /* ===== Push the whole page (including header/logo) down under the top section */
  /* JS will set --menu-h to the section's measured height in pixels */
  body {
    padding-top: 0;
    transition: padding-top .60s cubic-bezier(.22,.61,.36,1);
  }
  body.menu-open {
    padding-top: var(--menu-h, 0px); /* pushes everything down under the fixed section */
  }

  /* Dim the rest of the page so the top section stands out */
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.18);
    pointer-events: none;
    z-index: 1100; /* under hamburger (1201) and panel (1200) */
  }


  /* ===== Your existing mobile typography/layout (kept intact) ===== */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .cta-button { font-size: 0.9rem; padding: 0.6rem 1rem; }

  .hero { padding: 4rem 1rem 0; }
  .hero h2 { margin-bottom: 3rem; }
  .hero h3 { margin-bottom: 1rem; }
  .hero h3:last-of-type { margin-bottom: 3rem; }

  .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-card { min-height: unset; aspect-ratio: auto; text-align: left; }
  .service-card h5 { text-align: center; }
  .service-copy { width: auto; max-width: 42ch; margin: 0 auto; text-align: left; }
  .service-list { padding-left: 0; }
  .service-list li { padding-left: 1.25rem; }
  .service-card .custom-intro { margin-top: 1rem; }
}

    
