
/* ==========================================
    THEME: COLORS & FONTS (YOUR PROVIDED THEME)
    ========================================== */
:root {
  /* Nav theme */
  --nav-color: #2c4964;
  --nav-hover-color: #1977cc;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2c4964;
  --nav-dropdown-hover-color: #1977cc;

  /* Brand colors */
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #114659;
  --accent-color: #509d91;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Fonts */
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", "Helvetica Neue",
                  Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
                  "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Raleway", sans-serif;

  /* Bridged variables (used by old CSS structure) */
  --clr-bg: var(--background-color);
  --clr-bg-soft: #f3f8f7;
  --clr-bg-softer: #e5f0ed;
  --clr-accent: var(--accent-color);
  --clr-accent-soft: rgba(80, 157, 145, 0.12);
  --clr-accent-2: #1977cc;
  --clr-text-main: var(--default-color);
  --clr-text-soft: #6c757d;
  --clr-border-soft: rgba(17, 70, 89, 0.12);
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --glass: rgba(255, 255, 255, 0.96);
  --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--default-font);
  background: #ffffff;
  color: var(--clr-text-main);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
}

/* =============================
    SECTION COLOR PATTERN
    ============================= */
section {
  padding: 4rem 0;
  background-color: #ffffff;          /* default: white */
}

/* pattern: color / white / color / white ... */
section:nth-of-type(odd) {
  background-color: #f6fbfa;          /* soft greenish section */
}

/* =============================
    NAVBAR
    ============================= */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--clr-border-soft);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.main-nav.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  background: #ffffff;
}

.navbar-brand img {
  height: 30px;
}

.navbar-nav .nav-link {
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--nav-color) !important;
  padding-inline: 0.9rem !important;
  border-radius: 999px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--nav-hover-color) !important;
  background: rgba(25, 119, 204, 0.06);
}

.nav-cta-btn {
  font-family: var(--nav-font);
  border-radius: 999px;
  padding-inline: 1.3rem !important;
  background: linear-gradient(120deg, var(--clr-accent), var(--clr-accent-2));
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(25, 119, 204, 0.35);
  border: none;
  font-size: 0.9rem;
}

.nav-cta-btn:hover {
  filter: brightness(1.05);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* =============================
    HERO
    ============================= */

#hero {
  position: relative;
  overflow: hidden;
  background-image: url(img/heroImg.png);
  background-size: cover;
}

/* background image with horizontal flip only, text stays normal */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/heroImg.png");
  background-size: cover;
  background-position: center;
  transform: scaleX(-1);       /* invert background only */
  opacity: 0.35;
  z-index: -1;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: rgba(80, 157, 145, 0.08);
  border: 1px solid rgba(80, 157, 145, 0.35);
  color: var(--clr-accent);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--heading-color);
}

.hero-title span {
  background: linear-gradient(120deg, var(--clr-accent), var(--clr-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 1rem;
  color: var(--clr-text-soft);
  max-width: 32rem;
  font-size: 0.98rem;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-soft {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--clr-border-soft);
  background: #ffffff;
  color: var(--clr-text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-family: var(--nav-font);
}

.btn-soft i {
  font-size: 0.95rem;
  color: var(--clr-accent);
}

.btn-soft:hover {
  border-color: var(--clr-accent);
  background: #f5fbfa;
}

.hero-actions .btn-primary-gradient {
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  border: none;
  background: linear-gradient(120deg, var(--clr-accent), var(--clr-accent-2));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(25, 119, 204, 0.45);
  font-family: var(--nav-font);
}

.hero-actions .btn-primary-gradient:hover {
  filter: brightness(1.06);
}

.hero-meta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #ffffff
}

.hero-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--clr-accent);
  margin-right: 0.5rem;
  display: inline-block;
}

.hero-card {
  background: radial-gradient(circle at top left, #e8f5f2 0, #ffffff 70%);
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17, 70, 89, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  color: var(--clr-accent-2);
  border: 1px solid rgba(17, 70, 89, 0.18);
  font-family: var(--nav-font);
}

.hero-blob {
  position: absolute;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(80, 157, 145, 0.35), transparent);
  filter: blur(6px);
  right: -4rem;
  bottom: -5rem;
  opacity: 0.7;
  pointer-events: none;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--clr-text-soft);
}

.hero-stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-accent);
  font-family: var(--heading-font);
}

.hero-avatar-wrapper {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(17, 70, 89, 0.16);
  margin-top: 0.75rem;
  background: #ffffff;
}

/* =============================
    GENERIC SECTION / CARDS
    ============================= */
.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.35rem;
  font-family: var(--nav-font);
}

.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--clr-text-soft);
  max-width: 32rem;
  font-size: 0.92rem;
}

.card-glass {
  background: var(--glass);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-soft);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 70, 89, 0.16);
  color: var(--clr-text-soft);
  background: #f7fbfa;
  font-family: var(--nav-font);
}

