/* ============================================================
   ADI Physiotherapy Clinic - Main Stylesheet
   Cloned from Emergent React App
   Colors: Navy #0a1628 | Gold #d4af37 | Teal #1a9b9b
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #0d1b2a;
  --gold: #d4af37;
  --gold-light: #f0c674;
  --teal: #1a9b9b;
  --white: #ffffff;
  --gray-100: #f9fafb;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
button { cursor: pointer; border: none; font-family: inherit; }

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

/* ===== TOP BAR ===== */
.top-bar {
  background-color: var(--navy);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--gray-300);
}
.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  transition: var(--transition);
}
.top-bar-left a:hover { color: var(--gold); }
.top-bar-right {
  color: var(--gray-400);
  font-size: 0.8rem;
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}
header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.05);
}
header nav {
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
}
.logo-text-main {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.logo-text-sub {
  font-size: 0.65rem;
  color: var(--teal);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--teal));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a.active::after, .nav-links a:hover::after {
  transform: scaleX(1);
}
.btn-nav {
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-nav:hover {
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  transform: scale(1.05);
}
.hamburger {
  display: none;
  color: var(--gold);
  font-size: 1.5rem;
  background: none;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 42px;
  right: 0;
  bottom: 0;
  width: 300px;
  background: var(--navy-mid);
  z-index: 1000;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 24px;
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu a {
  color: var(--gray-300);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,155,155,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-block;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title span {
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.btn-gold {
  display: inline-block;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-gold:hover {
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
  transform: translateY(-3px);
}
.btn-outline-gold {
  display: inline-block;
  border: 2px solid rgba(212,175,55,0.4);
  color: var(--gold);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat-item { text-align: left; }
.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-circle-outer {
  width: 500px;
  height: 500px;
  border: 1px dashed rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotateSlow 30s linear infinite;
}
.hero-circle-mid {
  width: 380px;
  height: 380px;
  border: 1px dashed rgba(26,155,155,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotateSlow 20s linear infinite reverse;
}
.hero-circle-inner {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d2040, #162535);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(212,175,55,0.1), inset 0 0 40px rgba(0,0,0,0.3);
}
.hero-circle-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* Floating badges */
.float-badge {
  position: absolute;
  background: rgba(13, 27, 42, 0.9);
  border: 1px solid rgba(212,175,55,0.2);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: floatBob 4s ease-in-out infinite;
  z-index: 2;
}
.float-badge:nth-child(2) { animation-delay: 2s; }
.float-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,175,55,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}
.float-badge-text { color: var(--white); }
.float-badge-text strong { display: block; font-size: 1rem; font-weight: 700; color: var(--gold); }
.float-badge-text span { font-size: 0.75rem; color: var(--gray-400); }
.badge-top { top: 8%; right: 5%; }
.badge-bottom { bottom: 10%; left: 5%; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ===== SECTIONS GENERAL ===== */
section { padding: 100px 0; }
.section-tag {
  display: inline-block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== ABOUT / MANIFESTO ===== */
.about-bg {
  background-color: var(--navy);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 20px;
  overflow: hidden;
}
.manifesto-item {
  padding: 48px;
  background: var(--navy);
  transition: background 0.3s;
}
.manifesto-item:hover { background: rgba(212,175,55,0.03); }
.manifesto-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.manifesto-item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.manifesto-item p { color: var(--gray-400); font-size: 0.95rem; line-height: 1.7; }

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(212,175,55,0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 80px;
}
.stat-box {
  background: rgba(13,27,42,0.8);
  padding: 40px 24px;
  text-align: center;
  transition: background 0.3s;
}
.stat-box:hover { background: rgba(212,175,55,0.05); }
.stat-box-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box-label { color: var(--gray-400); font-size: 0.85rem; }

/* ===== SERVICES ===== */
.services-bg { background-color: var(--gray-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--teal));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transform: translateY(-5px);
}
.service-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(10,22,40,0.05);
  line-height: 1;
  margin-bottom: 12px;
}
.service-icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(26,155,155,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--teal);
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: 0.85rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--navy);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.05); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9), transparent);
}
.team-info { padding: 24px; }
.team-info h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.team-info .role { color: var(--gold); font-size: 0.85rem; font-weight: 500; margin-bottom: 8px; }
.team-info .qual { color: var(--gray-400); font-size: 0.8rem; line-height: 1.5; }
.team-exp {
  display: inline-block;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  margin-top: 12px;
}

/* ===== TESTIMONIALS ===== */
.testi-bg { background: var(--navy); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition);
  background: rgba(13,27,42,0.5);
}
.testi-card:hover, .testi-card.active {
  background: var(--navy-mid);
  border-color: rgba(212,175,55,0.3);
}
.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-quote {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-name { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.testi-role { font-size: 0.85rem; color: var(--teal); }

/* ===== CONTACT ===== */
.contact-bg { background: var(--gray-100); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--gray-500); margin-bottom: 40px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-detail h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-detail p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  background: var(--white);
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--gold);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
}
.btn-submit:hover {
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h3 {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(26,155,155,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--teal); color: var(--white); }
.footer-ci { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-ci svg, .footer-ci span.ci-icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-ci a, .footer-ci p { color: var(--gray-400); font-size: 0.85rem; margin: 0; transition: color 0.3s; }
.footer-ci a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: var(--gray-500); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--gray-500); font-size: 0.85rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  section { padding: 60px 0; }
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-circle-outer { width: 300px; height: 300px; }
  .hero-circle-mid { width: 220px; height: 220px; }
  .hero-circle-inner { width: 160px; height: 160px; }
}

@media (max-width: 480px) {
  .top-bar-right, .top-bar-left a:last-child { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
}

/* Animated SVG Icons */
.icon-animated { transition: transform 0.3s ease; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .icon-animated { transform: scale(1.2) rotate(5deg); }
.contact-item:hover .icon-animated { transform: scale(1.1) translateY(-2px); }
.footer-ci:hover .icon-animated { transform: scale(1.1) translateX(2px); }
.top-bar-left a:hover .icon-animated { transform: scale(1.1); }

