/* ==========================================================================
   Better You Medical & Diagnostic Center - Main Stylesheet
   Matches betteryouholdings.com design - No gradients
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Skip Link for Accessibility
   ========================================================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.3s;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    color: white;
}

/* ==========================================================================
   Header - Desktop
   ========================================================================== */
.header-top {
    background-color: #ffffff;
    padding: 15px 0;
}

.header-top-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-left,
.contact-right {
    text-align: center;
}

.contact-label {
    display: block;
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-phone,
.contact-email {
    display: block;
    font-size: 18px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.contact-phone:hover,
.contact-email:hover {
    color: #1e3a8a;
}

.logo-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo-link {
    display: block;
}

.logo-image {
    max-height: 70px;
    width: auto;
}

.custom-logo-link img,
.logo-center .custom-logo {
    max-height: 70px;
    width: auto;
}

/* Mobile Header - Hidden on Desktop */
.mobile-header {
    display: none;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
    background-color: #1e3a8a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    width: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    font-size: 18px;
    text-decoration: none;
}

.social-links a:hover {
    opacity: 0.8;
}

.social-links a i {
    font-size: 18px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
    color: #dbeafe;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: white;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background-color: #eff6ff;
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    color: #475569;
    margin-bottom: 15px;
}

.hero .location {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
}

.hero .tagline {
    font-size: 18px;
    margin-bottom: 30px;
    color: #1e3a8a;
}

/* ==========================================================================
   Page Hero
   ========================================================================== */
.page-hero {
    background-color: #eff6ff;
    padding: 60px 20px;
    text-align: center;
}

.page-hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 18px;
    color: #475569;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb-nav {
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.breadcrumb-item a {
    color: #2563eb;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #64748b;
    text-transform: uppercase;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin-right: 10px;
    color: #64748b;
}

/* ==========================================================================
   Section Title
   ========================================================================== */
.section-title {
    text-align: center;
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 50px;
    font-weight: 700;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.cta-button,
.btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover,
.btn-primary:hover {
    background-color: #1d4ed8;
    color: white;
}

.btn-outline-primary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary:hover {
    background-color: #2563eb;
    color: white;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    padding: 60px 20px;
    background-color: #ffffff;
}

.features-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #475569;
}

.features-subtitle {
    text-align: center;
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: #2563eb;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #2563eb;
}

.feature-card h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-card p {
    color: #64748b;
    font-size: 15px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 60px 20px;
    background-color: #f8fafc;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    background-color: white;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #2563eb;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-item h3 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 22px;
}

.service-item p {
    color: #475569;
    line-height: 1.8;
}

.service-item ul {
    list-style-position: inside;
    color: #475569;
    margin-top: 10px;
    padding: 0;
}

.service-item ul li {
    margin-bottom: 8px;
}

.badge-24-7 {
    display: inline-block;
    background-color: #10b981;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    background-color: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-intro p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.vm-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-top: 4px solid #2563eb;
}

.vm-card h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-bottom: 15px;
}

.vm-card p {
    color: #475569;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
}

.team-list {
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    background-color: #f8fafc;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 5px;
    border-left: 4px solid #2563eb;
}

.team-member h3 {
    color: #1e3a8a;
    font-size: 20px;
    margin-bottom: 5px;
}

.team-member p {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* ==========================================================================
   Schedule Section
   ========================================================================== */
.schedule-section {
    padding: 60px 20px;
    background-color: #f8fafc;
}

.schedule-note {
    background-color: #dbeafe;
    border-left: 4px solid #2563eb;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-note p {
    color: #1e3a8a;
    font-weight: 500;
    margin: 0;
}

.schedule-note p:first-child {
    font-weight: 700;
    margin-bottom: 5px;
}

.schedule-table-container {
    overflow-x: auto;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.schedule-table th {
    background-color: #1e3a8a;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.schedule-table td {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}

.schedule-table tr:hover {
    background-color: #f8fafc;
}

.service-tag {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e3a8a;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin: 2px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    color: #1e3a8a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-answer {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: 60px 20px;
    background-color: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-info-box h3 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2563eb;
}

.contact-detail-text h4 {
    color: #1e3a8a;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-detail-text p {
    color: #475569;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

.contact-detail-text a {
    color: #475569;
    text-decoration: none;
}

.contact-detail-text a:hover {
    color: #2563eb;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #1e3a8a;
    margin-bottom: 20px;
    font-size: 22px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group .required {
    color: #1e3a8a;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-button {
    background-color: #2563eb;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #1d4ed8;
}

/* ==========================================================================
   Events Section
   ========================================================================== */
.events-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.event-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.event-card h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-bottom: 10px;
}

.event-category {
    display: inline-block;
    background-color: #10b981;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-card p {
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background-color: #1e3a8a;
    padding: 30px 20px;
    text-align: center;
}

.cta-label {
    display: block;
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.cta-phone {
    display: block;
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.cta-phone:hover {
    color: #dbeafe;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #1e3a8a;
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

.footer-bottom p {
    margin: 0;
}

/* ==========================================================================
   Alerts
   ========================================================================== */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #dbeafe;
    color: #1e3a8a;
    border: 1px solid #2563eb;
}

.alert-danger {
    background-color: #f8fafc;
    color: #1e3a8a;
    border: 1px solid #1e3a8a;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 20px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 20px; }
.py-5 { padding-top: 60px; padding-bottom: 60px; }

/* ==========================================================================
   Mobile Header
   ========================================================================== */
.mobile-header {
    display: none;
}

.mobile-top {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #ffffff;
}

.mobile-contact-left,
.mobile-contact-right {
    text-align: center;
}

.mobile-contact-left .contact-label,
.mobile-contact-right .contact-label {
    font-size: 10px;
}

.mobile-contact-left .contact-phone,
.mobile-contact-right .contact-email {
    font-size: 14px;
}

.mobile-logo {
    display: flex;
    justify-content: center;
    padding: 15px;
    background-color: #ffffff;
}

.mobile-logo .logo-image,
.mobile-logo .custom-logo {
    max-height: 60px;
    width: auto;
}

.mobile-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #1e3a8a;
}

.mobile-nav-bar .social-links a {
    color: white;
}

.mobile-nav-bar .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-nav-bar .hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    position: relative;
}

.mobile-nav-bar .hamburger::before,
.mobile-nav-bar .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: white;
    left: 0;
}

.mobile-nav-bar .hamburger::before {
    top: -8px;
}

.mobile-nav-bar .hamburger::after {
    top: 8px;
}

.mobile-nav-menu {
    display: none;
    background-color: #1e3a8a;
    padding: 15px;
}

.mobile-nav-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 10px;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-links a:hover {
    color: #dbeafe;
}

/* ==========================================================================
   404 and Search Pages
   ========================================================================== */
.error-section {
    padding: 60px 20px;
    background-color: #f8fafc;
}

.error-content,
.search-content {
    text-align: center;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.error-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.error-content h2,
.search-content h2 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 28px;
}

.error-content p,
.search-content p {
    color: #475569;
    margin-bottom: 20px;
    font-size: 16px;
}

.emergency-box {
    background-color: #dbeafe;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.emergency-box h3 {
    color: #1e3a8a;
    font-size: 20px;
    margin-bottom: 10px;
}

.emergency-box p {
    margin-bottom: 10px;
}

.emergency-phone {
    font-size: 18px;
    font-weight: 600;
}

.emergency-phone a {
    color: #2563eb;
    text-decoration: none;
}

.emergency-phone a:hover {
    text-decoration: underline;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Search Section */
.search-section {
    padding: 60px 20px;
    background-color: #f8fafc;
}

.search-form-wrapper {
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-right: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.search-form input:focus {
    outline: none;
    border-color: #2563eb;
}

.search-form button {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.search-form button:hover {
    background-color: #1d4ed8;
}

.search-results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.search-result {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #2563eb;
}

.result-type {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e3a8a;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.result-title {
    color: #1e3a8a;
    font-size: 20px;
    margin-bottom: 10px;
}

.result-title a {
    color: #1e3a8a;
    text-decoration: none;
}

.result-title a:hover {
    color: #2563eb;
}

.result-excerpt {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.result-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.result-link:hover {
    text-decoration: underline;
}

.no-results {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.no-results h2 {
    color: #1e3a8a;
    margin-bottom: 15px;
}

.no-results p {
    color: #475569;
    margin-bottom: 20px;
}

.pagination-nav {
    margin-top: 40px;
    text-align: center;
}

.pagination-nav .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-nav a,
.pagination-nav span {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.pagination-nav a {
    background-color: white;
    color: #2563eb;
    border: 1px solid #e5e7eb;
}

.pagination-nav a:hover {
    background-color: #2563eb;
    color: white;
}

.pagination-nav .current {
    background-color: #2563eb;
    color: white;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    /* Hide desktop header, show mobile */
    .header-top,
    .navbar {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title,
    .page-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        flex-direction: row;
        gap: 10px;
        min-width: auto;
        padding: 10px 20px;
    }

    .schedule-table {
        font-size: 14px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 10px;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .search-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-top {
        flex-direction: column;
        gap: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .schedule-table {
        font-size: 12px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 8px 5px;
    }

    .cta-phone {
        font-size: 24px;
    }
}

/* ==========================================================================
   Blog Listing Page
   ========================================================================== */
.blog-listing-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.blog-posts-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-card-horizontal {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    flex: 0 0 320px;
    max-width: 320px;
    min-height: 240px;
}

.blog-card-image a {
    display: block;
    height: 100%;
}

.blog-card-image .blog-thumbnail,
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    color: #64748b;
    font-size: 48px;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2563eb;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.blog-card-title a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: #2563eb;
}

.blog-card-excerpt {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.read-more-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more-link:hover {
    gap: 12px;
    color: #1d4ed8;
}

.share-btn {
    background: none;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 6px;
    color: #475569;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.share-btn:hover {
    background: #f8fafc;
    border-color: #2563eb;
    color: #2563eb;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.blog-pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.blog-pagination li a,
.blog-pagination li span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.blog-pagination li a:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.blog-pagination li span.current {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* No Posts Message */
.no-posts-message {
    text-align: center;
    padding: 80px 20px;
    color: #64748b;
}

.no-posts-message i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.no-posts-message h3 {
    font-size: 24px;
    color: #1e3a8a;
    margin-bottom: 10px;
}

/* ==========================================================================
   Share Modal
   ========================================================================== */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.share-modal.active {
    visibility: visible;
    opacity: 1;
}

.share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.share-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.share-modal.active .share-modal-content {
    transform: translateY(0);
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e5e7eb;
}

.share-modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #1e3a8a;
}

.share-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.share-modal-close:hover {
    color: #1e3a8a;
}

.share-modal-body {
    padding: 25px;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-button i {
    font-size: 18px;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-whatsapp {
    background: #25d366;
    color: white;
}

.share-twitter {
    background: #000000;
    color: white;
}

.share-linkedin {
    background: #0a66c2;
    color: white;
}

.share-copy-link label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #475569;
    font-size: 14px;
}

.copy-link-wrapper {
    display: flex;
    gap: 10px;
}

.copy-link-wrapper input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #475569;
    background: #f8fafc;
}

.copy-link-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.copy-link-btn:hover {
    background: #1d4ed8;
}

.copy-success-message {
    display: block;
    text-align: center;
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s, transform 0.3s;
}

.copy-success-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Single Post Page
   ========================================================================== */
.post-meta-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.post-meta-hero span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-post-section {
    padding: 60px 0;
    background: #ffffff;
}

.single-post-article {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-thumbnail {
    margin: 0 0 40px 0;
    border-radius: 12px;
    overflow: hidden;
}

.single-post-thumbnail .featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.single-post-content p {
    margin-bottom: 20px;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    color: #1e3a8a;
    margin: 35px 0 20px;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.single-post-content ul,
.single-post-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.single-post-content li {
    margin-bottom: 10px;
}

.single-post-content blockquote {
    border-left: 4px solid #2563eb;
    padding: 20px 25px;
    margin: 30px 0;
    background: #eff6ff;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #475569;
}

/* Post Tags */
.post-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tags-label {
    font-weight: 600;
    color: #1e3a8a;
}

.post-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: #f8fafc;
    color: #475569;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.post-tags a:hover {
    background: #2563eb;
    color: white;
}

/* Single Post Share */
.single-post-share {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 600;
    color: #475569;
    font-size: 14px;
}

.share-buttons-inline {
    display: flex;
    gap: 10px;
}

.share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.share-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-icon i {
    font-size: 16px;
}

.share-icon.share-facebook {
    background: #1877f2;
    color: white;
}

.share-icon.share-whatsapp {
    background: #25d366;
    color: white;
}

.share-icon.share-twitter {
    background: #000000;
    color: white;
}

.share-icon.share-linkedin {
    background: #0a66c2;
    color: white;
}

/* Post Navigation */
.single-post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.single-post-navigation .nav-previous,
.single-post-navigation .nav-next {
    max-width: 45%;
}

.single-post-navigation a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.single-post-navigation a:hover {
    color: #2563eb;
}

.single-post-navigation .nav-next a {
    text-align: right;
    justify-content: flex-end;
}

/* Related Posts */
.related-posts-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #e5e7eb;
}

.related-posts-title {
    font-size: 28px;
    color: #1e3a8a;
    margin-bottom: 30px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-post-card {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-post-image {
    display: block;
    height: 180px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #e5e7eb;
    color: #64748b;
    font-size: 36px;
}

.related-post-content {
    padding: 20px;
}

.related-post-date {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.related-post-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.related-post-title a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s;
}

.related-post-title a:hover {
    color: #2563eb;
}

/* ==========================================================================
   Blog Page Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .blog-card-horizontal {
        flex-direction: column;
    }

    .blog-card-image {
        flex: none;
        max-width: 100%;
        height: 220px;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-listing-section {
        padding: 40px 0;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .share-buttons {
        grid-template-columns: 1fr;
    }

    .single-post-section {
        padding: 40px 0;
    }

    .single-post-content {
        font-size: 16px;
    }

    .share-buttons-inline {
        flex-direction: column;
    }

    .share-buttons-inline .share-button {
        min-width: 100%;
    }

    .share-copy-link-inline {
        flex-direction: column;
    }

    .single-post-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .single-post-navigation .nav-previous,
    .single-post-navigation .nav-next {
        max-width: 100%;
    }

    .single-post-navigation .nav-next a {
        text-align: left;
        justify-content: flex-start;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .post-meta-hero {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   Services Section (Dynamic)
   ========================================================================== */
.services-section {
    padding: 60px 0;
    background: #f8fafc;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.service-header .service-icon {
    font-size: 28px;
    color: #2563eb;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 10px;
}

.service-header h3 {
    font-size: 22px;
    color: #1e3a8a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-24-7 {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-description {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    color: #475569;
    font-size: 15px;
}

.service-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
}

/* ==========================================================================
   Team Section (Dynamic)
   ========================================================================== */
.team-section {
    padding: 60px 0;
    background: #ffffff;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
}



.team-member {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
}

.team-member h3 {
    font-size: 20px;
    color: #1e3a8a;
    margin: 0 0 8px 0;
}

.team-member p {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

/* ==========================================================================
   FAQ Section (Dynamic)
   ========================================================================== */
.faq-section {
    padding: 60px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.faq-question {
    font-size: 18px;
    color: #1e3a8a;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.faq-answer {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   Schedule Section (Dynamic)
   ========================================================================== */
.schedule-section {
    padding: 60px 0;
    background: #f8fafc;
}

.schedule-note {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
}

.schedule-note p {
    margin: 0;
    color: #1e3a8a;
}

.schedule-note p:first-child {
    font-size: 18px;
    margin-bottom: 8px;
}

.schedule-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.schedule-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.schedule-card-header {
    background: #1e3a8a;
    padding: 20px 25px;
}

.schedule-card-header h3 {
    margin: 0;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.schedule-card-header .badge-24-7 {
    background: #10b981;
}

.schedule-card-body {
    padding: 25px;
}

.schedule-mini-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-mini-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.schedule-mini-table tr:last-child {
    border-bottom: none;
}

.schedule-mini-table td {
    padding: 12px 0;
}

.schedule-mini-table .day-name {
    font-weight: 600;
    color: #1e3a8a;
}

.schedule-mini-table .day-hours {
    text-align: right;
    color: #475569;
}

.schedule-24-7 {
    text-align: center;
    color: #10b981;
}

.schedule-24-7 i {
    font-size: 48px;
    margin-bottom: 15px;
}

.schedule-24-7 p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.schedule-card-footer {
    padding: 15px 25px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.schedule-notes {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

.schedule-contact-cta {
    margin-top: 50px;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
}

.schedule-contact-cta p {
    font-size: 18px;
    color: #475569;
    margin: 0 0 20px 0;
}

/* No Content Message */
.no-content-message {
    text-align: center;
    padding: 80px 20px;
    color: #64748b;
}

.no-content-message i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.no-content-message h3 {
    font-size: 24px;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.no-content-message p {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* ==========================================================================
   Dynamic Pages Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .services-section,
    .team-section,
    .faq-section,
    .schedule-section {
        padding: 40px 0;
    }

    .service-item {
        padding: 25px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

  

    .schedule-cards {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .header-top,
    .navbar,
    .mobile-header,
    .cta-section,
    .footer {
        display: none !important;
    }
}

body{
    padding-top: 0 !important;
}