.tag-pill i {
  font-size: 0.8rem;
  color: var(--clr-accent);
}

/* =============================
    ABOUT & APPROACH
    ============================= */
.about-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  color: var(--clr-text-main);
}

.about-list li i {
  margin-top: 0.25rem;
  color: var(--clr-accent);
}

.approach-step {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: var(--clr-text-main);
}

.approach-step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(17, 70, 89, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--clr-accent);
  flex-shrink: 0;
  font-family: var(--nav-font);
}

/* =============================
    SERVICES
    ============================= */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-soft);
  background: linear-gradient(145deg, #ffffff, #f3f9f7);
  padding: 1.3rem 1.2rem 1.2rem;
  height: 100%;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-accent-soft);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: var(--clr-accent);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--heading-color);
}

.service-desc {
  font-size: 0.85rem;
  color: var(--clr-text-soft);
  margin-bottom: 0.6rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.service-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #f6fbfa;
  border: 1px solid rgba(17, 70, 89, 0.18);
  color: var(--clr-text-soft);
  font-family: var(--nav-font);
}

/* =============================
    CONDITIONS
    ============================= */
.condition-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 70, 89, 0.22);
  background: #f7fbfa;
  font-size: 0.82rem;
  color: var(--clr-text-main);
  margin: 0.25rem;
  white-space: nowrap;
  font-family: var(--nav-font);
}

.condition-pill i {
  color: var(--clr-accent);
  font-size: 0.85rem;
}

/* =============================
    WHY US / STATS
    ============================= */
.stat-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 70, 89, 0.2);
  background: linear-gradient(135deg, #f6fbfa, #ffffff);
  padding: 1.1rem 1.2rem;
  text-align: left;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 0.15rem;
  font-family: var(--heading-font);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--clr-text-soft);
}

/* =============================
    TESTIMONIALS
    ============================= */
.testimonial-card {
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  background: #ffffff;
  border: 1px solid var(--clr-border-soft);
  box-shadow: var(--shadow-soft);
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--clr-text-soft);
  margin-bottom: 0.85rem;
  font-style: italic;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.testimonial-meta {
  font-size: 0.78rem;
  color: var(--clr-text-soft);
}

/* =============================
    FAQs
    ============================= */
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border-soft);
  background: #ffffff;
  margin-bottom: 0.8rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
}

.faq-q {
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--heading-color);
}

.faq-a {
  padding: 0 1rem 0.9rem;
  font-size: 0.85rem;
  color: var(--clr-text-soft);
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-icon {
  margin-left: 0.75rem;
  color: var(--clr-accent);
  transition: transform 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(90deg);
}

/* =============================
    CONTACT
    ============================= */
.contact-card {
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--clr-border-soft);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.form-control,
.form-select {
  background: #ffffff;
  border-radius: 0.7rem;
  border: 1px solid rgba(17, 70, 89, 0.22);
  color: var(--clr-text-main);
  font-size: 0.88rem;
  font-family: var(--default-font);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 1px rgba(80, 157, 145, 0.3);
  background: #ffffff;
  color: var(--clr-text-main);
}

.form-label {
  font-size: 0.82rem;
  color: var(--clr-text-soft);
}

.btn-primary-gradient {
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  border: none;
  background: linear-gradient(120deg, var(--clr-accent), var(--clr-accent-2));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(25, 119, 204, 0.45);
  font-family: var(--nav-font);
  white-space: nowrap;
}

.btn-primary-gradient:hover {
  filter: brightness(1.06);
}

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.86rem;
  color: var(--clr-text-soft);
}

.contact-info-item i {
  color: var(--clr-accent);
  margin-top: 0.15rem;
}

.contact-badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 70, 89, 0.3);
  color: var(--clr-text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
  background: #f7fbfa;
  font-family: var(--nav-font);
}

/* =============================
    FOOTER
    ============================= */
footer {
  background: #f5f9f8;
}

.footer-main {
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
  color: var(--clr-text-soft);
}

.footer-title {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.footer-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.footer-text {
  margin-bottom: 0.25rem;
}

.footer-text strong {
  color: var(--heading-color);
}

.footer-links-list,
.footer-services-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links-list li,
.footer-services-list li {
  margin-bottom: 0.35rem;
}

.footer-links-list a,
.footer-services-list a {
  color: var(--clr-text-soft);
  text-decoration: none;
  font-family: var(--nav-font);
  font-size: 0.9rem;
}

.footer-links-list a:hover,
.footer-services-list a:hover {
  color: var(--clr-accent);
}

/* Social icons */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(17, 70, 89, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f5faf9;
  color: var(--heading-color);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--clr-accent);
  color: #ffffff;
}

/* Newsletter */
.footer-newsletter-text {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-newsletter-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
}

