 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --red: #e8173a;
      --green: #2e7d32;
      --green-dark: #1b5e20;
      --text: #1a1a2e;
      --muted: #555;
      --border: #e0e0e0;
      --bg-top: #fff8f8;
    }
 
    body { font-family: 'DM Sans', sans-serif; background: #f4f4f4; }
 
    /* ── TOP BAR ── */
    .top-bar {
      background: var(--bg-top);
      border-bottom: 1px solid var(--border);
      padding: 8px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      color: var(--muted);
    }
    .top-bar .appointment-link {
      color: var(--red); font-weight: 600; text-decoration: none;
      letter-spacing: 0.3px; transition: opacity .2s;
    }
    .top-bar .appointment-link:hover { opacity: .75; }
    .top-bar .contact-info { display: flex; align-items: center; gap: 20px; }
    .contact-item { display: flex; align-items: center; gap: 6px; }
    .contact-item svg { flex-shrink: 0; }
    .contact-item a { color: var(--muted); text-decoration: none; transition: color .2s; }
    .contact-item a:hover { color: var(--red); }
    .divider { width: 1px; height: 16px; background: var(--border); }
    .social-icons { display: flex; align-items: center; gap: 10px; }
    .social-icons a {
      display: flex; align-items: center; justify-content: center;
      width: 28px; height: 28px; border-radius: 50%;
      border: 1px solid var(--border); color: var(--muted);
      text-decoration: none; transition: background .2s, color .2s, border-color .2s;
    }
    .social-icons a:hover { background: var(--red); border-color: var(--red); color: #fff; }
 
    /* ── MAIN NAV ── */
    .main-nav {
      background: #fff;
      box-shadow: 0 2px 12px rgba(0,0,0,.07);
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }
 
    /* LOGO */
    .logo-placeholder {
      display: flex; align-items: center; gap: 10px;
      padding: 14px 0; text-decoration: none; flex-shrink: 0;
    }
    .logo-box {
      width: 54px; height: 54px;
      border-radius: 10px; display: flex; align-items: center;
      justify-content: center; background: #fafafa; color: #aaa;
      font-size: 10px; text-align: center; line-height: 1.3;
    }

    .logo-box img {
    width: 120px;
    margin-left: 25px;
    margin-top: -13px;
}
 
    /* HAMBURGER */
    .hamburger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; cursor: pointer; padding: 8px; border: none; background: none;
    }
    .hamburger span {
      display: block; width: 24px; height: 2.5px;
      background: var(--text); border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
 
    /* NAV LINKS */
    .nav-links {
      display: flex; align-items: center;
      list-style: none; gap: 4px; height: 100%;
    }
    .nav-links > li { position: relative; }
    .nav-links > li > a {
      display: flex; align-items: center; gap: 4px;
      padding: 26px 16px; font-size: 15px; font-weight: 500;
      color: var(--text); text-decoration: none;
      letter-spacing: 0.2px; transition: color .2s; white-space: nowrap;
    }
    .nav-links > li > a:hover,
    .nav-links > li.active > a { color: var(--red); }
 
    .nav-links > li.active > a::after {
      content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
      height: 3px; background: var(--red); border-radius: 3px 3px 0 0;
    }
 
    .chevron { width: 12px; height: 12px; transition: transform .25s; }
    .nav-links > li:hover .chevron { transform: rotate(180deg); }
 
    /* DROPDOWN */
    .dropdown {
      position: absolute; top: 100%; left: 0;
      background: #fff; min-width: 225px;
      border-radius: 0 0 10px 10px;
      box-shadow: 0 8px 28px rgba(0,0,0,.12);
      overflow: hidden; opacity: 0; pointer-events: none;
      transform: translateY(-6px);
      transition: opacity .22s ease, transform .22s ease;
      z-index: 200;
    }
    .nav-links > li:hover .dropdown {
      opacity: 1; pointer-events: auto; transform: translateY(0);
    }
    .dropdown li { list-style: none; }
   .dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 16px 15px 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background .18s, color .18s, border-color .18s, padding-left .18s;
}
    .dropdown li a:hover {
      background: var(--red); color: #fff;
      border-left-color: var(--red); padding-left: 14px;
    }
    .dropdown li a:hover::before {
      content: '—'; font-weight: 700; font-size: 12px; flex-shrink: 0;
    }
 
    /* APPOINTMENT BUTTON */
    .btn-appointment {
      display: inline-flex; align-items: center; gap: 8px;
          padding: 17px 33px; background:#0d9044; color: #fff;
      font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
      letter-spacing: 1.2px; text-transform: uppercase; text-decoration: none;
      border-radius: 6px; border: none; cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 14px rgba(46,125,50,.3);
      white-space: nowrap; flex-shrink: 0;
    }
    .btn-appointment:hover {
      background:#EE344E; transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(46,125,50,.4);
    }
 
    .demo-notice {
      text-align: center; padding: 30px 20px;
      color: #888; font-size: 13px; font-style: italic;
    }
 
    /* ════════════════════════
       RESPONSIVE
    ════════════════════════ */
 
    /* Tablet */
    @media (max-width: 1024px) {
      .top-bar { padding: 8px 20px; }
      .main-nav { padding: 0 20px; }
      .email-item, .email-divider { display: none; }
    }
 
    /* Mobile */
    @media (max-width: 768px) {
 
      /* Top bar stacked */
      .top-bar {
        flex-direction: column; gap: 8px;
        padding: 10px 16px; text-align: center;
      }
      .top-bar .contact-info { flex-wrap: wrap; justify-content: center; gap: 10px; }
 
      /* Main nav */
      .main-nav { padding: 0 16px; flex-wrap: wrap; }
 
      /* Show hamburger */
      .hamburger { display: flex; }
 
      /* Hide desktop appointment btn */
      .desktop-btn { display: none; }
 
      /* Nav drawer */
      .nav-links {
        display: none; flex-direction: column; align-items: stretch;
        width: 100%; gap: 0; padding-bottom: 12px;
        border-top: 1px solid var(--border);
      }
      .nav-links.open { display: flex; }
 
      .nav-links > li > a {
        padding: 14px 16px; font-size: 15px;
        border-bottom: 1px solid #f0f0f0;
      }
      .nav-links > li.active > a::after { display: none; }
 
      /* Mobile dropdown */
      .dropdown {
        position: static; box-shadow: none; border-radius: 0;
        opacity: 1; pointer-events: auto; transform: none;
        display: none; background: #fef3f5;
        border-left: 3px solid var(--red); margin-left: 16px;
      }
      .nav-links > li.open-mobile .dropdown { display: block; }
      .nav-links > li.open-mobile .chevron { transform: rotate(180deg); }
 
      .dropdown li a {
        padding: 11px 14px 11px 12px;
        font-size: 13px; border-left: none;
      }
      .dropdown li a:hover { padding-left: 16px; }
 
      /* Mobile appointment btn */
      .mobile-btn {
        display: flex !important; justify-content: center;
        margin: 12px 16px 4px; border-radius: 6px;
      }
    }
 
    @media (max-width: 380px) {
      .social-icons { display: none; }
    }



















.hero{
  width:100%;
  height:500px; /* height adjust kar sakte ho */
  background:url('../img/ban.png') center/cover no-repeat;
}

































































      .about-section {
    padding: 70px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
 
  .about-inner {
    display: flex;
    align-items: flex-start;
    gap: 55px;
  }
 
  /* ── LEFT: IMAGE PLACEHOLDER ── */
.about-image {
  flex: 0 0 45%;
  max-width: 45%;
  align-self: stretch;   /* ← parent flex ke height ke barabar ho jaayega */
}
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  /* placeholder box agar image na ho */
  .img-placeholder {
  width: 100%;
  height: 100%;           /* ← aspect-ratio hatao, height: 100% lagao */
  min-height: 320px;      /* ← ek minimum height bhi rakho */
  aspect-ratio: unset;    /* ← yeh hata do */
  background: #e8f4fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;       /* ← image bahar na jaaye */
}
 
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
  /* ── RIGHT: CONTENT ── */
  .about-content {
    flex: 1;
  }
 
  .about-content h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 14px;
  }
 
  .blue-bar {
    width: 55px;
    height: 4px;
    background: #0d9044;
    border-radius: 2px;
    margin-bottom: 24px;
  }
 
  .about-content p {
    font-size: 0.96rem;
    font-weight: 500;
    color: #444;
    line-height: 1.9;
    margin-bottom: 16px;
  }
 
  /* ── READ MORE BUTTON ── */
  .btn-readmore {
    display: inline-block;
    background: #0d9044;
    color: #ffffff;
    text-decoration: none;
    padding: 13px 34px;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 10px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 14px rgba(26,158,212,0.35);
  }
 
  .btn-readmore:hover {
    background: #1487b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(26,158,212,0.45);
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 820px) {
    .about-inner {
      flex-direction: column;
      gap: 36px;
    }
    .about-image {
      flex: 0 0 100%;
      max-width: 100%;
    }
    .about-content h2 { font-size: 1.5rem; }
  }














































 /* ── SECTION ── */
.srv-section {
  padding: 90px 40px;
  max-width: 1200px;
  margin: auto;
  background: #f9fbfb;
}

/* ── HEADER ── */
.srv-header {
  text-align: center;
  margin-bottom: 60px;
}

.srv-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
}

