/* ============================================
   0. CSS VARIABLES
   These are custom properties - name your own values once at the top,
   then reuse them everywhere with var(--name). Change a color here and
   it updates the whole site. Sampled from the real Skyland AV logo.
   ============================================ */

:root {
  --navy: #12151c;         /* near-black navy used in the top bar & footer */
  --navy-soft: #1c212c;
  --orange: #ff7a1a;       /* flame orange from the logo */
  --red: #e2001a;          /* red accent from "AV SOLUTIONS" text */
  --gradient: linear-gradient(135deg, var(--orange), var(--red));
  --text: #222;
  --text-light: #666;
  --bg-soft: #f5f6f8;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}


/* ============================================
   1. RESET / BASE SETUP
   ============================================ */

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

body {
  font-family: 'Poppins', -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

h1, h2 {
  font-weight: 800; /* Poppins' extra-bold weight, for a bolder modern look */
  color: var(--navy);
}

.accent {
  /* Same orange-to-red gradient as the buttons, but applied to text.
     background-clip: text is the trick: it paints the gradient as the
     background, then clips that background so it only shows through
     the shape of the letters. color: transparent reveals it. */
  background: var(--gradient);
  -webkit-background-clip: text; /* -webkit- prefix needed for Safari/Chrome */
  background-clip: text;
  color: transparent;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.section-heading .line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.services,
.video-projects,
.photo-teaser,
.cta,
.main-nav {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}


/* ============================================
   2. TOPBAR (thin dark strip above the header)
   ============================================ */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--navy);
  color: #fff;
  padding: 10px 24px;
  font-size: 0.8rem;
}

.topbar .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: var(--gradient);
  transform: translateY(-2px);
}


/* ============================================
   3. HEADER (logo only, on white)
   ============================================ */

.site-header {
  display: flex;
  flex-direction: column; /* stacks children (logo, then tagline) top to bottom */
  align-items: center;
  padding: 20px 20px 16px;
}

/* eyebrow-hero already has its gradient-text styling from higher up in
   this file. This just adds a little breathing room now that it sits
   under the logo instead of inside the hero photo. */
.site-header .eyebrow-hero {
  margin-top: 10px;
}

.logo img {
  height: 130px;
  width: auto;
}


/* ============================================
   4. HERO
   ============================================ */

/* Plain version: used as-is on about.html and contact.html, a simple
   centred title banner on the normal white background. No image, no
   overlay, navy text (inherited from the shared h1, h2 rule). */
.hero {
  text-align: center;
  padding-top: 28px;
  padding-bottom: 100px; /* extra breathing room so the portrait badge
                            below has space to float into without
                            touching the "Let's Talk" button */
}

/* Photo version: an additional class added alongside .hero, only on
   index.html, where there's an actual background-image to darken.
   Keeping this separate from .hero itself is what stops the dark
   overlay from showing up on pages that don't have a photo behind it. */
.hero-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: 60px;
  padding-bottom: 140px;
}

/* A pseudo-element (::before) is an extra box CSS lets us generate
   without adding another element to the HTML. This one sits directly
   on top of the photo as a dark tint, so the white text above still
   reads clearly no matter how bright the stadium shot underneath is.
   The middle stop holds a light, consistent tint for most of the
   section, so the photo stays clearly visible, then the last stretch
   (80% to 100%) ramps quickly up to fully solid navy. That gives the
   photo a proper dissolve zone right at the bottom rather than a
   gradual darken the whole way down, so the eye reads it as the photo
   fading out on purpose instead of just running out of space. */
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 21, 28, 0.35) 0%,
    rgba(18, 21, 28, 0.4) 65%,
    rgba(18, 21, 28, 1) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.eyebrow-hero {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  /* same gradient-text trick as .accent */
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 640px;         /* keeps the wrap balanced across 2 lines */
  margin: 0 auto 40px;
  text-align: center;
  /* color and font-weight come from the shared h1, h2 rule higher up
     (bold navy), which is correct for the plain white-background hero. */
}

/* Only the photo version needs white text, overriding the navy from
   the rule directly above it. */
.hero-photo h1 {
  color: #fff;
}

.service-area {
  max-width: 650px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-size: 1rem;
}

/* .service-area is reused on photos.html and contact.html, which both
   still have a plain white background, so the general rule above has
   to stay as-is. This override only applies inside .hero-photo, where
   the dark grey text from that rule would be unreadable on the photo. */
