/* ==========================================================================
   DOCTORTEAM CLINIC (ด็อกเตอร์ทีมคลินิกเวชกรรม) - Official Stylesheet
   Color Identity: Medical Warm Orange & Elegant Cream
   Typography: Prompt & Noto Sans Thai & Sriracha
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --color-primary: #FF6A00;
  --color-primary-dark: #E65100;
  --color-primary-light: #FF8833;
  --color-primary-hover: #F05500;
  --color-orange-glow: rgba(255, 106, 0, 0.25);
  
  --color-peach-light: #FFF7F0;
  --color-peach-card: #FEF3EB;
  --color-cream: #FFFDF9;
  
  --color-dark: #1E293B;
  --color-dark-subtle: #334155;
  --color-muted: #64748B;
  --color-light-gray: #F1F5F9;
  --color-border-subtle: rgba(255, 106, 0, 0.16);
  --color-border-light: rgba(226, 232, 240, 0.8);
  
  --color-facebook: #1877F2;
  --color-facebook-hover: #0E65D9;
  
  /* Typography */
  --font-display: 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Noto Sans Thai', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Sriracha', cursive, sans-serif;
  
  /* Elevation & Shadows */
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px -10px rgba(15, 23, 42, 0.12);
  --shadow-orange: 0 12px 28px -6px rgba(255, 106, 0, 0.35);
  
  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: #FAFAF9;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 244, 235, 0.85) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 237, 219, 0.6) 0%, transparent 45%),
    linear-gradient(180deg, #FFFFFF 0%, #FFFDF9 100%);
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Atmosphere Layer */
.page-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.ambient-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/clinic-bg.jpg') no-repeat center top / cover;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-top {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255, 136, 0, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.ambient-watermark {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: url('../images/logo.png') no-repeat center / contain;
  opacity: 0.05;
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.main-content {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}

/* ==========================================================================
   Header & Slogans
   ========================================================================== */
.site-header {
  padding-top: 1.25rem;
  padding-bottom: 0.5rem;
}

.brand-motto-left {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.5;
}

.brand-motto-left .accent-bar {
  display: block;
  width: 42px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin-top: 6px;
}

.brand-quote-right {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark-subtle);
  display: inline-block;
}

.brand-quote-right .accent-bar {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 4px auto 0 auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 1.5rem 0 2rem 0;
}

/* Clinic Logo in Hero */
.clinic-logo-wrapper {
  margin-bottom: 1.25rem;
}

.clinic-logo-img {
  max-height: 95px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(255, 106, 0, 0.12));
  transition: transform 0.3s ease;
}

.clinic-logo-img:hover {
  transform: scale(1.02);
}

/* Script Accents */
.script-tagline {
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  display: block;
  transform: rotate(-3deg);
  transform-origin: left center;
}

/* Main Titles */
.hero-welcome-label {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.35rem;
  background: linear-gradient(135deg, #FF6A00 0%, #F55D00 60%, #E64A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: -0.01em;
}

.hero-sub-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: #475569;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Notice Card / Coming Soon Banner */
.coming-soon-card {
  background: var(--color-peach-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: all 0.3s ease;
}

.coming-soon-card:hover {
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 8px 24px -6px rgba(255, 106, 0, 0.16);
  transform: translateY(-2px);
}

.coming-soon-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 106, 0, 0.12);
  color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.coming-soon-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin: 0 0 0.15rem 0;
  line-height: 1.3;
}

.coming-soon-desc {
  font-size: 0.92rem;
  color: var(--color-dark-subtle);
  margin: 0;
  line-height: 1.4;
}

.progress-pill-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 6px;
}

.progress-pill-dots span {
  display: inline-block;
  height: 4px;
  border-radius: 4px;
  background: #E2E8F0;
}

.progress-pill-dots span.active {
  width: 28px;
  background: var(--color-primary);
}

.progress-pill-dots span.dot {
  width: 10px;
}

/* Quick Action Buttons */
.action-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.btn-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 220px;
  flex: 1 1 auto;
}

