/* ===========================
   LOOMCLEAN - Main Stylesheet
   =========================== */

:root {
  --orange: #F97316;
  --orange-dark: #EA6C0A;
  --teal: #0D9488;
  --teal-light: #14B8A6;
  --dark: #0F1A18;
  --dark2: #162320;
  --mid: #1E3530;
  --text: #E8F5F2;
  --muted: #7BA89E;
  --white: #FFFFFF;
  --light-bg: #F8FFFE;
  --border: #1E3530;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Lato', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #1a2e2a;
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

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

.section-pad { padding: 80px 0; }
.bg-dark { background: var(--dark); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 26, 24, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15, 26, 24, 0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-loom { color: var(--white); }
.logo-clean { color: var(--orange); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links .nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.2s;
}

.nav-links .nav-cta:hover { background: var(--orange-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1512 0%, #0f2420 40%, #162e28 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 60px 24px 60px calc((100vw - 1200px) / 2 + 24px);
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title span { color: var(--orange); }

.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero-form-wrap {
  position: relative;
  z-index: 2;
  padding: 60px 24px 60px 40px;
  padding-right: calc((100vw - 1200px) / 2 + 24px);
}

.hero-form-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 36px 32px;
  width: 320px;
}

.hero-form-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.hero-form-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 24px;
}

.form-btn {
  display: block;
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s;
  margin-bottom: 16px;
}

.form-btn:hover { background: var(--orange-dark); }

.form-divider {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}

.form-phone {
  display: block;
  text-align: center;
  color: var(--teal-light);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-primary.large { padding: 18px 40px; font-size: 17px; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: white;
  background: rgba(255,255,255,0.05);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--teal);
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--teal);
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--teal);
  color: white;
}

.btn-white {
  display: inline-block;
  background: white;
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-white.large { padding: 18px 40px; font-size: 17px; }

.btn-white:hover { background: #f0f0f0; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--orange);
  padding: 16px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.trust-icon {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header.light h2,
.section-header.light p { color: white; }

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-header p {
  color: #4a7068;
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

.section-header.light .section-tag { color: var(--orange); }
.section-header.light p { color: rgba(255,255,255,0.6); }

/* ===== SERVICES GRID ===== */
.services-section { background: var(--light-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  border: 1px solid #e0efed;
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.25s;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,148,136,0.12);
  border-color: var(--teal-light);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  border-color: var(--teal);
  background: linear-gradient(135deg, #f0fffe, #e6faf8);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.service-card p {
  color: #5a7872;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price {
  font-weight: 700;
  color: var(--orange);
  font-size: 14px;
}

.services-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== RESULTS ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.result-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.result-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  background-color: var(--mid);
  transition: transform 0.3s;
}

.result-card:hover .result-img { transform: scale(1.03); }

.result-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 20px 16px 12px;
  font-weight: 700;
  font-size: 14px;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-tag { display: block; margin-bottom: 12px; }

.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.why-text p {
  color: #4a7068;
  margin-bottom: 16px;
  font-size: 16px;
}

.why-points {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.wp-icon {
  font-size: 24px;
  min-width: 36px;
  margin-top: 2px;
}

.why-point strong {
  display: block;
  color: var(--dark);
  font-size: 15px;
  margin-bottom: 2px;
}

.why-point p {
  font-size: 14px;
  margin: 0;
  color: #5a7872;
}

.why-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.why-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.why-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15,26,24,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
}

.why-img-badge strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.why-img-badge span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ===== COMMERCIAL BANNER ===== */
.commercial-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #0a7a70 100%);
  padding: 60px 0;
}

.cb-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cb-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.cb-content p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  max-width: 560px;
}

.cb-content .btn-primary {
  background: white;
  color: var(--teal);
  border-color: white;
  white-space: nowrap;
  flex-shrink: 0;
}

.cb-content .btn-primary:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
}

/* ===== SERVICE AREA ===== */
.area-section { background: var(--light-bg); }

.area-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.area-item {
  background: white;
  border: 1px solid #e0efed;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: #2a5248;
}

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

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: #080f0e;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  transition: background 0.2s;
}

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

.footer-links h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

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

.footer-contact h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--orange); }

.footer-cta-btn {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
  transition: background 0.2s;
}

.footer-cta-btn:hover { background: var(--orange-dark); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--orange); }

/* ===== SERVICE PAGE STYLES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 130px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 28px;
}

.breadcrumb {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--orange); }
.breadcrumb span { margin: 0 8px; }

.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
}

.service-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.service-content p {
  color: #4a7068;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.service-includes {
  margin: 32px 0;
}

.service-includes h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
  letter-spacing: 0.3px;
}

.include-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.include-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #2a4a44;
}

.include-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  min-width: 16px;
  margin-top: 1px;
}

.service-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--light-bg);
  border: 1px solid #e0efed;
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.sidebar-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.sidebar-price-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}

.sidebar-card .btn-primary {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.sidebar-phone {
  display: block;
  text-align: center;
  color: var(--teal);
  font-weight: 700;
  font-size: 17px;
}

.service-gallery {
  margin-top: 40px;
}

.service-gallery h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  line-height: 1.1;
}

.about-text p {
  color: #4a7068;
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.stats-row {
  display: flex;
  gap: 32px;
  margin: 32px 0;
}

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

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 13px;
  color: #4a7068;
  margin-top: 4px;
  font-weight: 600;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  text-align: center;
  padding: 80px 24px;
}

.thankyou-content {
  max-width: 560px;
  margin: 0 auto;
}

.ty-icon {
  font-size: 80px;
  display: block;
  margin-bottom: 24px;
}

.thankyou-content h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.thankyou-content p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 80px 24px 40px; max-width: 100%; }
  .hero-form-wrap { padding: 0 24px 60px; }
  .hero-form-card { width: 100%; max-width: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .area-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-page-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark); padding: 20px 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .include-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 20px; }
  .cb-content { flex-direction: column; text-align: center; }
  .trust-items { gap: 20px; }
}

@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