.srv-header p {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.8;
}

.divider {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0;
}

.divider span {
  width: 40px;
  height: 4px;
  border-radius: 10px;
}

.d-green { background: #2e7d32; }
.d-red   { background: #c62828; }

/* ── GRID ── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── CARD ── */
.srv-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid #eef3f3;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

/* top border animation */
.srv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg,#2e7d32,#c62828);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}

.srv-card:hover::before {
  transform: scaleX(1);
}

/* hover */
.srv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ── IMAGE AREA ── */
.card-top {
  height: 170px;
  overflow: hidden;
  position: relative;
}

.card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.srv-card:hover .card-top img {
  transform: scale(1.1);
}

/* overlay */
.card-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* red dot */
.red-dot {
  width: 10px;
  height: 10px;
  background: #c62828;
  border-radius: 50%;
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
}

/* ── BODY ── */
.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 700;
}

.card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ── BUTTON ── */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
  text-decoration: none;
  transition: 0.3s;
}

.card-link:hover {
  gap: 10px;
  color: #c62828;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .srv-grid {
    grid-template-columns: 1fr;
  }
}





































    h1 {
      text-align: center;
      font-size: 35px;
      font-weight: 600;
      color: #111827;
      padding: 50px 10px 50px 10px;
    }
 
    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      max-width: 1100px;
      margin: 0 auto;
    }
 
    .card {
      overflow: hidden;
      border: 1px solid #d1d5db;
      background: #ffffff;
      width: 100%;
    }
 
    .card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }
 
    .card-footer {
      padding: 14px 16px 16px;
      border-top: 1px solid #e5e7eb;
      background: #ffffff;
    }
 
    .card-text {
      font-size: 15px;
      font-weight: 500;
      color: #1f2937;
      margin: 0;
      line-height: 1.5;
    }
 
    @media (max-width: 768px) {
      .grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
 
    @media (max-width: 480px) {
      .grid {
        grid-template-columns: 1fr;
      }
    }



































    .whysection {
      margin-top: 100px;
    }

    .whysection h1 {
      font-size: 35px;
      color: #111827;

    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .why-card {
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      background: #fff;
      overflow: hidden;
    }

    .why-card:hover {
      transform: translateY(-10px)scale(1.03);
      transition: 0.5s;
    }
    .why-icon-wrap {
      width: 100%;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
    }
    .why-icon-wrap img {
      height: 150px;
      width: auto;
      object-fit: contain;
    }
    .why-footer {
      padding: 12px 14px 14px;
      border-top: 1px solid #e5e7eb;
    }
    .why-title {
      font-size: 14px;
      font-weight: 500;
      color: #111827;
      margin: 0 0 4px;
    }
    .why-desc {
      font-size: 12px;
      color: #6b7280;
      margin: 0;
      line-height: 1.5;
    }


































/* SECTION */
.meet-section {
  padding: 80px 20px;
  background: #f8fbff;
  text-align: center;
}

/* TITLE */
.meet-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
}

/* GRID */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.doc-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.doc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.doc-img-wrap img {
    width: 100%;
    height: 408px;
    object-fit: cover;
    transition: 0.4s;
}


/* BODY */
.doc-body {
  padding: 18px;
}

/* NAME */
.doc-name {
  font-size: 15px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 6px;
}

/* QUAL */
.doc-qual {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* BUTTONS */
.doc-links {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* BUTTON STYLE */
.doc-links a {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

/* PROFILE */
.btn-profile {
  background: #fff;
  color: #16a34a;
  border: 1px solid #16a34a;
}

.btn-profile:hover {
  background: #16a34a;
  color: #fff;
}

/* APPOINTMENT */
.btn-appt {
  background: #16a34a;
  color: #fff;
  border: 1px solid #16a34a;
}

.btn-appt:hover {
  background: #15803d;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .doc-links {
    flex-direction: column;
  }

  .doc-links a {
    width: 100%;
  }
}






































    /* ── GALLERY ── */
    .gallery {
      padding: 0px 20px;
      background: #f8fbff;
      text-align: center;
    }
 
    .gallery-title {
      font-size: 35px;
      font-weight: 700;
      color: #111827;
      padding: 1px 10px 60px 10px;
    }
 
    /* GRID */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: auto;
    }
 
    /* IMAGE */
    .gallery-item {
      overflow: hidden;
      cursor: pointer;
    }
 
    .gallery-item img {
      width: 100%;
      height: 350px;
      object-fit: cover;
      transition: 0.4s;
      display: block;
    }
 
    /* HOVER EFFECT */
    .gallery-item:hover img {
      transform: scale(1.08);
    }
 
    /* BUTTON CONTAINER */
    .gallery-btn {
      margin-top: 40px;
    }
 
    /* BUTTON STYLE */
    .btn-view {
      display: inline-block;
      padding: 10px 25px;
      background: #16a34a;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      border-radius: 6px;
      text-decoration: none;
      transition: 0.3s;
    }
 
    .btn-view:hover {
      background: #15803d;
    }
 
    /* RESPONSIVE */
    @media (max-width: 900px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 500px) {
      .gallery-grid { grid-template-columns: 1fr; }
    }
 
    /* ── LIGHTBOX ── */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }
    .lightbox.active {
      display: flex;
    }
    .lightbox img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 6px;
    }
    .lightbox-close {
      position: absolute;
      top: 18px;
      right: 26px;
      color: #fff;
      font-size: 2.2rem;
      cursor: pointer;
      line-height: 1;
      font-weight: 300;
    }
    .lightbox-close:hover {
      color: #16a34a;
    }




















        .contact-hero{
      width:100%;
      height:160px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
    }

    .contact-hero h1{
      font-size:40px;
      letter-spacing:1px;
      margin-top: 50px;
    }

    /* 🔥 MAIN CONTAINER */
    .contact-container{
      max-width:1200px;
      margin:auto;
      padding:60px 20px;
      display:flex;
      gap:40px;
      flex-wrap:wrap;
    }

    /* LEFT SIDE */
    .contact-left{
      flex:1;
      background:#fff;
      padding:30px;
      border-radius:12px;
      box-shadow:0 5px 15px rgba(0,0,0,0.08);
    }

    .contact-left h2{
      margin-bottom:20px;
      color:#16a34a;
    }

    .contact-info p{
      margin-bottom:12px;
      font-size:15px;
      line-height:1.6;
    }

    /* FORM */
    .contact-form{
      margin-top:20px;
    }

    .contact-form input,
    .contact-form textarea{
      width:100%;
      padding:12px;
      margin-bottom:15px;
      border:1px solid #ccc;
      border-radius:6px;
      font-size:14px;
      outline:none;
    }

    .contact-form textarea{
      resize:none;
    }

    .contact-form button{
      background:#16a34a;
      color:#fff;
      padding:12px 25px;
      border:none;
      border-radius:6px;
      cursor:pointer;
      font-size:15px;
    }

    .contact-form button:hover{
      background:#16a34a;
    }

    /* RIGHT SIDE MAP */
    .contact-right{
      flex:1;
    }

    .contact-right iframe{
      width:100%;
      height:100%;
      min-height:420px;
      border-radius:12px;
      border:0;
    }

    /* MOBILE */
    @media(max-width:768px){
      .contact-container{
        flex-direction:column;
      }

      .contact-hero h1{
        font-size:30px;
      }
    }
































/* COMMON CONTAINER (IMPORTANT) */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

/* MAIN WRAP */
.footer-wrap {
  background: #f9fafb;
  margin-top: 50px;
}

/* TOP BAR */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 0;
  border-bottom: 1px solid #e5e7eb;
  gap: 20px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo span {
  color: #EE344E;
}

/* INFO */
.footer-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #EE344E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.footer-info-label {
  font-size: 13px;
  font-weight: 600;
}

.footer-info-val {
  font-size: 12px;
  color: #6b7280;
}

/* MAIN GRID */
.footer-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 0;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: #6b7280;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #EE344E;
  padding-left: 5px;
}

/* HOURS */
.footer-hours {
  list-style: none;
  padding: 0;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  color: #6b7280;
}

.footer-hours .time {
  color: #EE344E;
}

.footer-hours .closed {
  color: #EE344E;
  font-weight: 600;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  color: #9ca3af;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
}

.footer-bottom-links a {
  text-decoration: none;
  color: #9ca3af;
}

.footer-bottom-links a:hover {
  color: #EE344E;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}