/* Facebook Button */
.btn-facebook-card {
  background: linear-gradient(135deg, #1877F2 0%, #0D65D9 100%);
  color: #FFFFFF;
  border: 1px solid #146AD8;
  box-shadow: 0 10px 24px -6px rgba(24, 119, 242, 0.38);
}

.btn-facebook-card:hover {
  background: linear-gradient(135deg, #166FE5 0%, #0B56BE 100%);
  color: #FFFFFF;
  box-shadow: 0 14px 28px -4px rgba(24, 119, 242, 0.48);
  transform: translateY(-3px);
}

.btn-facebook-card:hover .action-arrow {
  transform: translateX(4px);
}

/* Google Maps Button */
.btn-maps-card {
  background: #FFFFFF;
  color: var(--color-dark);
  border: 1.5px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
}

.btn-maps-card:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
  color: var(--color-dark);
  box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.btn-maps-card:hover .action-arrow {
  transform: translateX(4px);
}

.action-btn-content {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.action-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.btn-facebook-card .action-icon-circle {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.btn-maps-card .action-icon-circle {
  background: #F8FAFC;
}

.action-text-wrap {
  text-align: left;
  line-height: 1.2;
}

.action-pre-text {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.9;
}

.btn-maps-card .action-pre-text {
  color: var(--color-muted);
}

.action-main-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
}

.action-arrow {
  font-size: 1.1rem;
  opacity: 0.75;
  transition: transform 0.2s ease;
  padding-left: 0.5rem;
}

/* ==========================================================================
   Doctor Visual Presentation (Right Column)
   ========================================================================== */
.doctor-presentation {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  min-height: 520px;
}

/* Wall Logo Effect */
.clinic-wall-brand {
  position: absolute;
  top: 10%;
  right: 5%;
  opacity: 0.45;
  filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.4));
  pointer-events: none;
  z-index: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wall-logo-mark {
  width: 65px;
  height: auto;
  margin-bottom: 4px;
}

.wall-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #D97706;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.wall-logo-sub {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  color: #B45309;
}

/* Doctor Image Frame */
.doctor-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.doctor-photo {
  max-width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(15, 23, 42, 0.15));
  transition: transform 0.4s ease;
}

.doctor-photo:hover {
  transform: translateY(-4px);
}

/* Floating Doctor Badge */
.doctor-credential-badge {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.4rem;
  box-shadow: var(--shadow-md);
  z-index: 3;
  width: max-content;
  max-width: 92%;
  text-align: center;
  transition: all 0.3s ease;
}

.doctor-credential-badge:hover {
  box-shadow: 0 12px 32px -4px rgba(255, 106, 0, 0.22);
  border-color: rgba(255, 106, 0, 0.35);
}

.doc-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.doc-license {
  display: inline-block;
  background: rgba(255, 106, 0, 0.12);
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
}

.doc-title {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
}

/* ==========================================================================
   Services Section Summary (4 Highlights)
   ========================================================================== */
.services-summary-section {
  padding: 1.5rem 0 2.5rem 0;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  padding: 1.35rem 1rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  background: #FFFFFF;
  border-color: var(--color-border-subtle);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -6px rgba(255, 106, 0, 0.18);
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 106, 0, 0.35);
  background: rgba(255, 247, 240, 0.9);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 0.9rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  background: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
  transform: scale(1.08);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.35;
}

/* Service Modal Trigger Bar */
.all-services-trigger-wrap {
  text-align: center;
  margin-top: 1.25rem;
}

.btn-view-all-services {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(255, 106, 0, 0.08);
  border: 1px dashed rgba(255, 106, 0, 0.35);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.btn-view-all-services:hover {
  background: var(--color-primary);
  color: #FFFFFF;
  border-style: solid;
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

/* ==========================================================================
   Clinic Information Bottom Bar (Floating)
   ========================================================================== */
.clinic-info-bar-section {
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.clinic-info-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.clinic-info-card:hover {
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.1);
  border-color: var(--color-border-subtle);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-peach-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 106, 0, 0.18);
}

.info-text-wrap {
  line-height: 1.3;
}

.info-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-muted);
}

.info-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
}

