/* ==========================================================================
   Scroll Mobile — Main Stylesheet
   Design: Elegant Minimal, Timeless
   Palette: Black / White / Green accent
   Mobile-first responsive
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  --black: #0A0A0A;
  --white: #FAFAFA;
  --pure-white: #FFFFFF;
  --green: #1B9C6E;
  --green-dark: #157A56;
  --green-light: #E6F5EE;
  --grey-50: #F7F7F8;
  --grey-100: #EDEDEF;
  --grey-200: #D4D4D8;
  --grey-400: #A1A1AA;
  --grey-600: #52525B;
  --grey-800: #27272A;
  --grey-900: #18181B;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-arabic-display: 'IBM Plex Sans Arabic', sans-serif;
  --font-arabic-body: 'IBM Plex Sans Arabic', sans-serif;

  --max-width: 1200px;
  --section-padding: 4rem 1.25rem;
  --border-radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-800);
  background-color: var(--pure-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
  color: var(--grey-600);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--grey-400);
  max-width: 560px;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: var(--section-padding);
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--green);
  color: var(--pure-white);
}

.btn-primary:hover {
  background-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27, 156, 110, 0.3);
}

.btn-secondary {
  background-color: var(--pure-white);
  color: var(--black);
  border: 1.5px solid var(--grey-200);
}

.btn-secondary:hover {
  border-color: var(--grey-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background-color: var(--black);
  color: var(--pure-white);
}

.btn-dark:hover {
  background-color: var(--grey-800);
  transform: translateY(-1px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--black);
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-600);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--black);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-lang {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  border: 1.5px solid var(--grey-200);
  color: var(--grey-600);
  transition: all var(--transition);
}

.nav-lang:hover {
  border-color: var(--grey-400);
  color: var(--black);
}

.nav-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pure-white);
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--grey-800);
  border-bottom: 1px solid var(--grey-100);
}

.mobile-menu-ctas {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
}

/* Desktop nav */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-color: var(--black);
  padding: 6rem 1.25rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  filter: invert(1);
}

.hero h1 {
  color: var(--pure-white);
  margin-bottom: 1rem;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pure-white);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

/* --- Trust Bar --- */
.trust-bar {
  background-color: var(--grey-50);
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid var(--grey-100);
}

.trust-items {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.trust-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--grey-800);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .trust-items {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* --- Services --- */
.services {
  background-color: var(--pure-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--grey-50);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--grey-100);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--grey-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--pure-white);
}

.service-card h3 {
  margin-bottom: 0.625rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--grey-400);
  margin-bottom: 1.25rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: var(--pure-white);
  color: var(--grey-600);
  border: 1px solid var(--grey-100);
}

.service-highlight {
  background: var(--green-light);
  color: var(--green-dark);
  border-color: transparent;
  font-weight: 600;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Why Us --- */
.why-us {
  background-color: var(--black);
  color: var(--pure-white);
}

.why-us .section-label {
  color: var(--green);
}

.why-us .section-title {
  color: var(--pure-white);
}

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.why-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(27, 156, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item h4 {
  color: var(--pure-white);
  margin-bottom: 0.375rem;
}

.why-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Reviews --- */
.reviews {
  background-color: var(--grey-50);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.review-card {
  background: var(--pure-white);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  border: 1px solid var(--grey-100);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.review-star {
  color: #F59E0B;
  width: 16px;
  height: 16px;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}

.review-source {
  font-size: 0.75rem;
  color: var(--grey-400);
  margin-top: 0.125rem;
}

.reviews-cta {
  margin-top: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Gallery --- */
.gallery {
  background-color: var(--pure-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item.featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: white;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
}

/* --- Location --- */
.location {
  background-color: var(--grey-50);
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-detail {
  display: flex;
  gap: 1rem;
}

.location-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pure-white);
  border: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.location-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-400);
  margin-bottom: 0.25rem;
}

.location-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--grey-800);
  line-height: 1.5;
}

.location-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--grey-100);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-navigate {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .location-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Footer --- */
.footer {
  background-color: var(--black);
  color: var(--pure-white);
  padding: 3rem 1.25rem 1.5rem;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 32px;
  filter: invert(1);
}

.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 320px;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--green);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--pure-white);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: white;
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
  }
}

/* --- Blog Listing --- */
.blog-header {
  padding: 7rem 1.25rem 3rem;
  background: var(--black);
  text-align: center;
}

.blog-header h1 {
  color: var(--pure-white);
  margin-bottom: 0.75rem;
}

.blog-header p {
  color: rgba(255, 255, 255, 0.5);
}

.blog-list {
  padding: 3rem 1.25rem;
}

.blog-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blog-card {
  background: var(--pure-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--grey-100);
  padding: 2rem;
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: var(--grey-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h2 {
  font-size: 1.25rem;
  margin: 0.75rem 0;
}

.blog-card h2 a:hover {
  color: var(--green);
}

.blog-excerpt {
  font-size: 0.9375rem;
  color: var(--grey-400);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.blog-read-more {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.blog-read-more:hover {
  gap: 0.625rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Blog Post --- */
.post-header {
  padding: 7rem 1.25rem 3rem;
  background: var(--black);
}

.post-header .container {
  max-width: 720px;
}

.post-meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.post-header h1 {
  color: var(--pure-white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.post-body h2 {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.post-body h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.25rem;
}

.post-body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.post-body ul, .post-body ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.5rem;
}

.post-body li {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  color: var(--grey-600);
  list-style-type: disc;
}

.post-body ol li {
  list-style-type: decimal;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 2rem;
}

.post-back:hover {
  gap: 0.625rem;
}

.post-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--grey-50);
  border-radius: var(--border-radius);
  text-align: center;
}

.post-cta h3 {
  margin-bottom: 0.5rem;
}

.post-cta p {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

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

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

/* Stagger delays */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (min-width: 1024px) {
  :root {
    --section-padding: 6rem 2rem;
  }
}