.hero-photo .service-area {
  color: rgba(255, 255, 255, 0.75);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* hero-highlights currently only appears inside .hero-photo on
   index.html, so this overrides the two rules above back to white
   text and a faint white divider line for that dark background. */
.hero-photo .hero-highlights {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.hero-photo .hero-highlights li {
  color: #fff;
}

.hero-highlights i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* On narrow screens, .hero-highlights wraps to one item per row. Since
   each li's width follows its own text length ("Testing & Tagging" vs
   "Social Media Content Creation"), centering each one individually
   left the icons landing at different horizontal positions row to row.
   Stacking them as a column and giving every row the same fixed width
   means each li starts at the same x position regardless of how long
   its text is, so the icons line up in a clean vertical column. */
@media (max-width: 600px) {
  .hero-highlights {
    flex-direction: column;
    align-items: center;
  }

  .hero-highlights li {
    width: 100%;
    max-width: 300px;
  }
}

.button {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(226, 0, 26, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(226, 0, 26, 0.35);
}


/* ============================================
   5. BANNER (dark gradient background + text)
   Extra bottom padding leaves room for the service cards to overlap up
   into the banner, which is the layered effect from your current site.
   ============================================ */

.banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  padding-top: 40px;
  padding-bottom: 140px; /* extra room for the cards to float into */
}

.banner-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;      /* a circle: half the box's own width/height */
  margin: -90px auto 24px; /* negative top margin pulls it up above the
                               banner's top edge, into the white hero
                               section - the "portrait badge" effect.
                               Kept smaller than the hero's extra bottom
                               padding above, so it clears the button. */
  background: var(--gradient);
  padding: 5px;             /* creates the visible gradient ring */
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.banner-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;   /* fills the circle without stretching the photo */
  object-position: top center; /* keeps the face in frame */
  background-color: #fff;
}

.banner-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.banner-inner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.banner-inner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}


/* ============================================
   6. SERVICES (floats up over the banner)
   ============================================ */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: -90px; /* pulls this section up on top of the banner's bottom edge */
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.service-card {
  display: block; /* needed since the Photography card is now a <a> link,
                      and links are inline by default */
  background-color: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  border-image: var(--gradient) 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.service-card h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}


/* ============================================
   7. VIDEO SECTION
   ============================================ */