.footer-newsletter-form input[type="email"] {
  flex: 1;
  border-radius: 0.25rem;
  border: 1px solid rgba(17, 70, 89, 0.3);
  padding: 0.35rem 0.55rem;
  font-size: 0.86rem;
}

.footer-newsletter-form button {
  border-radius: 0.25rem;
  border: 1px solid rgba(17, 70, 89, 0.3);
  background: #ffffff;
  padding: 0.35rem 0.8rem;
  font-size: 0.86rem;
  font-family: var(--nav-font);
}

.footer-newsletter-form button:hover {
  background: var(--clr-accent);
  color: #ffffff;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(17, 70, 89, 0.16);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.8rem;
  color: var(--clr-text-soft);
}

.footer-bottom a {
  color: var(--clr-accent);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Appointment section (page) */
.appointment {
  /* background handled by section pattern */
}

.appointment .section-heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.appointment .section-text {
  color: var(--clr-text-soft);
  max-width: 40rem;
  margin: 0 auto;
  font-size: 0.94rem;
}

.appointment-card {
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--clr-border-soft);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.cta-btn {
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  border: none;
  background: linear-gradient(120deg, var(--clr-accent), var(--clr-accent-2));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(25, 119, 204, 0.45);
  font-family: var(--nav-font);
}

.cta-btn:hover {
  filter: brightness(1.06);
}

/* Modal styling */
.modal-content {
  border-radius: 1.2rem;
  border: 1px solid var(--clr-border-soft);
}

.modal-header {
  border-bottom: 1px solid rgba(17, 70, 89, 0.1);
}

@media (max-width: 767.98px) {
  .footer-main {
    text-align: left;
  }
  .footer-bottom {
    text-align: center;
  }
}

/* =============================
    FLOATING WHATSAPP
    ============================= */
.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1.2rem;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.4rem;
}

.floating-whatsapp-btn {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.7rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.floating-whatsapp-label {
  font-size: 0.78rem;
  background: rgba(17, 70, 89, 0.96);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #f9fafb;
  max-width: 11rem;
  text-align: right;
  font-family: var(--nav-font);
}

/* =============================
    BACK TO TOP
    ============================= */
.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 4.6rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(17, 70, 89, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 900;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* =============================
    SCROLL REVEAL
    ============================= */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.5s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
  SERVICES – NEW UI
  ============================= */
.services {
  background: #ffffff;
}

.service-grid {
  row-gap: 1.5rem;
}

.service-card-animated {
  background: linear-gradient(145deg, #ffffff, #f5fbfa);
  border-radius: 1.2rem;
  border: 1px solid rgba(17, 70, 89, 0.12);
  padding: 1.3rem 1.25rem 1.1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.service-card-animated:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  border-color: rgba(80, 157, 145, 0.5);
  background: linear-gradient(145deg, #ffffff, #ecf7f4);
}

.service-icon-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(80, 157, 145, 0.1);
  color: var(--clr-accent);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  position: relative;
}

.service-icon-ring::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px dashed rgba(80, 157, 145, 0.35);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card-animated:hover .service-icon-ring::after {
  opacity: 1;
}

.service-title-main {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--heading-color);
}

.service-text {
  font-size: 0.88rem;
  color: var(--clr-text-soft);
  flex: 1;
}

.service-tags-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.25rem;
}

.service-tags-mini span {
  background: #f0f8f7;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  border: 1px solid rgba(17, 70, 89, 0.14);
  font-size: 0.7rem;
  font-family: var(--nav-font);
  color: var(--clr-text-soft);
}

/* Extra services hidden by default */
.service-extra {
  display: none;
}

#services.services-expanded .service-extra {
  display: block;
}

/* Show-more button */
.btn-outline-accent {
  border-radius: 999px;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--clr-accent);
  background: #ffffff;
  color: var(--clr-accent);
  font-family: var(--nav-font);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.btn-outline-accent i {
  font-size: 0.9rem;
}

.btn-outline-accent:hover {
  background: var(--clr-accent);
  color: #ffffff;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--clr-border-soft);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Mobile tweaks */
@media (max-width: 575.98px) {
  .service-card-animated {
    padding: 1.15rem 1rem;
  }
}

/* =============================
    RESPONSIVE
    ============================= */
@media (max-width: 991.98px) {
  .hero {
    padding-top: 4rem;
  }
  .hero-card {
    margin-top: 2rem;
  }
  .navbar-collapse {
    background: var(--nav-mobile-background-color);
    padding: 0.6rem 0.8rem 0.9rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 14px 25px rgba(15, 23, 42, 0.12);
  }
  .navbar-nav .nav-link {
    margin: 0.2rem 0;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .navbar-brand img {
    height: 32px;
  }
  .hero-card {
    padding: 1.2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
.ni-dsw-map{
  height: 540px;
}
.ni-contact-dsw{
  display: flex;
  justify-content: space-around;
}