/* ============================================
   Redlands Plumbing Services - Main Stylesheet
   ============================================ */

/* CSS Custom Properties */
:root {
  --navy: #0B2545;
  --blue: #13538A;
  --teal: #1B8CA0;
  --teal-light: #2CB5C9;
  --accent: #E8A317;
  --accent-hover: #D4930F;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --gray-50: #F0F4F8;
  --gray-100: #E1E8EF;
  --gray-200: #C9D3DE;
  --gray-300: #A0AEC0;
  --gray-400: #718096;
  --gray-500: #4A5568;
  --gray-600: #2D3748;
  --gray-700: #1A202C;
  --red-emergency: #DC2626;
  --red-hover: #B91C1C;
  --green: #16A34A;
  --shadow-sm: 0 1px 3px rgba(11,37,69,0.08);
  --shadow-md: 0 4px 14px rgba(11,37,69,0.1);
  --shadow-lg: 0 10px 30px rgba(11,37,69,0.12);
  --shadow-xl: 0 20px 50px rgba(11,37,69,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'DM Sans', 'Segoe UI', sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --transition: 0.25s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); margin-bottom: 0.6em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.4em; }
p { margin-bottom: 1em; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--teal-light); }
.top-bar .hours { display: flex; gap: 16px; flex-wrap: wrap; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.2;
}
.logo-text span { color: var(--teal); }

.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-main a:hover, .nav-main a.active { color: var(--teal); background: var(--gray-50); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px;
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.header-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-phone:hover { background: var(--blue); transform: translateY(-1px); }
.btn-request {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-request:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
  font-size: 1.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--accent); color: var(--white); }
.btn-secondary:hover { background: var(--accent-hover); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-emergency { background: var(--red-emergency); color: var(--white); }
.btn-emergency:hover { background: var(--red-hover); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gray-50); color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--teal) 100%);
  color: var(--white);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,140,160,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3rem); max-width: 700px; }
.hero p { font-size: 1.15rem; opacity: 0.92; max-width: 600px; margin-bottom: 1.5em; line-height: 1.7; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; opacity: 0.88; font-size: 0.92rem; }
.hero-badges span { display: flex; align-items: center; gap: 6px; }
.hero-badges .badge-icon {
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Service hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 50px 0 55px;
  position: relative;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.3em; }
.page-hero p { opacity: 0.9; max-width: 650px; font-size: 1.05rem; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--gray-400);
}
.breadcrumbs a { color: var(--teal); }
.breadcrumbs span { margin: 0 6px; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 70px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header .tag {
  display: inline-block;
  background: rgba(27,140,160,0.1);
  color: var(--teal);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* ============================================
   CARDS
   ============================================ */
.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.service-card .card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card h3 a { color: var(--navy); }
.service-card h3 a:hover { color: var(--teal); }
.service-card p { font-size: 0.93rem; color: var(--gray-400); flex: 1; }
.service-card .card-link {
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
}
.service-card .card-link:hover { gap: 8px; }

/* Area cards */
.area-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  text-align: center;
}
.area-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.area-card a { color: var(--gray-600); font-weight: 600; font-size: 0.93rem; display: block; }
.area-card:hover a { color: var(--teal); }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--off-white);
  padding: 30px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.trust-item .trust-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================
   EMERGENCY BANNER
   ============================================ */
.emergency-section {
  background: linear-gradient(135deg, var(--red-emergency) 0%, #991B1B 100%);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.emergency-section h2 { color: var(--white); }
.emergency-section p { font-size: 1.1rem; opacity: 0.93; max-width: 600px; margin: 0 auto 1.5rem; }
.emergency-phone {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 1.2rem;
}
.emergency-phone a { color: var(--white) !important; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.step {
  text-align: center;
  position: relative;
  padding: 20px;
}
.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--gray-400); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 24px 18px; font-size: 0.95rem; line-height: 1.7; color: var(--gray-500); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--accent); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--gray-500); margin-bottom: 14px; font-size: 0.95rem; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 0.9rem; }

/* ============================================
   CONTENT SECTIONS (Service/Area/Blog pages)
   ============================================ */
.content-section { padding: 60px 0; }
.content-body { max-width: 800px; }
.content-body h2 { margin-top: 2em; color: var(--navy); }
.content-body h3 { margin-top: 1.5em; color: var(--blue); }
.content-body ul, .content-body ol { margin: 1em 0 1em 1.5em; }
.content-body ul { list-style: disc; }
.content-body ol { list-style: decimal; }
.content-body li { margin-bottom: 0.4em; }
.content-body a { color: var(--teal); font-weight: 600; }
.content-body a:hover { color: var(--blue); text-decoration: underline; }

.content-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--gray-100);
}
.sidebar-box h3 { font-size: 1.05rem; margin-bottom: 12px; }
.sidebar-box ul { list-style: none; }
.sidebar-box ul li { margin-bottom: 8px; }
.sidebar-box ul li a { font-size: 0.92rem; font-weight: 500; color: var(--gray-500); display: block; padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.sidebar-box ul li a:hover { color: var(--teal); }

.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--white);
}
.cta-box h2 { color: var(--white); }
.cta-box p { opacity: 0.9; margin-bottom: 1.5rem; }
.cta-box .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--teal) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.final-cta h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.final-cta p { opacity: 0.92; max-width: 600px; margin: 0 auto 1.5rem; font-size: 1.1rem; }
.final-cta .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-size: 1.08rem; margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--navy); }
.blog-card-body h3 a:hover { color: var(--teal); }
.blog-card-body p { font-size: 0.9rem; color: var(--gray-400); }
.blog-card-body .read-more { font-weight: 600; font-size: 0.88rem; color: var(--teal); margin-top: 10px; display: inline-block; }

/* Blog article */
.blog-article { max-width: 780px; margin: 0 auto; }
.blog-article h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.blog-meta { font-size: 0.88rem; color: var(--gray-400); margin-bottom: 2rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-nap { font-size: 0.93rem; line-height: 1.8; }
.footer-nap strong { color: var(--white); }
.footer-nap a { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ============================================
   404
   ============================================ */
.page-404 { text-align: center; padding: 100px 20px; }
.page-404 h1 { font-size: 4rem; color: var(--teal); }
.page-404 p { font-size: 1.1rem; margin-bottom: 2rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .header-inner { flex-wrap: wrap; }
  .nav-main { display: none; }
  .nav-main.open { display: flex; flex-direction: column; width: 100%; order: 10; padding: 10px 0; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; display: block; max-height: none; }
  .menu-toggle { display: block; }
}
@media (max-width: 768px) {
  .hero { padding: 50px 0 60px; }
  .section { padding: 50px 0; }
  .trust-items { gap: 20px; }
  .header-ctas .btn-request { display: none; }
  .top-bar .hours { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================
   CONSULTATION / LEADSMART SECTION
   ============================================ */
.consultation-section {
  background: var(--off-white);
  padding: 70px 0 80px;
  border-top: 3px solid var(--teal);
}
.consultation-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.consultation-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.6em;
}
.consultation-text p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--gray-500);
}
.consultation-form {
  position: relative;
}
.consultation-form-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.consultation-form-inner iframe {
  display: block;
  width: 100%;
  min-height: 545px;
}

@media (max-width: 992px) {
  .consultation-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .consultation-form-inner {
    padding: 16px;
  }
  .consultation-form-inner iframe {
    min-height: 560px;
  }
}
@media (max-width: 480px) {
  .consultation-section {
    padding: 50px 0 60px;
  }
  .consultation-form-inner {
    padding: 10px;
    border-radius: var(--radius-md);
  }
}