.clinic-phone-link {
  color: var(--color-primary-dark);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.clinic-phone-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Slogan in Bottom Card */
.bottom-slogan-wrap {
  text-align: right;
  border-left: 1px solid #E2E8F0;
  padding-left: 1.5rem;
}

.bottom-slogan-text {
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--color-dark-subtle);
  line-height: 1.25;
  margin: 0;
  position: relative;
  display: inline-block;
}

.bottom-slogan-underline {
  display: block;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, #FF6A00 0%, rgba(255, 106, 0, 0) 100%);
  margin-top: 3px;
  margin-left: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  padding: 1.25rem 0;
  font-size: 0.82rem;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 2;
}

.footer-copy-text {
  margin: 0;
}

.footer-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--color-primary-dark);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.78rem;
}

.footer-status-tag .pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* ==========================================================================
   Services Modal
   ========================================================================== */
.modal-content {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 106, 0, 0.2);
  box-shadow: var(--shadow-lg);
  background: #FFFFFF;
}

.modal-header {
  border-bottom: 1px solid #F1F5F9;
  padding: 1.25rem 1.75rem;
}

.modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-dark);
}

.modal-body {
  padding: 1.5rem 1.75rem;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  background: #F8FAFC;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.service-list-item:hover {
  background: var(--color-peach-light);
  transform: translateX(4px);
}

.service-number-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-notice-banner {
  background: var(--color-peach-card);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--color-primary-dark);
  margin-top: 1rem;
  text-align: center;
}

/* Toast Copy Feedback */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1090;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

/* Tablet (max-width: 991px) */
@media (max-width: 991.98px) {
  .site-header {
    padding-top: 1rem;
  }
  
  .brand-quote-right {
    display: none;
  }
  
  .doctor-presentation {
    min-height: 420px;
    margin-top: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bottom-slogan-wrap {
    border-left: none;
    border-top: 1px solid #E2E8F0;
    padding-left: 0;
    padding-top: 1rem;
    text-align: center;
    margin-top: 0.75rem;
  }
  
  .bottom-slogan-underline {
    margin: 3px auto 0 auto;
  }
}

/* Mobile (max-width: 767.98px) */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 0.5rem;
  }
  
  .site-header {
    text-align: center;
  }
  
  .brand-motto-left {
    font-size: 0.72rem;
  }
  
  .brand-motto-left .accent-bar {
    margin: 4px auto 0 auto;
  }
  
  .hero-section {
    padding: 0.5rem 0 1.5rem 0;
    text-align: center;
  }
  
  .clinic-logo-img {
    max-height: 80px;
    margin: 0 auto;
  }
  
  .script-tagline {
    font-size: 1.25rem;
    transform: none;
    margin-bottom: 0.25rem;
  }
  
  .hero-welcome-label {
    font-size: 1.45rem;
  }
  
  .hero-main-title {
    font-size: 2.3rem;
  }
  
  .hero-sub-title {
    font-size: 0.95rem;
    letter-spacing: 0.22em;
    margin-bottom: 1.25rem;
  }
  
  .doctor-presentation {
    min-height: auto;
    margin: 1.5rem auto 1.5rem auto;
    max-width: 340px;
  }
  
  .clinic-wall-brand {
    display: none; /* keep mobile clean */
  }
  
  .doctor-photo {
    max-height: 380px;
  }
  
  .doctor-credential-badge {
    position: static;
    transform: none;
    margin-top: -20px;
    width: 100%;
    max-width: 100%;
  }
  
  .action-buttons-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .btn-action-card {
    width: 100%;
    min-width: 100%;
    padding: 0.9rem 1.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .service-card {
    padding: 1rem 0.5rem;
  }
  
  .service-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
  
  .service-title {
    font-size: 0.95rem;
  }
  
  .service-desc {
    font-size: 0.78rem;
  }
  
  .clinic-info-card {
    padding: 1.25rem 1.25rem;
    border-radius: var(--radius-md);
  }
  
  .info-item {
    margin-bottom: 0.85rem;
  }
  
  .info-icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
  }
  
  .info-value {
    font-size: 0.92rem;
  }
  
  .bottom-slogan-wrap {
    text-align: center;
  }
  
  .bottom-slogan-text {
    font-size: 1.25rem;
  }
  
  .site-footer {
    text-align: center;
    font-size: 0.75rem;
  }
}
