/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f9f9f9 !important;
  color: #333 !important;
  padding-top: 80px; /* For fixed nav */
  overflow-x: hidden;
  font-size: 1rem;
}



/* Top Navigation Bar */
.top-bar {
  background-color: #00AEEF !important;
  color: #000 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;       /* ✅ allow links to wrap if needed */
  overflow: visible;     /* ✅ ensures we don’t clip anything */
  min-width: 0;  
  flex-shrink: 1;

  width: 100%;           /* ✅ Full width */
  max-width: none;       /* ✅ Remove width constraint */
  margin: 0;             /* ✅ No centering margin */

  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sky-banner {
  background-color: #00AEEF !important; /* Soft sky blue */
  color: #000 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
/* Logo section */
.logo-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-logo {
  height: 48px;
  width: auto;
}

/* Site name */
.site-name {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: Verdana, sans-serif;
  color: #2d3a45; /* Dark bluish-gray for contrast */
  text-decoration: none;
  white-space: nowrap;
}
.site-name:hover {
  color: #1e2a33;
}

body {
  padding: 80px 1rem 1rem;
   padding-top: 80px; /* Increase if mobile navbar is taller */

}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* Logo */
.logo-left a {
  font-family: Verdana, sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: rgba(0, 0, 0, 0.705);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.logo-left a:hover {
  color: black;
}



/* Navigation Links */
.nav-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex: 0 0 auto;            /* ✅ Prevent stretching full width */
  padding-right: 1rem;
  gap: 1rem;
}


.nav-right a {
  margin-left: 1.2rem;
  font-weight: bold;
  color: black !important;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-right a:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.2);
}
.nav-wrapper {
  display: flex;
  justify-content: flex-end;
  /* width: 100%; */
}


/* Subtitle */
.site-subtitle {
  text-align: center;
  font-family: Verdana, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #5f5d5d;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0; /* remove bottom gap */
  margin-top: 1.5rem;
}

.intro-paragraph {
  font-family: Verdana, sans-serif;
  font-weight: bold;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: 1.05rem;
  color: #666;
  text-align: left;
  line-height: 1.6;
  margin-top: 0.2rem; /* small buffer to breathe */
  font-weight: bold; /* increases the font weight of the paragraph */
}
/* Aligns intro paragraph visually and structurally */
.intro-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* sky-divider */
.sky-divider {
  height: 3px;
  background-color: skyblue;
  border: none;
  max-width: 970px;
  margin: 0.5rem auto;

/* Animation defaults */
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.sky-divider.visible {
  opacity: 1;
  transform: scaleX(1);
}

/* Expert Block Section */
.expert-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;;
  justify-content: center;
  max-width: 1000px;
  margin: 2rem auto 0 auto; /* remove bottom margin */
  padding: 0 1rem;
  gap: 2rem;
  margin-bottom: 0;
  padding-bottom: 0;

/* ✨ fade-in */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.expert-block.visible {
  opacity: 1;
  transform: translateY(0);
}
.expert-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}
.expert-image img {
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: auto;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.expert-text {
  flex: 1;
  min-width: 280px;
  font-family: Verdana, sans-serif;
  color: #333;
}

.expert-text h3 {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 0;
  padding-bottom: 0;
}

.expert-text p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: bold; /* Increases font weight */
}
.expert-paragraphs p {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.6;
  margin: 1rem 0 0;
  text-align: left;
  padding: 0;
  font-weight: bold;

  /* 👇 Effect */
  padding-left: 3rem;      /* shifts all lines inward */
  text-indent: -2rem;      /* pulls only the FIRST line left */
}


/* expert-followup */
.expert-followup {
  max-width: 800px;
  margin: 0.5rem auto 0 auto; /* Top margin added here */
  font-family: Verdana, sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  text-align: left;
  padding: 0 1rem;
}

/* relief-info */
.relief-info {
  max-width: 1000px;
  margin: 0 auto;
  /*padding: 1rem 1.5rem; */
  padding: 1rem 1.2rem 1rem; /* Moderate padding */
  font-family: Verdana, sans-serif;
  background-color: #f9fbff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding-top: 0.25rem;     /* or even 0.5rem */
  margin-bottom: 0;

/* animation effect */
opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.relief-info.visible {
  opacity: 1;
  transform: translateY(0);
}

.relief-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem; 
  align-items: center;
}

.relief-image img {
  display: block;
  width: 100%;
  max-width: 400px;
  min-height: 400px; /* 🔁 for the image and text to be aligned well */
  object-fit: cover;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.relief-text {
  flex: 1;
  min-width: 280px;
  color: #777;

}

.relief-text h3 {
  font-size: 1.2rem; /* slightly smaller than 1.4rem */
  color: #777;
  margin-bottom: 0;
  font-weight: 800;  /* was default or 600-ish */
  padding-bottom: 0;
}

.relief-text p {
  font-size: 0.85rem; /* slightly reduced from 1.05rem */
  color: #777;
  line-height: 1.6;
  text-align: left;
  text-indent: 0; /* maintain graceful flow */
  margin-bottom: 1.2rem;
  font-weight: 800;
  margin-top: 0;

}

/* about */
.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.about-image-wrapper {
  position: relative;
  max-width: 350px;
  flex-shrink: 0;
  margin-left: 2rem; /* ✅ Adds that gentle nudge to the right */
}


.about-image-wrapper img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: block;
  padding-top: 0.3rem; /* ✅ Add this */
}

.about-intro {
  position: relative;
  padding-top: 2rem;  /* ✅ Gives breathing room below the nav bar */
  z-index: 1;          /* Keeps it behind fixed nav but above background */

  max-width: 1100px;   /* ✅ Match home layout width */
  margin: 0 auto;      /* ✅ Center horizontally */
  padding-left: 1rem;  /* Optional: horizontal breathing room */
  padding-right: 1rem;
}

/* ✨ Golden horizontal divider */
.gold-bar {
  width: 98%; /* or try 70%, depending on your layout */
  max-width: 680px;
  height: 4px;
  background: gold;
  border-radius: 2px;
  margin-bottom: 1rem;
  margin-top: 20px;
  margin: 1.25rem auto; /* vertical margin + centering */


  /* Scroll animation */
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.gold-bar.visible {
  opacity: 1;
  transform: translateX(0);
}
.gold-bar.gold-bar-image-aligned {
  width: 98%;                /* Keeps it responsive */
  max-width: 1100px;         /* 👈 Match your .about-intro container */
  height: 4px;
  background: gold;
  border-radius: 2px;
  margin: 1.25rem auto;      /* ✅ Center it */

  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gold-bar.gold-bar-image-aligned.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-summary-text {
  max-width: 1100px;
  margin: 1.5rem auto 2rem auto;
  padding: 0 1rem;
  font-family: Verdana, sans-serif;
  color: #555;
}

.about-summary-text p {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  text-indent: -2rem;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}



.about-content {
  flex: 1;
  font-family: Verdana, sans-serif;
  color: #333;
  padding-top: 0.5rem;
  position: relative;
  margin-top: 0.3rem; /* ✅ Add this if needed */
}

.about-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.05rem;
  font-weight: 600;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ABOUT US section custom styles */
.about-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #333;
  font-family: Verdana, sans-serif;
}

.about-us-image {
  text-align: center;
  margin: 2rem 0;
}

.about-us-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.about-us-paragraph {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 500;
  font-family: Verdana, sans-serif;
  color: #444;
  padding: 1rem;
}

.legal-team-showcase {
  padding: 2rem 1rem;
  background-color: #f5f9fc;
}

.team-flex {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.attorney-box {
  max-width: 420px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.attorney-photo {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.attorney-bio h3 {
  margin: 0.2rem 0;
  font-size: 1.3rem;
  color: #2c3e50;
}

.attorney-bio p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 0.75rem;
}

.attorney-bio blockquote {
  font-style: italic;
  color: #003366;
  margin-top: 1rem;
}


.contact-intro {
  position: relative;
  padding-top: 2rem;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.contact-image-wrapper {
  position: relative;
  max-width: 350px;
  flex-shrink: 0;
  margin-left: 2rem;
}

.contact-image-wrapper img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: block;
  padding-top: 0.3rem;
}

.contact-content {
  flex: 1;
  font-family: Verdana, sans-serif;
  color: #333;
  padding-top: 0.5rem;
  margin-top: 0.3rem;
}
.contact-content p {
  font-size: 1.3rem;
  font-weight: 800;
  color: #777;
  line-height: 1.8;

  text-align: center;         /* centers continuation lines */
  text-indent: -2rem;         /* pulls just the first line left */
  padding-left: 2rem;         /* indents the whole block inward */
  margin-bottom: 1.5rem;
}


.contact-message-block {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
  font-family: Verdana, sans-serif;
}

.contact-lead {
  font-size: 1.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 1rem;
}

.contact-followup {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  line-height: 1.7;
}

.contact-followup a {
  color: #0066cc;
  font-weight: 700;
  text-decoration: none;
}

.contact-followup a:hover {
  text-decoration: underline;
}
.contact-content a {
  color: #003366;
  font-weight: bold;
  text-decoration: underline;
}
.contact-content a:hover {
  color: #0066cc;
}


/* Hero Section */
.hero {
  background: url('img/hero-law-image.jpg') center/cover no-repeat;
  color: rgb(245, 239, 239);
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 0; /* 👈 This separates it from the block above */
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
}


/* Buttons */
.btn-primary {
  background: #0066cc;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-transform: uppercase; 
}
form .btn-primary {
  text-transform: none !important; /* overrides the uppercase for the form button */
}


/* Content Section */
.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.section.dark {
  background: #e0e7f1;
}

.section ul {
  list-style: none;
  padding: 0;
}

.section ul li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

section.section {
  margin-top: 1rem;
  margin-bottom: 1rem;
}


/* Testimonials */
.testimonial-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial {
  background: white;
  border-left: 5px solid #0066cc;
  padding: 1.5rem;
  max-width: 300px;
  font-style: italic;
}

/* Form Styling */
form {
  display: block;
  max-width: 600px; /* ❌ this causes misalignment */
  margin: auto;
}
form {
  max-width: none; /* this solves the misalignment */
  margin: 0;
}

.contact-form-section {
  padding: 4rem 1rem;
}

.form-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 1rem;   /* aligns with .contact-intro */
  padding-right: 1rem;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

form input,
form textarea {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-row {
  padding-left: 1rem; /* Matches .review-intro-aligned and .review-highlight-aligned */
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row label {
  width: 220px;
  font-weight: 700;
  margin-top: 0.5rem;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.required {
  color: red;
  margin-left: 4px;
}


/* Footer */
footer {
  background: #00274d;
  color: white;
  text-align: center;
  padding: 1rem;
}
.footer-callout {
  max-width: 800px;
  margin: auto;
  padding: 1.2rem 1.5rem 0.5rem;
  text-align: center;
}

.footer-callout h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.footer-callout p {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  line-height: 1.6;
}

/* Footer Bottom Section */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.75rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #ddd;
}

/* review section */
/* === Review Intro Section === */
.review-intro-aligned {
  max-width: 1100px;
  margin: 2rem auto 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: flex-end;
}

.review-intro-aligned .short-divider {
  width: 400px;
  height: 4px;
  background: gold;
  border-radius: 2px;
  margin: 0; /* Ensures it's flush against the image block below */
  display: block;
}

.review-messages {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 700px;
  align-self: flex-start; /* 👈 positions the block beside the divider */
}

.review-note {
  align-self: flex-start;
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #888;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  text-align: left;        /* centers continuation lines */
  text-indent: -1rem;        /* pulls first line left */
  padding-left: 0;        /* indents paragraph as a block */
  max-width: 700px;
}
.review-note-centered {
  font-size: 1.4rem;
  font-weight: 800;
  color: #777;
  line-height: 1.6;
  margin: 0;
  text-align: center;         /* centers continuation lines */
  text-indent: -2rem;         /* first line nudged left */
  padding-left: 2rem;         /* entire block is indented */
  max-width: 700px;
}


/* === Review Image Section Aligned with Divider === */
.review-highlight-aligned {
  max-width: 1100px;
  flex-direction: column;
  margin: 0 auto 2rem auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
}

.review-highlight-aligned img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.review-box {
  background: #fefefe;
  padding: 1rem;
  border-left: 5px solid #0066cc;
  margin-bottom: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.06);
}

.review-box form {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.review-box button {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

button[value="approve"] {
  background-color: #2ecc71;
  color: white;
}

button[value="archive"] {
  background-color: #e74c3c;
  color: white;
}

.pagination {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-weight: bold;
}

.pagination a {
  padding: 0.5rem 1rem;
  background-color: #0066cc;
  color: white;
  border-radius: 4px;
  text-decoration: none;
}

.pagination span {
  color: #444;
}

.show-more {
  text-align: center;
  margin-top: 20px;
}
.btn-show-more {
  display: inline-block;
  padding: 10px 16px;
  background-color: #0074D9;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}
.btn-show-more:hover {
  background-color: #005fa3;
}



/* Responsive Layout */
@media screen and (max-width: 768px) {

  /* Base and Layout */
  body {
    background: #f9f9f9 !important;
    color: #333 !important;
    font-size: 0.95rem;
    padding-top: 100px;
    overflow-x: hidden;
  }
  

  /* Top Nav */
  .top-bar,
  .sky-banner {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 0.5rem;
    background-color: #00AEEF;
  }

  .logo-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0 1rem;
    /* gap: 0.5rem; */
    margin-bottom: 0.2rem;
    font-size: 0.2rem;
    gap: 0.5px;
  padding-left: 1px; /* Shift logo to the left */
  }
  .site-logo,
  .logo-img {
    max-width: 50px;      /* reduced from 120px */
    height: auto;
  }
  .site-name {
  font-size: 0.2rem;
  font-weight: 300;
  white-space: nowrap;        /* Prevent wrap */
  overflow: visible;
  text-overflow: clip;
  margin-left: 2px;       /* ✅ Optional fine-tune */
}
  .nav-right,
.nav-links {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;     /* ✅ Align links to the right */
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.4rem;
  width: 100%;
  padding: 0.3rem 0.5rem;
  overflow-x: auto;              /* ✅ Allow horizontal scroll if needed */
}

.nav-right a {
  color: #000000 !important;
  margin: 0.3rem 0.6rem;
  padding: 0.3rem 0.5rem;
  font-size: 0.7rem;
  white-space: nowrap;
  text-decoration: none;
}


  /* Subtitle + Intro */
  .site-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 1rem;
    padding: 0 1rem;
  }

  .intro-paragraph {
    font-size: 1rem;
    padding: 0 1rem;
    text-align: left;
  }

  .intro-wrapper,
  .expert-followup,
  .form-container,
  .about-intro,
  .about-summary-text,
  .about-content,
  .contact-intro,
  .contact-content {
    padding: 0 1rem;
    text-align: left;
  }

  .sky-divider,
  .gold-bar,
  .gold-bar.gold-bar-image-aligned {
    max-width: 90%;
    margin: 0.5rem auto;
  }

  /* Expert Section */
  .expert-block,
  .expert-flex,
  .relief-flex,
  .about-flex,
  .team-flex,
  .contact-flex {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .expert-image img,
  .relief-image img,
  .about-image-wrapper img,
  .contact-image-wrapper img,
  .review-highlight-aligned img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }

  .expert-text h3,
  .expert-text p,
  .expert-paragraphs p,
  .relief-text h3,
  .relief-text p,
  .contact-content p {
    font-size: 1rem;
    text-indent: 0;
    padding-left: 0;
    text-align: left;
  }

  .about-content h2 {
    font-size: 1.3rem;
  }

  .about-summary-text p,
  .about-us-paragraph {
    font-size: 1rem;
    text-align: left;
    text-indent: 0;
    padding-left: 0;
  }

  .about-heading {
    font-size: 1.5rem;
  }

  /* Contact Info */
  .contact-message-block {
    padding: 0 1rem;
    text-align: left;
  }

  .contact-lead,
  .contact-followup {
    font-size: 1rem;
    line-height: 1.6;
  }

  .contact-followup a,
  .contact-content a {
    word-break: break-word;
  }

  /* Hero Banner */
  .hero {
    padding: 2rem 1rem;
    margin-top: 0;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  /* Buttons */
  .btn-primary {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }

  .btn-show-more {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
  }

  .show-more {
    margin-top: 1.5rem;
    text-align: center;
  }

  /* Content Sections */
  .section {
    padding: 2rem 1rem;
  }

  .section ul li {
    font-size: 1rem;
  }

  /* Testimonials */
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .testimonial {
    max-width: 100%;
    padding: 1rem;
  }

  /* Forms */
  .form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-left: 0;
    margin-bottom: 1rem;
  }

  .form-row label {
    width: auto;
    margin-bottom: 0.3rem;
  }

  .form-row input,
  .form-row textarea,
  form input,
  form textarea {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem;
  }

  .contact-form-section {
    padding: 2rem 1rem;
  }

  /* Footer */
  footer,
  .footer-callout {
    padding: 1rem;
    text-align: center;
  }

  .footer-callout h4,
  .footer-callout p,
  .footer-bottom {
    font-size: 0.95rem;
  }

  .footer-bottom {
    padding-top: 0.5rem;
  }

  /* Review Section */
  .review-intro-aligned {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .review-intro-aligned .short-divider {
    width: 100%;
    margin-bottom: 1rem;
  }

  .review-messages,
  .review-note,
  .review-note-centered {
    font-size: 1rem;
    text-align: left;
    padding-left: 0;
    text-indent: 0;
    max-width: 100%;
  }

  .review-highlight-aligned {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .review-box {
    padding: 0.75rem;
    font-size: 1rem;
  }

  .review-box form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .review-box button {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }

  button[value="approve"],
  button[value="archive"] {
    font-size: 1rem;
  }

  /* Pagination */
  .pagination {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
  }

  .pagination a {
    padding: 0.6rem 1rem;
    width: auto;
  }

  .pagination span {
    text-align: center;
  }
}

/* 🌙 Preserve sky blue color in dark mode */
@media (prefers-color-scheme: dark) {
  .top-bar {
    background-color: #00AEEF;
  }
}