:root {
  --bg-cream: #d4e5f02b;
  --bg-yellow: #a1e7dec7;
  --bg-light-blue: #d4e5f02b;
  --bg-green: #87ceeb;
  --bg-pink: #FCE7F3;
  --text-dark: #111827;
  --text-muted: #4B5563;
  --primary-dark: #1F2937;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --radius: 24px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0;
}

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

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

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
}

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

.btn.dark:hover {
  background-color: #000;
}

.link-btn {
  font-weight: 600;
  text-decoration: underline;
  color: var(--text-dark);
}

.icon-btn {
  background: none;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Header */
.site-header {
  padding: 20px 0;
  background-color: var(--bg-cream);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.brand img {
  height: 170px;
  width: auto;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav a.active,
.nav a:hover {
  color: var(--text-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  background: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fade-up 0.8s ease-out both;
}

.hero-content p {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  animation: fade-up 0.9s ease-out both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  animation: fade-up 1s ease-out both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: fade-up 1.1s ease-out both;
}

.stat-box {
  background: var(--bg-yellow);
  padding: 16px 24px;
  border-radius: 16px;
  min-width: 200px;
}

.stat-number {
  font-size: 32px;
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}

.avatars img:first-child {
  margin-left: 0;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius);
  width: 100%;
  height: 500px;
  object-fit: cover;
  animation: scale-in 0.8s ease-out both;
}

.explore-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* Intro Cards */
.intro-cards {
  padding: 40px 0;
}

/* ===================== */
/* COMING SOON */
/* ===================== */
.coming-soon-hero {
  padding-bottom: 30px;
}

.countdown {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 18px;
}

.countdown-box {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
  min-width: 110px;
  text-align: center;
}

.countdown-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.countdown-label {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon-card {
  margin-top: 26px;
  background: rgba(161, 231, 222, 0.25);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.newsletter-inline {
  display: flex;
  gap: 12px;
  align-items: center;
}

.newsletter-inline input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  font-family: var(--font-sans);
}

@media screen and (max-width: 768px) {
  .countdown-box {
    min-width: 96px;
  }

  .countdown-number {
    font-size: 30px;
  }

  .newsletter-inline {
    flex-direction: column;
    align-items: stretch;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-image-overlay {
  position: relative;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-image-overlay:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-text {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.top-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.card-review {
  background-color: #E0F7FA;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.review-content {
  transition: opacity 0.5s ease;
}

.card-review:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-review h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-family: var(--font-sans);
}

.card-review p {
  font-size: 14px;
  color: var(--text-muted);
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

/* Services */
.services {
  padding: 80px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 48px;
  line-height: 1.1;
}

.section-desc {
  max-width: 500px;
}

.section-desc p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 14px;
}

.service-card {
  background: #E0F7FA;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 400px;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card.bg-green {
  background: #87ceeb;
}

.service-card.bg-blue {
  background: #E0F2FE;
}

.service-card.bg-yellow {
  background: var(--bg-yellow);
}

.bg-yellow {
  background: var(--bg-yellow);
}

.card-content {
  margin-bottom: auto;
}

.card-content h3 {
  font-family: var(--font-sans);
  font-size: 20px;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.tags {
  display: flex;
  gap: 8px;
}

.tags span {
  background: rgba(255, 255, 255, 0.6);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.card-image {
  position: relative;
  margin-top: 24px;
}

.card-image img {
  border-radius: 16px;
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.learn-more {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Info Section */
.info-section {
  padding: 60px 0;
}

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

.centered-header h2 {
  font-size: 48px;
  margin-bottom: 16px;
}

/* About Preview Section */
.about-preview {
  max-width: 900px;
  margin: 0 auto;
}

.about-preview-content {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-preview-content>p:first-child {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 0;
}

.expandable-content {
  text-align: left;
}

.read-more-btn:hover {
  background: #000 !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Services Preview Section */
.services-preview {
  padding-bottom: 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.yellow-stat-box {
  background: #a1e7dec7;
  border-radius: var(--radius);
  padding: 40px;
}

.pill-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.pill {
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.pill.dark {
  background: var(--text-dark);
  color: var(--white);
}

.pill.outline {
  border: 1px solid var(--text-dark);
}

.avatars-group {
  display: flex;
  margin-bottom: 16px;
}

.avatars-group img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #a1e7dec7;
  margin-left: -10px;
}

.avatars-group img:first-child {
  margin-left: 0;
}

.stat-large {
  font-size: 48px;
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 16px;
}

.image-box {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-label {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
}

.explore-btn {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.doctor-feature {
  background: #E0F2FE;
  border-radius: var(--radius);
  padding: 40px 40px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.doctor-feature h3 {
  font-size: 32px;
  margin-bottom: 24px;
  max-width: 400px;
}

.doctor-feature .btn {
  margin-bottom: 40px;
}

.doctor-feature img {
  margin-top: auto;
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Support Section */
.support-section {
  padding: 80px 0;
}

.support-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.support-header h2 {
  font-size: 48px;
}

.support-desc {
  max-width: 400px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--text-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-top: 16px;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.support-images {
  position: relative;
  height: 500px;
}

.img-large {
  width: 80%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

.img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 8px solid var(--bg-cream);
}

.support-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #F3F4F6;
  margin-bottom: 12px;
  border-radius: 12px;
  font-weight: 500;
}

.quick-schedule-box {
  background: #7bbfd7;
  padding: 32px;
  border-radius: var(--radius);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-schedule-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.quick-schedule-box h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  margin-bottom: 24px;
}

.avatars-row {
  display: flex;
  margin-bottom: 24px;
}

.avatars-row img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #a1e7dec7;
  margin-left: -10px;
}

.avatars-row img:first-child {
  margin-left: 0;
}

/* CTA Banner */
.cta-banner {
  padding: 80px 0;
}

.cta-inner {
  background: #d4e5f02b;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-inner:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.cta-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: #111827;
  padding-top: 80px;
  color: #F9FAFB;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

/* Keyframe animations */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand .brand img {
  height: 100px;
}

.footer-brand p {
  color: #9CA3AF;
  font-size: 14px;
  max-width: 320px;
  margin-bottom: 24px;
}

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

.footer-links .col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: #D1D5DB;
}

.footer-links a:hover {
  color: #87ceeb;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
  color: #D1D5DB;
}

.footer-contact i {
  margin-top: 3px;
  color: #87ceeb;
}

.footer-newsletter h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  margin-bottom: 16px;
  color: #F9FAFB;
}

#newsletter {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
}

/* Notice Bar Styles */
.footer-notice-bar {
  background: #fef3c7;
  color: #92400e;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
}

.footer-notice-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.footer-notice-bar i {
  font-size: 18px;
}

#newsletter input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid #374151;
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

#newsletter input::placeholder {
  color: #6B7280;
}

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

.social-icons a {
  width: 32px;
  height: 32px;
  border: 1px solid #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #D1D5DB;
}

.social-icons a:hover {
  background: #374151;
  color: #87ceeb;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  background: #111827;
  color: #9CA3AF;
  margin-top: 0;
  max-width: 100%;
  padding: 24px 10%;
}

.legal-links {
  display: flex;
  gap: 24px;
}

/* ===================== */
/* TABLET: max-width 1024px */
/* ===================== */
@media screen and (max-width: 1024px) {
  .wrap {
    padding: 0 20px;
  }

  .brand img {
    height: 120px;
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 13px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hero-grid,
  .info-grid,
  .support-grid,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-image {
    order: -1;
  }

  .hero-content h1 {
    font-size: 40px !important;
  }

  .support-images {
    height: 400px;
  }

  .section-header h2,
  .support-header h2,
  .centered-header h2 {
    font-size: 36px !important;
  }

  .cta-content h2 {
    font-size: 32px !important;
  }

  .doctor-feature h3 {
    font-size: 26px !important;
  }
}

/* ===================== */
/* MOBILE: max-width 768px */
/* ===================== */
@media screen and (max-width: 768px) {

  /* Header & Navigation */
  .header-inner {
    flex-wrap: wrap !important;
    gap: 12px !important;
    justify-content: center !important;
    position: relative;
  }

  .brand {
    width: 100% !important;
    justify-content: center !important;
  }

  .brand img {
    height: 180px !important;
  }

  .menu-toggle {
    display: inline-flex !important;
    margin-left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    order: 3;
    width: 100% !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 20px 0 !important;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    display: none !important;
    align-items: flex-start !important;
  }

  .nav a {
    font-size: 15px !important;
    padding: 4px 0;
  }

  .header-actions {
    order: 4;
    width: 100% !important;
    justify-content: flex-start !important;
    display: none !important;
    padding-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px !important;
  }

  .header-actions .icon-btn {
    flex-shrink: 0;
  }

  .header-actions .btn {
    flex: 1;
    min-width: 180px;
  }

  body.nav-open .nav,
  body.nav-open .header-actions {
    display: flex !important;
  }

  /* Hero */
  .hero {
    padding: 40px 0 !important;
  }

  .hero-content h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .hero-content p {
    font-size: 14px !important;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .hero-stats {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .hero-image img {
    height: 300px !important;
  }

  /* Grids */
  .grid-4 {
    grid-template-columns: 1fr !important;
  }

  /* Cards */
  .card-image-overlay {
    height: 220px !important;
  }

  .service-card {
    height: auto !important;
    min-height: 320px;
  }

  /* Sections */
  .services,
  .support-section,
  .cta-banner {
    padding: 40px 0 !important;
  }

  .section-header,
  .support-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .section-header h2,
  .support-header h2 {
    font-size: 28px !important;
  }

  .centered-header h2 {
    font-size: 26px !important;
  }

  /* Info Section */
  .info-grid {
    gap: 24px !important;
  }

  .yellow-stat-box {
    padding: 24px !important;
  }

  .stat-large {
    font-size: 36px !important;
  }

  .doctor-feature {
    padding: 24px 24px 0 !important;
  }

  .doctor-feature h3 {
    font-size: 22px !important;
  }

  /* Support Section */
  .support-grid {
    gap: 32px !important;
  }

  .support-images {
    height: 300px !important;
  }

  .img-large {
    width: 100% !important;
    height: 280px !important;
  }

  .img-small {
    width: 45% !important;
    height: 160px !important;
  }

  /* CTA */
  .cta-inner {
    grid-template-columns: 1fr !important;
  }

  .cta-content {
    padding: 32px !important;
  }

  .cta-content h2 {
    font-size: 26px !important;
  }

  .cta-actions {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .cta-image img {
    height: 250px !important;
  }

  /* Footer */
  .site-footer {
    padding-top: 40px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .footer-links {
    flex-direction: column !important;
    gap: 24px !important;
  }

  #newsletter {
    flex-direction: column !important;
  }

  #newsletter input,
  #newsletter button {
    width: 100% !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
    padding: 24px 16px !important;
  }

  .legal-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
  }

  /* Brand / Logo */
  .header-inner {
    justify-content: center !important;
  }

  .brand {
    margin: 0 auto;
  }

  .brand img {
    height: 180px !important;
  }

  .footer-brand .brand img {
    height: 150px !important;
  }

  .footer-brand .brand {
    justify-content: center !important;
  }

  .header-actions,
  .nav {
    display: none !important;
  }

  /* Wrap padding */
  .wrap {
    padding: 0 16px !important;
  }
}

/* ===================== */
/* SMALL MOBILE: max-width 480px */
/* ===================== */
@media screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px !important;
  }

  .section-header h2,
  .support-header h2,
  .centered-header h2 {
    font-size: 22px !important;
  }

  .cta-content h2 {
    font-size: 22px !important;
  }

  .stat-number {
    font-size: 24px !important;
  }

  .stat-large {
    font-size: 32px !important;
  }

  .btn {
    padding: 10px 20px !important;
    font-size: 13px !important;
  }

  .tags {
    flex-wrap: wrap !important;
  }

  .pill-tags {
    flex-wrap: wrap !important;
  }
}

/* ===================== */
/* SCROLL TO TOP BUTTON */
/* ===================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #87ceeb;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-to-top:hover {
  background: #6bb6d9;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.show {
  display: flex;
}

/* ===================== */
/* ACCESSIBILITY WIDGET */
/* ===================== */
.accessibility-widget {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 998;
}

.accessibility-toggle {
  width: 50px;
  height: 50px;
  background: #87ceeb;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.accessibility-toggle:hover {
  background: #6bb6d9;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.accessibility-menu {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  min-width: 250px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.accessibility-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.accessibility-menu h4 {
  margin: 0 0 15px 0;
  font-size: 16px;
  color: var(--text-dark);
  font-family: var(--font-sans);
  border-bottom: 2px solid #87ceeb;
  padding-bottom: 10px;
}

.accessibility-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-dark);
  transition: all 0.2s ease;
  text-align: left;
}

.accessibility-option:hover {
  background: #f0f9ff;
  color: #087ea4;
}

.accessibility-option i {
  color: #87ceeb;
  font-size: 18px;
  width: 20px;
}

/* Accessibility Modifications */
body.high-contrast {
  filter: contrast(120%);
  background: #000;
  color: #fff;
}

body.high-contrast .site-header,
body.high-contrast .site-footer {
  background: #1a1a1a;
}

body.readable-font {
  font-family: Arial, sans-serif !important;
}

body.readable-font h1,
body.readable-font h2,
body.readable-font h3,
body.readable-font h4,
body.readable-font h5,
body.readable-font h6 {
  font-family: Arial, sans-serif !important;
}

/* Footer Important Information */
.footer-important {
  background: rgba(135, 206, 235, 0.1);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #87ceeb;
}

.footer-important h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  margin: 0 0 10px 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-important h3 i {
  color: #87ceeb;
  font-size: 18px;
}

.footer-important p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  color: var(--text-muted);
}

@media screen and (max-width: 768px) {

  .scroll-to-top,
  .accessibility-toggle {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .accessibility-widget {
    bottom: 85px;
    right: 20px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
  }

  .accessibility-menu {
    right: -10px;
    min-width: 220px;
  }
}