/* 🌟 Better Color Scheme (Lighter, Aligned with Logo) */
:root {
  --primary-color: #E60000;     /* Bright Red from Logo */
  --secondary-color: #66C2AC;   /* Soft Green (Icon Accent) */
  --accent-color: #E60000;      /* Red for CTAs */
  --text-primary: #333333;
  --text-secondary: #555555;
  --footer-bg: #FFF5F5;
  --white: #FFFFFF;

  /* New (for modern “Hims/Hers-like” sections) */
  --bg-1: #E0F2FE;
  --bg-2: #F0F9FF;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Reset and General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* ✅ Push Footer to Bottom */
html, body {
  height: 100%;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

/* -----------------------------
   Hims/Hers-style utility blocks
   (Use these in sections you want)
------------------------------ */
.container-narrow {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

.glass {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.soft-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.soft-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.10);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.hero-title-modern {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 12px 0 10px;
  color: var(--text-primary);
}

.hero-sub-modern {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 65ch;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.10);
  background: rgba(255,255,255,1);
}

.btn-pill.primary {
  background: linear-gradient(135deg, var(--accent-color), #ff4d4d);
  color: #fff;
  border-color: rgba(230,0,0,0.25);
}

.btn-pill.primary:hover {
  background: linear-gradient(135deg, #d60000, #ff3b3b);
}

.btn-pill.secondary {
  background: rgba(102, 194, 172, 0.18);
  border-color: rgba(102, 194, 172, 0.35);
}

/* Floating blobs (optional) */
.hero-wrap {
  position: relative;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.55;
  animation: floaty 9s ease-in-out infinite;
  pointer-events: none;
}

.blob.one { left: -140px; top: -160px; background: rgba(230, 0, 0, 0.22); }
.blob.two { right: -160px; top: -120px; background: rgba(102, 194, 172, 0.25); animation-delay: 1.2s; }

@keyframes floaty {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(18px, 16px) scale(1.06); }
}

/* Scroll reveal helper (optional) */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Grid helpers */
.grid {
  display: grid;
  gap: 18px;
}
.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 920px) {
  .grid.cols-3 { grid-template-columns: 1fr; }
}

/* -----------------------------
   Navbar
------------------------------ */
.custom-navbar {
  background: linear-gradient(to right, #E0F2FE, #F0F9FF);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
  gap: 2rem;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: bold;
  font-size: 1.1rem;
  padding: 10px 15px;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 10px;
}

.navbar-nav .nav-link:hover {
  color: var(--white);
  background-color: var(--secondary-color);
}

.navbar-nav .nav-link.active {
  color: var(--secondary-color);
  background-color: rgba(102, 194, 172, 0.18);
}

.logo {
  height: 70px;
}

.header-cta {
  gap: 1rem;
}

.header-cta .btn {
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 15px;
  min-width: 120px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.header-cta .btn-outline-primary {
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  background-color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-cta .btn-outline-primary:hover {
  background-color: var(--text-primary);
  color: var(--white);
  transform: scale(1.05);
}

.header-cta .btn-primary {
  background-color: var(--accent-color);
  border: none;
  color: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-cta .btn-primary:hover {
  background-color: #d60000;
  transform: scale(1.05);
}

/* -----------------------------
   Hero Section (Carousel)
------------------------------ */
.hero-banner {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100%;
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.carousel-indicators {
  z-index: 2;
}

.carousel-indicators button {
  background-color: #FFFFFF;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: var(--accent-color);
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 2;
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 1;
  max-width: 40%;
}

.carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.carousel-caption p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.carousel-caption .btn-primary {
  background-color: var(--accent-color);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  min-width: 150px;
}

.carousel-caption .btn-primary:hover {
  background-color: #d60000;
}

.contact-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.contact-icon {
  margin-right: 10px;
}

.contact-icon i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.contact-text p {
  font-size: 1rem;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-text h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* -----------------------------
   Refill Section
------------------------------ */
.refill-section {
  padding: 40px 20px;
}

.button-container {
  margin: 0 auto;
  text-align: center;
}

.refill-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px;
  background: var(--white);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 12px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  min-width: 300px;
  max-width: 90%;
  border: 1px solid var(--border);
}

.refill-button i {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.refill-button h3 {
  font-size: 1.25rem;
  margin: 5px 0 2px;
  color: var(--text-primary);
  font-weight: 700;
  white-space: nowrap;
}

.refill-button p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

.refill-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

/* -----------------------------
   Services Section
------------------------------ */
.services-section {
  padding: 40px 20px;
}

/* Simple Header */
.simple-header {
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
  padding: 2rem 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.simple-header .header-logo {
  height: 80px;
  margin-bottom: 1rem;
}

.simple-header h1 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.simple-header h1 i {
  color: var(--secondary-color);
}

.simple-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Enhanced Services Section */
.enhanced-services-section {
  background: #FFFFFF;
  padding: 3rem 2rem;
  padding-top: 5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0,0,0,0.06);
}

.enhanced-services-section h2 {
  font-size: 2rem;
  color: var(--text-primary);
  font-weight: bold;
}

.enhanced-services-section h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.enhanced-services-section .lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.enhanced-service-card {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: #F8FAFC;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
  border: 1px solid rgba(0,0,0,0.06);
}

.enhanced-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
}

.service-icon {
  flex: 0 0 60px;
  text-align: center;
}

.service-icon i {
  color: var(--secondary-color);
}

.service-content {
  flex: 1;
}

.service-content h4 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Guarantee Section */
.guarantee-section {
  background: #F8FAFC;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

.guarantee-section h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.guarantee-list {
  list-style: none;
  padding: 0;
}

.guarantee-list li {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.guarantee-list li i {
  color: var(--secondary-color);
}

/* -----------------------------
   Form Section
------------------------------ */
.form-section {
  background: #FFFFFF;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-card {
  padding: 1.5rem;
  background: #F8FAFC;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}

.form-card h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.form-card h5 {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: bold;
}

.form-card .form-label {
  font-weight: bold;
  color: var(--text-primary);
}

.form-card .form-label i {
  color: var(--secondary-color);
}

.form-card .form-control {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 0.75rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-card .form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(102, 194, 172, 0.20);
}

.form-card .form-check-label {
  color: var(--text-secondary);
}

.form-card .btn-light {
  background-color: var(--accent-color);
  border: none;
  color: #FFFFFF;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.3s ease, transform 0.18s ease;
  min-width: 120px;
  border-radius: 12px;
}

.form-card .btn-light:hover {
  background-color: #d60000;
  transform: translateY(-1px);
}

/* -----------------------------
   Contact Section
------------------------------ */
.contact-section {
  background: #FFFFFF;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0,0,0,0.06);
}

.location-card {
  padding: 1.5rem;
  background: #F8FAFC;
  border-radius: 12px;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.06);
}

.location-card h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.location-info {
  margin-bottom: 1.5rem;
}

.location-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.location-info i {
  color: var(--secondary-color);
}

.map-container iframe {
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* -----------------------------
   Footer
------------------------------ */
footer {
  background: linear-gradient(135deg, #BFDBFE 0%, #E0F2FE 100%);
  color: var(--text-primary);
  padding: 40px 15px;
  margin-top: auto;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-section {
  padding: 1rem;
  text-align: center;
}

.footer-section h5 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-hours .hours-table {
  background: #FFFFFF;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #E5E7EB;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: bold;
  color: var(--text-primary);
}

.hours-row span:last-child {
  color: var(--text-secondary);
}

.footer-map iframe {
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  text-decoration: none;
  font-size: 1.8rem;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 0.5rem;
}

.social-links a:hover {
  transform: scale(1.1);
}

.facebook-link { color: #1877F2; }
.facebook-link:hover { color: #145DBF; }

.google-link { color: #DB4437; }
.google-link:hover { color: #C1352E; }

/* -----------------------------
   Reviews Section + Trustindex overrides
------------------------------ */
.reviews-section {
  background: #FFFFFF;
  padding: 2rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0,0,0,0.06);
}

.trustindex-widget { position: relative; }

.ti-widget.ti-goo .ti-readmore { display: none !important; }
.ti-widget.ti-goo .ti-widget-header .ti-header-logo { display: none !important; }

.ti-widget.ti-goo {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.ti-widget.ti-goo .ti-reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.ti-widget.ti-goo .ti-review-item {
  background: #F8FAFC;
  padding: 1rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,0.06);
}

.ti-widget.ti-goo .ti-review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.10);
}

.ti-widget.ti-goo .ti-stars { margin-bottom: 0.5rem; }

.ti-widget.ti-goo .ti-star.filled,
.ti-widget.ti-goo .ti-star.e {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFC107"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>') no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
}

.ti-widget.ti-goo .ti-review-content {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ti-widget.ti-goo .ti-name {
  font-weight: bold;
  color: var(--text-primary);
}

.ti-widget.ti-goo .ti-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.ti-widget.ti-goo .ti-review-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ti-widget.ti-goo .ti-profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* -----------------------------
   Responsive Adjustments
------------------------------ */

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-banner { height: 60vh; }

  .carousel-caption {
    left: 8%;
    max-width: 50%;
    top: 50%;
  }

  .carousel-caption h1 { font-size: 2.2rem; }
  .carousel-caption p { font-size: 1rem; }

  .carousel-caption .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }

  .refill-section { padding: 30px 15px; }

  .refill-button {
    padding: 12px 15px;
    min-width: 280px;
  }

  .refill-button h3 { font-size: 1.1rem; }
  .refill-button p { font-size: 0.85rem; }
  .refill-button i { font-size: 1.3rem; }

  .services-section { padding: 30px 15px; }

  .enhanced-services-section {
    padding: 2.5rem 1.5rem;
    padding-top: 4.5rem;
  }

  .enhanced-service-card {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .service-icon { margin-bottom: 0; }
  .guarantee-section { padding: 1.8rem; }

  .footer-section { margin-bottom: 1.5rem; }
  .footer-map iframe { height: 220px; }

  .form-section,
  .contact-section { padding: 1.8rem 1rem; }

  .form-card,
  .location-card { padding: 1.2rem; }

  .map-container iframe { height: 220px; }

  .navbar-nav { gap: 1.5rem; }

  .header-cta .btn {
    font-size: 0.9rem;
    padding: 8px 12px;
    min-width: 100px;
  }

  .reviews-section { padding: 1.8rem 1rem; }
  .ti-widget.ti-goo .ti-review-item { max-width: 45%; }
}


/* Mobile (below 768px) */
@media (max-width: 767px) {
  .hero-banner { height: 50vh; }

  .carousel-caption {
    left: 5%;
    max-width: 90%;
    top: 60%;
  }

  .carousel-caption h1 { font-size: 1.8rem; }
  .carousel-caption p { font-size: 0.9rem; }

  .carousel-caption .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    bottom: 10px;
    left: 10px;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .contact-icon i { font-size: 1.5rem; }
  .contact-text p { font-size: 0.9rem; }
  .contact-text h3 { font-size: 1.2rem; }

  .simple-header { padding: 1.5rem 0; }
  .simple-header .header-logo { height: 60px; }

  .simple-header h1 { font-size: 1.5rem; }
  .simple-header p { font-size: 0.9rem; }

  .refill-section { padding: 20px 10px; }

  .refill-button {
    padding: 10px 15px;
    min-width: 250px;
  }

  .refill-button h3 { font-size: 1rem; }
  .refill-button p { font-size: 0.8rem; }
  .refill-button i { font-size: 1.2rem; }

  .services-section { padding: 20px 10px; }

  .enhanced-services-section {
    padding: 2rem 1rem;
    padding-top: 4rem;
  }

  .enhanced-service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-icon { margin-bottom: 1rem; }
  .guarantee-section { padding: 1.5rem; }

  .navbar-nav { gap: 1rem; }

  .navbar-nav .nav-link {
    font-size: 1rem;
    padding: 8px 12px;
  }

  .header-cta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .header-cta .btn {
    font-size: 0.9rem;
    padding: 8px 12px;
    min-width: 100px;
  }

  .footer-section { margin-bottom: 2rem; }
  .footer-map iframe { height: 200px; }

  .form-section,
  .contact-section { padding: 1.5rem 0.5rem; }

  .form-card,
  .location-card { padding: 1rem; }

  .map-container iframe { height: 200px; }

  .reviews-section { padding: 1.5rem 0.5rem; }

  .ti-widget.ti-goo .ti-review-item { max-width: 100%; }
  .ti-widget.ti-goo .ti-review-content { font-size: 0.8rem; }

  .ti-widget.ti-goo .ti-profile-img {
    width: 30px;
    height: 30px;
  }
}
/* FULL-SCREEN HERO  */
.hero-wrap {
  min-height: calc(100vh - 90px); /* adjust if header height changes */
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

/* Make hero card bigger */
.hero-wrap .glass {
  padding: 56px !important;
}

/* Bigger headline */
.hero-title-modern {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
}

/* Slightly larger body text */
.hero-sub-modern {
  font-size: 1.15rem;
  max-width: 680px;
}

/* Bigger image card */
.hero-wrap img {
  height: 320px !important;
}

@media (max-width: 991px) {
  .hero-wrap {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-wrap img {
    height: 220px !important;
  }
}
.hero-wrap .container-narrow {
  width: min(1440px, 98%);
}
.soft-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* ===== Promo banner (clean + premium) ===== */
.promo-wrap{
  position: relative;
  z-index: 50;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.promo-container{
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 16px; /* important: side padding */
}

.promo-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  background: linear-gradient(
    90deg,
    rgba(230,0,0,0.08),
    rgba(102,194,172,0.10),
    rgba(255,255,255,0.90)
  );
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.promo-left{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  min-width: 220px;
}

.promo-badge{
  background: rgba(230,0,0,0.14);
  color:#b40000;
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(230,0,0,0.18);
  letter-spacing: 0.02em;
}

.promo-text{
  font-size:14px;
  color:#111;
  font-weight: 700;
}

.promo-text span{
  font-weight: 800;
  color: #b40000;
}

.promo-btn{
  background: linear-gradient(135deg, var(--accent-color), #ff4d4d);
  color:#fff !important;
  padding:10px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border: 1px solid rgba(230,0,0,0.25);
  box-shadow: 0 10px 22px rgba(230,0,0,0.18);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
}

.promo-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(230,0,0,0.26);
  filter: brightness(1.02);
}

/* Mobile: make it feel like a stacked pill */
@media (max-width: 767px){
  .promo-content{
    border-radius: 18px;
    padding: 12px;
  }
  .promo-btn{
    width: 100%;
    justify-content: center;
  }
}
/* Weather Hours Banner */
#weather-hours-banner {
  width: 100%;
  background: linear-gradient(90deg, #fef3c7, #fde68a);
  color: #92400e;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

#weather-hours-banner a {
  color: #92400e;
  text-decoration: underline;
  font-weight: 700;
}

#weather-hours-banner a:hover {
  opacity: 0.85;
}