.video-projects {
  padding-bottom: 60px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px; /* matches .photo-teaser img below, so the two line up */
  margin: 0 auto 32px;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden; /* clips the iframe corners to match the rounded box */
  box-shadow: var(--shadow);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* ============================================
   8. PHOTO TEASER + CTA
   ============================================ */

.photo-teaser {
  text-align: center;
  padding-bottom: 60px;
}

.photo-teaser img {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============================================
   8b. PHOTO GALLERY PAGE (dark theme)
   Scoped with the .page-photos class on <body>, so only this page is
   affected - the topbar, header and footer are left alone since they're
   already navy/white and don't need to change.
   ============================================ */

/* One flat color for the entire page - topbar, header, main content and
   footer all match, so there's no visible seam anywhere. */
.page-photos {
  background-color: var(--navy);
}

.page-photos .site-header {
  background-color: var(--navy);
  padding-top: 24px;
}

.page-photos main {
  padding-top: 20px;
}

.page-photos h1 {
  color: #fff;
}

.page-photos .service-area {
  color: rgba(255, 255, 255, 0.65);
}

.page-photos .gallery-item {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-photos .cta {
  background-color: var(--navy); /* same as the rest of the page - no seam */
}

.page-photos .cta h2 {
  color: #fff;
}

/* Text-based logo lockup for dark backgrounds, used instead of the
   image logo (which has black text and would disappear on navy). */
.logo-text {
  text-align: center;
}

.logo-main {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.logo-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-top: 2px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gallery-intro {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 20px 40px;
  text-align: center;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  /* CSS columns: a simple way to build a Pinterest-style "masonry" grid
     without JavaScript. Each item flows into the shortest column,
     photos keep their natural (not cropped) proportions. */
  column-count: 3;
  column-gap: 16px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid; /* stops a photo being split across two columns */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 550px) {
  .gallery-grid {
    column-count: 1;
  }
}


/* ============================================
   8c. LIGHTBOX (full-size photo viewer)
   ============================================ */

.lightbox {
  display: none; /* hidden by default; JS adds .active to show it */
  position: fixed;
  inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0; */
  background-color: rgba(18, 21, 28, 0.94);
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh; /* vh = % of the browser window's visible height */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gradient);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 600px) {
  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}


.cta {
  background-color: var(--bg-soft);
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  border-radius: var(--radius);
  margin-bottom: 60px;
}

.cta h2 {
  margin-bottom: 24px;
}


/* ============================================
   8c-2. ABOUT PAGE
   ============================================ */

.about-content {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}

.about-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-text .button {
  margin-top: 8px;
}

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

  .about-photo img {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* A landscape photo alongside a short paragraph, similar idea to
   .about-content above but with the proportions flipped, this photo
   is wide rather than tall, so it gets more of the row instead of a
   narrow fixed column. flex: 1.2 vs flex: 1 just means the photo side
   claims slightly more of the available space than the text side. */
.location-split {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.location-photo {
  flex: 1.2;
}

.location-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-text {
  flex: 1;
}

.location-text p {
  color: var(--text-light);
  margin-top: 16px;
}

@media (max-width: 700px) {
  .location-split {
    flex-direction: column;
  }
}

.clients {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 0 20px;
  text-align: center;
}

.client-list {
  column-count: 3;
  column-gap: 32px;
  text-align: left;
}

.client-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  break-inside: avoid;
  font-size: 0.95rem;
  color: var(--text-light);
}

.client-list a {
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s ease;
}

.client-list a:hover {
  color: var(--orange);
}

.client-note {
  margin-top: 20px;
  color: var(--text-light);
  font-style: italic;
}

@media (max-width: 700px) {
  .client-list {
    column-count: 2;
  }
}

@media (max-width: 450px) {
  .client-list {
    column-count: 1;
  }
}


/* ============================================
   8c-3. LEGAL / SUPPORT PAGES (privacy policy, app support)
   ============================================ */

.legal-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.legal-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.legal-content h1 {
  font-size: 1.8rem;
  margin-bottom: 0; /* the row's own gap handles spacing now */
}

.legal-icon {
  color: var(--orange);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 32px;
  margin-bottom: 8px;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 4px;
}

.legal-content li {
  color: var(--text-light);
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--orange);
  font-weight: 600;
}


/* ============================================
   8c-4. JFAT APP LANDING PAGE
   Uses a green accent (--jfat-green) throughout, since this page
   represents a different business/brand (Johnson First Aid Training)
   riding along on Skyland's site, rather than Skyland's own orange/red.
   ============================================ */

.app-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.app-badge {
  display: inline-block;
  background-color: #e6f6ea;
  color: #1a8f4c;
  border: 1px solid #b8e6c4;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.app-hero-text h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.app-hero-text > p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.app-icon-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.app-store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1.3;
}

.app-store-badge i {
  font-size: 1.6rem;
}

.app-screenshots {
  display: flex;
  gap: 16px;
  overflow-x: auto;
}

.app-screenshots img {
  width: 33%;
  flex-shrink: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.app-features {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.app-feature-card {
  background-color: var(--bg-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.app-feature-card h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.app-feature-card p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.app-feature-card li {
  color: var(--text-light);
  list-style: disc;
  margin-left: 20px;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.app-feature-card a,
.app-faq-item a,
.app-notice a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 122, 26, 0.4);
}

.app-feature-card a:hover,
.app-faq-item a:hover,
.app-notice a:hover {
  text-decoration-color: var(--orange);
}

.app-steps {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.app-step {
  border: 1px dashed #ddd;
  border-radius: var(--radius);
  padding: 24px;
}

.app-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #1a8f4c;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.app-step h3 {
  margin-bottom: 6px;
}

.app-step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.app-links {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: flex;
  gap: 12px;
  color: var(--text-light);
}

.app-links a {
  color: var(--navy);
  font-weight: 600;
}

.app-faq {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.app-faq h2 {
  margin-bottom: 24px;
}

.app-faq-item {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.app-faq-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.app-faq-item p {
  color: var(--text-light);
}

.app-notice {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 20px;
  background-color: #f2f9f4;
  border: 1px solid #d9efdf;
  border-radius: var(--radius);
}

.app-notice p {
  margin-bottom: 8px;
}

.app-notice-small {
  color: var(--text-light);
  font-size: 0.8rem;
}

@media (max-width: 750px) {
  .app-hero {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   8c-5. APP SUPPORT PAGE
   ============================================ */

.support-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.support-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.support-hero h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.support-hero > div > p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.support-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-button {
  border: 1px solid #cfd8e3;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 8px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.support-button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

@media (max-width: 550px) {
  .support-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


/* ============================================
   8d. CONTACT PAGE
   ============================================ */

.contact-section {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* The honeypot trick: this field is real HTML a browser renders, but
   we hide it visually so a human never sees or fills it in. Spam bots
   that blindly auto-fill every input on the page don't know to skip it,
   so if it comes through with a value, the backend knows to ignore
   that submission. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.15);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical; /* lets visitors drag to make it taller, not wider */
}

.contact-form button.button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  align-self: flex-start;
}

.contact-form button.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 20px; /* reserves space so the layout doesn't jump when a message appears */
}

.form-status--success {
  color: #1a8f4c;
}

.form-status--error {
  color: var(--red);
}

.contact-details {
  background-color: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-details h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-light);
}

.contact-details i {
  width: 20px;
  color: var(--orange);
}

.contact-details .social-icons a {
  background-color: rgba(0, 0, 0, 0.06);
  color: var(--navy);
}

.contact-details .social-icons a:hover {
  color: #fff;
}

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


/* ============================================
   9. FOOTER
   ============================================ */

.site-footer {
  background-color: var(--navy);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.site-footer .social-icons {
  justify-content: center;
  margin-bottom: 16px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}


/* ============================================
   10. RESPONSIVE: small screens
   ============================================ */

@media (max-width: 700px) {
  .banner {
    padding-bottom: 100px;
  }

  .services {
    margin-top: -60px;
  }
}

@media (max-width: 600px) {
  .topbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .main-nav ul {
    gap: 20px;
  }
}
