/* ============================================
   PUBLIC SECTOR PARTNERS — MAIN STYLESHEET
   Colours: Red (#D32F2F), Blue (#1565C0), Black (#1A1A1A)
   Style: Bold & Dynamic
   ============================================ */

/* --- CSS Variables --- */
:root {
  --red: #D32F2F;
  --red-dark: #B71C1C;
  --blue: #1565C0;
  --blue-dark: #0D47A1;
  --blue-light: #E3F2FD;
  --black: #1A1A1A;
  --dark-gray: #333333;
  --med-gray: #666666;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark-gray);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red); }

/* --- Skip to Content (Accessibility) --- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--red);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* --- Global Focus States (WCAG 2.1 AA) --- */
*:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
a:focus-visible { border-radius: 4px; }
button:focus-visible { border-radius: var(--radius); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--black);
  line-height: 1.2;
  font-weight: 800;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); margin-bottom: 16px; }
h4 { font-size: 1.15rem; margin-bottom: 12px; }

p { margin-bottom: 16px; font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}
.site-logo span { color: var(--red); }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav .current-menu-item a {
  color: var(--white);
  background: var(--red);
  outline: none;
}

/* Dropdown Menu — Services */
.main-nav > ul > li {
  position: relative;
}

/* Arrow indicator on parent with sub-menu */
.main-nav > ul > li.menu-item-has-children > a::after {
  content: '▾';
  margin-left: 5px;
  font-size: 0.75rem;
}

/* Sub-menu dropdown */
.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(26, 26, 26, 0.98);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  flex-direction: column;
  gap: 0;
  z-index: 1001;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  list-style: none;
}

/* Show dropdown on hover AND focus-within (keyboard nav) */
.main-nav > ul > li.menu-item-has-children:hover > .sub-menu,
.main-nav > ul > li.menu-item-has-children:focus-within > .sub-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Sub-menu links */
.main-nav .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 0;
  white-space: nowrap;
}
.main-nav .sub-menu a:hover {
  background: var(--red);
  color: var(--white);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(21, 101, 192, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--red);
  display: block;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page-level hero (shorter) */
.hero-page {
  min-height: 50vh;
}
.hero-page .hero-content {
  padding: 140px 0 60px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
}

.section-gray {
  background: var(--light-gray);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.85); }

.section-blue {
  background: var(--blue);
  color: var(--white);
}
.section-blue h2 { color: var(--white); }
.section-blue p { color: rgba(255, 255, 255, 0.9); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-header .label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--blue);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--red);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px;
}

.service-card h3 {
  color: var(--blue);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--med-gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card .card-link {
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .card-link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}
.service-card:hover .card-link::after {
  transform: translateX(4px);
}

/* ============================================
   CONTENT SECTIONS (SERVICE PAGES)
   ============================================ */
.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-section.reversed {
  direction: rtl;
}
.content-section.reversed > * {
  direction: ltr;
}

.content-text h2 {
  color: var(--blue);
}

.content-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin-top: 12px;
  border-radius: 2px;
}

.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.feature-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 1.05rem;
  color: var(--dark-gray);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
}

/* Why it matters box */
.why-box {
  background: var(--blue-light);
  border-left: 5px solid var(--blue);
  padding: 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
}

.why-box h3 {
  color: var(--blue);
  margin-bottom: 12px;
}

/* ============================================
   PROFESSIONALS SECTION
   ============================================ */
.professionals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.professional-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}
.professional-card:hover {
  border-left-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.professional-card h3 {
  color: var(--blue);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Standards list */
.standards-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.standards-list li {
  padding: 16px 16px 16px 48px;
  background: var(--light-gray);
  border-radius: var(--radius);
  position: relative;
  font-weight: 600;
}

.standards-list li::before {
  content: '\2713';
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--red);
  font-weight: 800;
  font-size: 1.2rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--blue-dark) 100%);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: var(--transition);
}
.contact-info-card:hover {
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  transition: var(--transition);
  margin-bottom: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.15);
}

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

/* ============================================
   CONTACT FORM 7 STYLING
   ============================================ */
.wpcf7-form .form-style-1 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wpcf7-form .columns_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.wpcf7-form .columns_wrap .column-1_1 {
  grid-column: 1 / -1;
}

.wpcf7-form .columns_wrap p {
  margin-bottom: 0;
}

/* Input & Textarea Base Styles */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--dark-gray);
  background: var(--white);
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.12);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #999;
  font-weight: 400;
}

.wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* Style-line wrappers — remove default CF7 styling */
.wpcf7-form .style-line {
  display: block;
}

/* Submit Button */
.wpcf7-form input[type="submit"] {
  display: inline-block;
  padding: 16px 40px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  width: auto;
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7-form input[type="submit"]:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.wpcf7-form input[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Acceptance Checkbox */
.wpcf7-form .wpcf7-acceptance {
  margin-top: 12px;
}

.wpcf7-form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--med-gray);
  line-height: 1.5;
  cursor: pointer;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}

.wpcf7-form .wpcf7-acceptance a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

.wpcf7-form .wpcf7-acceptance a:hover {
  color: var(--red);
}

/* Bottom row: submit + acceptance inline */
.wpcf7-form .form-style-1 > p:last-of-type {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

/* Margin bottom spacing between columns_wrap */
.wpcf7-form .columns_wrap.margin-bottom {
  margin-bottom: 8px;
}

/* Validation Error Styles */
.wpcf7-form .wpcf7-not-valid {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12) !important;
}

.wpcf7-form .wpcf7-not-valid-tip {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* Response Messages */
.wpcf7-form .wpcf7-response-output {
  border: none !important;
  padding: 16px 20px !important;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 16px 0 0 !important;
}

.wpcf7-form.sent .wpcf7-response-output {
  background: #E8F5E9;
  color: #2E7D32;
  border-left: 4px solid #2E7D32 !important;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
  background: #FFEBEE;
  color: var(--red);
  border-left: 4px solid var(--red) !important;
}

.wpcf7-form.invalid .wpcf7-response-output {
  background: #FFF3E0;
  color: #E65100;
  border-left: 4px solid #E65100 !important;
}

/* Spinner */
.wpcf7-form .wpcf7-spinner {
  margin-left: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .wpcf7-form .columns_wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wpcf7-form .form-style-1 > p:last-of-type {
    flex-direction: column;
    align-items: flex-start;
  }

  .wpcf7-form input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .site-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--red);
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .content-section { grid-template-columns: 1fr; gap: 32px; }
  .content-section.reversed { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .standards-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--black);
    padding: 80px 24px 24px;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 12px 16px; font-size: 1rem; }

  /* Mobile dropdown — inline expand instead of absolute */
  .main-nav .sub-menu {
    position: static;
    min-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    transform: none;
    transition: max-height 0.3s ease;
  }
  .main-nav .sub-menu.open {
    display: flex;
    max-height: 500px;
  }
  .main-nav .sub-menu a {
    padding: 10px 16px 10px 32px;
    font-size: 0.95rem;
  }
  .main-nav > ul > li.menu-item-has-children:hover > .sub-menu {
    display: none;
  }
  .main-nav > ul > li.menu-item-has-children > .sub-menu.open {
    display: flex;
  }

  .hero { min-height: 70vh; }
  .hero-page { min-height: 45vh; }
  .hero h1 { font-size: 2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .section { padding: 56px 0; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .btn { padding: 14px 28px; font-size: 0.95rem; }
}
