/*Global Page Styles*/
:root {
    --blue-primary: #121152;
    --blue-secondary: #1e2a78;
    --blue-accent: #3B4Bff;
    --blue-light: #eef2ff;
    --gray-light: #D7dae9;
    --gray-text: #333647;
    --white: #ffffff;
    --accent-highlight: #7da6ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--gray-text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--blue-primary);
}

/*Home Page*/
/*Sticky Header*/
header.sticky-header {
    background: var(--blue-primary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}


.header-buttons {
    display: flex;
    gap: 1rem;
}

.header-buttons a{
    text-decoration: none;
}

.header-buttons .btn {
    background: var(--blue-accent);
    color: var(--white);
    padding: 0.7rem 1.3rem;
    border-radius: 5px;
    font-weight: bold;
}
  
.header-buttons .btn:hover {
    background: var(--accent-highlight);
    transition: ease-in-out 0.3s;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
  
.nav-links li a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s, border 0.3s;
}

.nav-links li a.active {
    color: var(--accent-highlight);
    border-top: 2px solid var(--accent-highlight);
    border-bottom: 2px solid var(--accent-highlight);
    padding: 0.2rem 0;
}
  
.nav-links li a:hover {
    color: var(--accent-highlight);
}

.logo {
    font-weight: bold;
    line-height: 1.2;
}

.logo-top {
    font-size: 2rem;
    display: block;
}

.logo-bottom {
    font-size: 2rem;
    color: #ffffff;
    display: block;
}

/*Video Hero Section*/
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(60%);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 17, 82, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 1rem;
}
  
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}
  
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--blue-light);
}
  
.hero-btn {
    background: var(--blue-accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
  
.hero-btn:hover {
    background: var(--accent-highlight);
    transform: scale(1.05);
}

/*About Section*/
.about-section {
    background: var(--white);
    color: var(--gray-text);
    padding: 4rem 2rem;
  }

.about {
    padding: 5rem 2rem 3rem 2rem;
    background: #ffffff;
}

.about-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image,
.about-photo {
    flex: 1 1 45%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(18, 17, 82, 0.1);
}

.about-photo img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(18, 17, 82, 0.1);
}

.about-text {
    margin-bottom: 3.6rem;
}

.about-text .welcome-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #021152;
    margin-bottom: 1rem;
}

.about-text p {
    line-height: 1.6;
    font-size: 1rem;
}

.about-video video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/*Services Section*/
.services-section {
    background: var(--blue-light);
    color: var(--gray-text);
    padding: 4rem 2rem;
}

.services {
    padding: 3rem 2rem;
    background: var(--blue-light);
}

.services h2 {
    text-align: center;
    font-weight: bold;
    padding: 1rem 2rem;
}

.services p {
    text-align: center;
    padding: 1rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(18, 17, 82, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 2rem;
}
  
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(18, 17, 82, 0.15);
}
  
.service-card h3 {
    color: var(--blue-primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
  
.service-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
  
.service-card .hover-btn {
    background: var(--blue-accent);
    color: var(--white);
    padding: 0.7rem 1.3rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
}
  
.service-card .hover-btn:hover {
    background: var(--accent-highlight);
}

/*Why-Us Section*/
.why-us {
    background: linear-gradient(to bottom, #ffffff 0%, #eef2ff 100%);
    color: var(var(--gray-text));
    padding: 4rem 2rem;
}

.why-us h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--blue-primary);
}
  
.why-us-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
  
.feature {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    flex: 1 1 250px;
    box-shadow: 0 4px 10px rgba(18, 17, 82, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
  
.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(18, 17, 82, 0.15);
}
  
.feature i {
    font-size: 2.5rem;
    color: var(--blue-accent);
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-text);
}
  
.feature h3 {
    color: var(--blue-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/*Testimonials Section*/  
.testimonials-section {
    background: var(--white);
    color: var(--gray-text);
    padding: 4rem 2rem;
}

.testimonials-section h2 {
    text-align: center;
    color: var(--blue-primary);
    margin-bottom: 2rem;
}
  
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
  
.testimonial-card {
    background: var(--blue-light);
    border-left: 4px solid var(--blue-accent);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 8px rgba(18, 17, 82, 0.08);
    text-align: left;
}
  
.review-text {
    font-style: italic;
    color: var(--gray-text);
    margin-bottom: 1rem;
}
  
.stars {
    color: var(--blue-accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
  
.reviewer {
    font-weight: bold;
    color: var(--blue-primary);
}
  
footer {
    background: var(--blue-secondary);
    color: var(--white);
}

/*Footer Section*/
.footer-cta {
    background: #021152;
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    font-size: 1rem;
}

.footer-cta a {
    color: #a8acbc;
    font-weight: bold;
    text-decoration: none;
}
  
.footer-main {
    background: #f9f9f9;
    color: #021152;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 3rem 2rem;
    gap: 2rem;
}
  
.footer-column {
    flex: 1 1 300px;
}
  
.footer-column ul {
    list-style: none;
    padding: 0;
}
  
.footer-column ul li {
    margin: 0.5rem 0;
}
  
.footer-column ul li a {
    color: #021152;
    text-decoration: none;
}
  
.footer-column ul li a:hover {
    text-decoration: underline;
}
  
.footer-column p {
    margin: 0.4rem 0;
}
  
.footer-column a {
    color: #a8acbc;
} 
  
.footer-bottom {
    background: var(--blue-primary);
    color: var(--white);
    text-align: center;
    font-size: 0.85rem;
    padding: 1rem;
}
  
.footer-bottom a {
    color: #a8acbc;
    text-decoration: none;
}
  
.footer-bottom a:hover {
    text-decoration: underline;
}

/*---Services Page---*/
/*Hero Section*/

/*========================================
   CHIROPRACTIC SERVICES PAGE STYLING
   ========================================*/

/*Hero section*/
.services-hero {
    position: relative;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
  
.services-hero h1 {
    color: #f9f9f9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
  
.services-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    color: var(--blue-light);
}
  
/* Doctor introduction section */
.doctor-section {
    background: var(--white);
    color: var(--gray-text);
    padding: 4rem 2rem;
}
  
.doctor-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
  
.doctor-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(18, 17, 82, 0.1);
    max-width: 450px;
}
  
.doctor-text {
    flex: 1 1 45%;
}
  
.doctor-text h2 {
    font-family: 'Playfair Display', serif;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}
  
.doctor-text p {
    line-height: 1.6;
    font-size: 1rem;
}
  
/*Services list section*/
.services-list-section {
    background: var(--blue-light);
    padding: 4rem 2rem;
    text-align: center;
}
  
.services-list-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--blue-primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}
  
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
  
.service-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(18, 17, 82, 0.1);
    padding: 2rem;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}
  
.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(18, 17, 82, 0.15);
}
  
.service-item h3 {
    color: var(--blue-primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
  
.service-item p {
    color: var(--gray-text);
    line-height: 1.6;
}

.section-divider {
    background: linear-gradient(to bottom, #ffffff 0%, #eef2ff 100%);
    height: 4rem;
}

/*New Patient Page*/
/*========================================
   NEW PATIENT PAGE STYLING
  ========================================*/

/* Hero Section */
.newpatient-hero {
    position: relative;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .newpatient-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #f9f9ff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
  }
  
  .newpatient-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    color: var(--blue-light);
  }
  
  /*Doctor Section*/
  .newpatient-doctor {
    background: var(--white);
    color: var(--gray-text);
    padding: 4rem 2rem;
  }
  
  .newpatient-doctor .doctor-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .newpatient-doctor .doctor-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-width: 450px;
    box-shadow: 0 4px 12px rgba(18, 17, 82, 0.1);
  }
  
  /*What to Expect Section*/
  .expect-section {
    background: var(--blue-light);
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .expect-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--blue-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .expect-section p {
    color: var(--gray-text);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 2rem;
  }
  
  /*Benefits Section*/
  .benefits-section {
    background: var(--white);
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .benefits-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--blue-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .benefit-card {
    background: var(--blue-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(18, 17, 82, 0.08);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(18, 17, 82, 0.15);
  }
  
  .benefit-card h3 {
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
  }
  
  .benefit-card p {
    color: var(--gray-text);
    line-height: 1.6;
  }
  
  /*Call-to-Action Section*/
  .cta-section {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
  }
  
  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f9f9ff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  .cta-section a.btn {
    background: var(--blue-accent);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
  }
  
  .cta-section a.btn:hover {
    background: var(--accent-highlight);
    transform: scale(1.05);
  }
  
/* ========================================
   FAQ PAGE STYLING
   ======================================== */
/* Hero Section */
.faq-hero {
    position: relative;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .faq-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #f9f9ff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
  }
  
  .faq-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    color: var(--blue-light);
  }
  
  /* Intro Section */
  .faq-intro {
    background: var(--white);
    padding: 4rem 2rem 2rem;
    text-align: center;
  }
  
  .faq-intro p {
    color: var(--gray-text);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-section {
    background: var(--blue-light);
    padding: 4rem 2rem;
  }
  
  .faq-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--blue-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(18, 17, 82, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 6px 15px rgba(18, 17, 82, 0.15);
  }
  
  .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue-primary);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
  }
  
  .faq-question:hover {
    color: var(--blue-accent);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 2rem;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 2rem 1.5rem;
  }
  
  .faq-answer p {
    color: var(--gray-text);
    line-height: 1.6;
  }
  
  .faq-question i {
    transition: transform 0.3s ease;
    color: var(--blue-accent);
    font-size: 1.3rem;
  }
  
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }

/* ========================================
   GALLERY PAGE (Marketing Videos)
   ======================================== */
/* Hero Section — same vibe as Services, FAQ, etc. */
.gallery-hero {
    position: relative;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-hero i {
    font-size: 2.5rem;
    color: var(--accent-highlight);
    margin-bottom: 0.5rem;
  }
  
  .gallery-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #f9f9ff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
  }
  
  .gallery-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    color: var(--blue-light);
  }

  .gallery-intro {
    background: var(--white);
    color: var(--gray-text);
    text-align: center;
    padding: 4rem 2rem 2rem;
  }
  
  .gallery-intro h2 {
    font-family: 'Playfair Display', serif;
    color: var(--blue-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .gallery-intro p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.05rem;
    color: var(--gray-text);
  }
  
  .video-gallery {
    background: var(--blue-light);
    padding: 4rem 2rem;
  }
  
  .video-gallery .video-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .video-card {
    width: 100%;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(18, 17, 82, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(18, 17, 82, 0.15);
  }
  
  .video-card video {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-bottom: 4px solid var(--blue-primary);
    border-radius: 8px 8px 0 0;
    background: #000;
  }
  
  .video-card h3 {
    color: var(--blue-primary);
    font-size: 1.3rem;
    margin: 1.2rem;
    font-weight: 600;
  }

/* ========================================
   CONTACT PAGE — Oquirrh Ridge Chiropractic
   ======================================== */
/* Hero Section */
.services-hero {
    position: relative;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .services-hero i {
    font-size: 2.5rem;
    color: var(--accent-highlight);
    margin-bottom: 0.5rem;
  }
  
  .services-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #f9f9ff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  /* Contact Info Section */
  .contact-info {
    background: var(--white);
    color: var(--gray-text);
    text-align: center;
    padding: 4rem 2rem;
  }
  
  .contact-info h2 {
    font-family: 'Playfair Display', serif;
    color: var(--blue-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .contact-info .contact-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-size: 1.05rem;
  }
  
  /* Contact Cards */
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .contact-card {
    background: var(--blue-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(18, 17, 82, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(18, 17, 82, 0.15);
  }
  
  .contact-card i {
    font-size: 2rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
  }
  
  .contact-card h3 {
    color: var(--blue-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-card a {
    color: var(--blue-accent);
    text-decoration: none;
    font-weight: 600;
  }
  
  .contact-card a:hover {
    color: var(--accent-highlight);
  }
  
  /* Business Hours */
  .contact-hours {
    background: var(--blue-light);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(18, 17, 82, 0.1);
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
  }
  
  .contact-hours h3 {
    color: var(--blue-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .contact-hours p {
    color: var(--gray-text);
    margin: 0.3rem 0;
  }
  
  /* Map Section */
  .map-section {
    background: var(--white);
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .map-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--blue-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(18, 17, 82, 0.1);
  }
  
  .map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
  }

/* ========================================
   MOBILE COLLAPSIBLE NAV + GLIDE ANIMATION
   ======================================== */


/* --- Mobile only --- */
@media (max-width: 900px) {

    header.sticky-header {
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }
  
    .menu-toggle {
      display: block;
      order: 2;
      margin-left: auto;
      color: var(--white);
      z-index: 10;
    }
  
    .navbar {
      order: 3;
      width: 100%;
      background: var(--blue-primary);
      border-top: none;           /* or subtle version */
      box-shadow: none;           /* remove heavy border */
      text-align: center;
      overflow: hidden;
      flex-direction: column;
      align-items: center;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease;
    }
  
    .navbar.active {
      display: flex;
      max-height: 600px;
      opacity: 1;
      padding-bottom: 1rem;
    }
  
    .nav-links {
      flex-direction: column;
      gap: 1rem;
    }
  
    .nav-links li a {
      display: block;
      width: 100%;
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
  
    .nav-links li:last-child a {
      border-bottom: none;
    }
  
    .header-buttons {
      flex-direction: column;
      gap: 1rem;
      margin: 1.5rem 0;
      width: 90%;
    }
  
    .header-buttons .btn {
      width: 100%;
      text-align: center;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
      display: block;
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.8rem;
      cursor: pointer;
    }
  
    /* Hide menu by default */
    .navbar {
      overflow: hidden;
      flex-direction: column;
      align-items: center;
      width: 100%;
      background: var(--blue-primary);
      max-height: 0;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease;
    }
  
    /* Slide open when active */
    .navbar.active {
      display: flex;
      max-height: 500px;
      opacity: 1;
      padding-bottom: 1rem;
    }
  
    .nav-links {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  
    .header-buttons {
      flex-direction: column;
      gap: 0.8rem;
      margin-top: 1rem;
    }
  
    .header-buttons .btn {
      width: 80%;
      padding: 0.9rem;
      font-size: 1rem;
    }
}

/* Keep desktop look untouched */
@media (min-width: 901px) {
    .menu-toggle {
      display: none;
    }
  
    .navbar {
      display: flex;
      opacity: 1;
      max-height: none;
      overflow: visible;
    }
}

@media (max-width: 768px) {
    .hero {
      height: 70vh;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .doctor-layout {
      flex-direction: column;
    }
    .doctor-image img {
      max-width: 100%;
    }
    .services-hero h1 {
      font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .newpatient-doctor .doctor-layout {
      flex-direction: column;
    }
  
    .newpatient-hero h1 {
      font-size: 2rem;
    }
  
    .benefits-grid {
      grid-template-columns: 1fr;
    }
}

/*Responsive Stuff*/
@media (max-width: 768px) {
    .faq-hero h1 {
      font-size: 2rem;
    }
  
    .faq-question {
      font-size: 1rem;
    }
}

/* Responsive Stuff */
@media (max-width: 768px) {
    .gallery-hero h1 {
      font-size: 2rem;
    }
  
    .gallery-hero p {
      font-size: 1rem;
    }
  
    .video-card video {
      height: 300px;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
      font-size: 2rem;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .map-container iframe {
      height: 300px;
    }
}
  