/* ==========================================
   ETERN MEDICAL - MAIN STYLESHEET
   ========================================== */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    /* Primary Colors - Matching eternmedical.com */
    --nav-blue: #2A5CAA;
    --primary-green: #4CAF50;
    --hero-mint: #E8F5E9;
    --promo-yellow: #FFD700;

    /* Legacy compatibility */
    --primary-blue: #2A5CAA;
    --primary-light: #4CAF50;
    --accent-green: #4CAF50;
    --accent-teal: #14B8A6;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F3F4F6;
    --medium-gray: #9CA3AF;
    --dark-gray: #1F2937;
    --footer-light: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;

    /* Link Color */
    --link-blue: #2A5CAA;

    /* Typography */
    --font-heading: 'Cabin', 'Montserrat', sans-serif;
    --font-body: 'Cabin', 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 40px;
    --element-spacing: 24px;
}

/* ==========================================
   GLOBAL STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--link-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* ==========================================
   LAYOUT
   ========================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Layout styles will be added here */

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
/* Header styles will be added here */

/* ==========================================
   HERO SECTION
   ========================================== */
/* Hero styles will be added here */

/* ==========================================
   SECTIONS
   ========================================== */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--nav-blue);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   VACCINATION NOTICE SECTION
   ========================================== */
.vaccination-notice {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #EFF6FF 0%, #ECFDF5 100%);
}

.vaccination-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .vaccination-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

.vaccination-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.vaccination-icon svg {
    width: 40px;
    height: 40px;
}

.vaccination-content {
    flex: 1;
}

.vaccination-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--nav-blue);
    margin-bottom: 16px;
}

.vaccination-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.subsidy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .subsidy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.subsidy-card {
    border-radius: 16px;
    padding: 24px;
    border: 1px solid;
}

.subsidy-shingrix {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-color: rgba(59, 130, 246, 0.2);
}

.subsidy-pcv20 {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border-color: rgba(16, 185, 129, 0.2);
}

.subsidy-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.subsidy-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
}

.subsidy-pcv20 .subsidy-icon {
    color: var(--accent-green);
}

.subsidy-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
}

.subsidy-pcv20 .subsidy-name {
    color: var(--accent-green);
}

.subsidy-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.subsidy-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.subsidy-pcv20 .price-amount {
    color: var(--accent-green);
}

.price-note {
    font-size: 13px;
    color: var(--text-secondary);
}

.subsidy-details {
    font-size: 12px;
    color: var(--text-secondary);
}

.vaccination-note {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    color: #92400E;
}

/* ==========================================
   POPULAR SERVICES SECTION
   ========================================== */
.popular-services {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 28px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--nav-blue);
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.benefit-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent-green);
    margin-top: 2px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--accent-teal);
}

.link-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-link:hover .link-arrow {
    transform: translateX(4px);
}

/* ==========================================
   APPOINTMENT CTA SECTION
   ========================================== */
.appointment-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-green), #388E3C);
    position: relative;
    overflow: hidden;
}

.appointment-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.appointment-cta::after {
    content: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 92, 170, 0.2), transparent);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.cta-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.feature-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
}

/* ==========================================
   OTHER SERVICES SECTION
   ========================================== */
.other-services {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .services-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-list {
        grid-template-columns: repeat(5, 1fr);
    }
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.service-item-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EFF6FF, #ECFDF5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.service-item:hover .service-item-icon {
    background: linear-gradient(135deg, #DBEAFE, #D1FAE5);
}

.service-item-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.service-item:hover .service-item-icon svg {
    color: var(--accent-green);
}

.service-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.service-item:hover .service-item-name {
    color: var(--primary-blue);
}

/* ==========================================
   PAYMENT SCHEMES SECTION
   ========================================== */
.payment-schemes {
    padding: var(--section-padding);
    background: var(--white);
}

.payment-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: center;
    justify-items: center;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .payment-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .payment-logos {
        grid-template-columns: repeat(6, 1fr);
    }
}

.payment-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.payment-logo:hover {
    transform: scale(1.05);
}

.payment-logo img {
    max-width: 100px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.payment-logo:hover img {
    filter: grayscale(0%);
}

.payment-name {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.payment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 32px;
    background: linear-gradient(135deg, #EFF6FF, #ECFDF5);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.payment-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.payment-feature .feature-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--footer-light);
    color: var(--text-primary);
    padding: 60px 40px 20px;
    border-top: 1px solid var(--light-gray);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--nav-blue);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--primary-green);
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--nav-blue);
    margin-bottom: 8px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-green);
}

.contact-group {
    margin-bottom: 24px;
}

.contact-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--nav-blue);
    margin-bottom: 8px;
}

.contact-address {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
    font-style: normal;
}

.contact-phone {
    font-size: 14px;
    color: var(--accent-green);
    text-decoration: none;
}

.contact-phone:hover {
    color: var(--accent-teal);
}

.operating-hours {
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-day {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.hours-time {
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-bottom {
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

.footer-bottom-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright,
.footer-domain {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    padding: 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--nav-blue);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--nav-blue);
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--nav-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(16, 185, 129, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

.hero-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 16px;
}

.location-icon {
    width: 20px;
    height: 20px;
}

/* ==========================================
   SERVICE PAGE STYLES
   ========================================== */

/* Breadcrumb */
.breadcrumb {
    padding: 16px 0;
    background: var(--light-gray);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-blue);
}

.breadcrumb-item.active {
    color: var(--primary-blue);
    font-weight: 500;
}

.breadcrumb-separator {
    width: 16px;
    height: 16px;
    color: var(--medium-gray);
}

/* Service Page Hero */
.service-page-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-page-hero .hero-content-inner {
    max-width: 900px;
}

/* Service Info Section */
.service-info-section {
    padding: var(--section-padding);
    background: var(--white);
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(135deg, #EFF6FF, #ECFDF5);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

@media (min-width: 768px) {
    .info-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

.info-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.info-card-icon svg {
    width: 40px;
    height: 40px;
}

.info-card-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.info-card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.program-intro {
    margin-top: 48px;
    padding: 32px;
    background: var(--light-gray);
    border-radius: 16px;
}

.program-intro h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.program-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Eligibility Card */
.eligibility-card {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.eligibility-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.eligibility-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.eligibility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-primary);
}

.eligibility-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent-green);
}

.eligibility-note {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
}

/* Benefits Section */
.benefits-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon-free {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    color: var(--primary-blue);
}

.benefit-icon-screening {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    color: var(--accent-green);
}

.benefit-icon-subsidized {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    color: #D97706;
}

.benefit-icon-medisave {
    background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
    color: #4F46E5;
}

.benefit-icon-points {
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
    color: #DC2626;
}

.benefit-icon-care {
    background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
    color: #DB2777;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Benefits List Extended */
.benefits-list-extended {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-list-extended {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item-extended {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-icon-large {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #EFF6FF, #ECFDF5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-green);
}

.benefit-icon-large svg {
    width: 24px;
    height: 24px;
}

.benefit-content-extended h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.benefit-content-extended p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Checklist Section */
.checklist-section {
    padding: var(--section-padding);
    background: var(--white);
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .checklist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.checklist-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    align-items: flex-start;
}

.checklist-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.checklist-icon svg {
    width: 16px;
    height: 16px;
}

.checklist-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.checklist-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Prepare Section */
.prepare-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.prepare-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.prepare-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    align-items: flex-start;
}

.prepare-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.prepare-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.prepare-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.prepare-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: 12px;
    align-items: flex-start;
}

.prepare-note svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #D97706;
}

.prepare-note p {
    font-size: 14px;
    color: #92400E;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: var(--white);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .process-timeline {
        max-width: 800px;
        margin: 0 auto;
    }
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.process-marker {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.process-marker svg {
    width: 28px;
    height: 28px;
}

.process-content {
    flex: 1;
    padding-top: 8px;
}

.process-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.process-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.process-time {
    display: inline-block;
    padding: 4px 12px;
    background: #EFF6FF;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-blue);
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.pricing-highlight {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
    color: var(--text-primary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent-green);
}

.pricing-cta {
    width: 100%;
}

.pricing-add-ons {
    margin-bottom: 24px;
}

.add-on-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.add-on-name {
    font-size: 14px;
    color: var(--text-primary);
}

.add-on-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
}

/* Booking CTA Section */
.service-booking-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-blue), #1E40AF);
    position: relative;
    overflow: hidden;
}

/* Enroll Section */
.enroll-section {
    padding: var(--section-padding);
    background: var(--white);
}

.enroll-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 32px;
}

.enroll-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.step-link:hover {
    color: var(--accent-teal);
}

.step-link svg {
    width: 16px;
    height: 16px;
}

.enroll-note {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 16px;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.enroll-note-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.enroll-note-icon svg {
    width: 24px;
    height: 24px;
}

.enroll-note-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.enroll-note-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.faq-answer p {
    margin-bottom: 8px;
}

/* Enroll CTA Section */
.enroll-cta-section {
    padding: var(--section-padding);
    background: var(--white);
}

.enroll-cta-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: linear-gradient(135deg, #EFF6FF, #ECFDF5);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

@media (min-width: 768px) {
    .enroll-cta-card {
        flex-direction: row;
        align-items: center;
    }
}

.enroll-cta-content {
    flex: 1;
}

.enroll-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.enroll-cta-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.enroll-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.enroll-cta-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .enroll-cta-image {
        width: 300px;
        height: 300px;
    }
}

.enroll-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Program Details Section */
.program-details-section {
    padding: var(--section-padding);
    background: var(--white);
}

.program-components {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .program-components {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .program-components {
        grid-template-columns: repeat(3, 1fr);
    }
}

.component-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.component-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.component-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.component-consultation {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    color: var(--primary-blue);
}

.component-diet {
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    color: var(--accent-green);
}

.component-exercise {
    background: linear-gradient(135deg, #FED7AA, #FBBF24);
    color: #D97706;
}

.component-monitoring {
    background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
    color: #4F46E5;
}

.component-behavior {
    background: linear-gradient(135deg, #FCE7F3, #FBCFE8);
    color: #DB2777;
}

.component-medication {
    background: linear-gradient(135deg, #CFE2FF, #AECBFA);
    color: #1E40AF;
}

.component-icon svg {
    width: 28px;
    height: 28px;
}

.component-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.component-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.component-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.component-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.component-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* Suitable Section */
.suitable-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.suitable-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .suitable-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .suitable-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.suitable-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.suitable-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.suitable-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #EFF6FF, #ECFDF5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.suitable-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
}

.suitable-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.suitable-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-menu-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: linear-gradient(135deg, #EFF6FF, #ECFDF5);
    color: var(--primary-blue);
}

.mobile-menu-link svg {
    width: 20px;
    height: 20px;
}

.mobile-menu-cta {
    padding: 20px;
    background: linear-gradient(135deg, #EFF6FF, #ECFDF5);
    border-radius: 16px;
    text-align: center;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header shadow on scroll */
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
/* Text Colors */
.text-primary { color: var(--primary-blue); }
.text-accent-green { color: var(--accent-green); }
.text-accent-teal { color: var(--accent-teal); }
.text-white { color: var(--white); }
.text-gray { color: var(--text-secondary); }
.text-dark { color: var(--text-primary); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Background Colors */
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--light-gray); }
.bg-primary { background-color: var(--primary-blue); }
.bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
}
.bg-gradient-green {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
}
.bg-gradient-mixed {
    background: linear-gradient(135deg, #EFF6FF, #ECFDF5);
}

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }
.pt-5 { padding-top: 48px; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }
.pb-5 { padding-bottom: 48px; }

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }

/* Flex Utilities */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-items-start { align-items: flex-start; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }
.justify-content-start { justify-content: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-end { justify-content: flex-end; }
.justify-content-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* Width Utilities */
.w-100 { width: 100%; }
.w-75 { width: 75%; }
.w-50 { width: 50%; }
.w-25 { width: 25%; }
.w-auto { width: auto; }

/* Position Utilities */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

/* Border Utilities */
.border { border: 1px solid var(--light-gray); }
.border-top { border-top: 1px solid var(--light-gray); }
.border-bottom { border-bottom: 1px solid var(--light-gray); }
.border-0 { border: none; }
.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 12px; }
.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 20px; }
.rounded-full { border-radius: 50%; }

/* Shadow Utilities */
.shadow-sm { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); }
.shadow-md { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
.shadow-lg { box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16); }
.shadow-0 { box-shadow: none; }

/* Font Utilities */
.font-weight-light { font-weight: 300; }
.font-weight-normal { font-weight: 400; }
.font-weight-medium { font-weight: 500; }
.font-weight-semibold { font-weight: 600; }
.font-weight-bold { font-weight: 700; }
.font-weight-extrabold { font-weight: 800; }

.font-size-sm { font-size: 12px; }
.font-size-base { font-size: 14px; }
.font-size-lg { font-size: 16px; }
.font-size-xl { font-size: 18px; }
.font-size-2xl { font-size: 24px; }
.font-size-3xl { font-size: 32px; }

/* Overflow Utilities */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Opacity Utilities */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Cursor Utilities */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }

/* Transition Utilities */
.transition { transition: all 0.3s ease; }
.transition-fast { transition: all 0.15s ease; }
.transition-slow { transition: all 0.5s ease; }

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Mobile (< 768px) */
@media (max-width: 767px) {
    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Section padding */
    .section-padding {
        padding: 48px 20px;
    }

    /* Hero */
    .hero-section {
        min-height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }

    /* Section headers */
    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 15px;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Vaccination card */
    .vaccination-card {
        padding: 32px 24px;
    }

    .vaccination-title {
        font-size: 22px;
    }

    /* Service cards */
    .service-card {
        margin-bottom: 16px;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 20px;
    }

    /* CTA section */
    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 40px 20px 16px;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Breadcrumb */
    .breadcrumb {
        padding: 12px 0;
    }

    /* Service page */
    .service-page-hero {
        min-height: 350px;
    }

    .service-page-hero .hero-title {
        font-size: 28px;
    }

    .service-page-hero .hero-subtitle {
        font-size: 16px;
    }

    .info-card {
        padding: 24px;
    }

    .info-card-icon {
        width: 60px;
        height: 60px;
    }

    .info-card-icon svg {
        width: 30px;
        height: 30px;
    }

    .info-card-content h3 {
        font-size: 20px;
    }

    /* Benefits grid */
    .benefits-grid,
    .benefits-list-extended {
        grid-template-columns: 1fr;
    }

    /* Checklist */
    .checklist-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 24px;
    }

    .price-value {
        font-size: 36px;
    }

    /* Enroll CTA */
    .enroll-cta-card {
        padding: 24px;
    }

    .enroll-cta-content h2 {
        font-size: 22px;
    }

    .enroll-cta-actions {
        flex-direction: column;
    }

    .enroll-cta-actions .btn {
        width: 100%;
    }

    /* Program components */
    .program-components {
        grid-template-columns: 1fr;
    }

    /* Suitable cards */
    .suitable-grid {
        grid-template-columns: 1fr;
    }

    /* Eligibility card */
    .eligibility-card {
        padding: 24px;
    }

    /* Payment logos */
    .payment-logos {
        gap: 24px;
    }
}

/* Tablet (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    /* Container */
    .container {
        padding: 0 24px;
    }

    /* Section padding */
    .section-padding {
        padding: 64px 32px;
    }

    /* Hero */
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    /* Section headers */
    .section-title {
        font-size: 32px;
    }

    /* Service grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Other services */
    .services-list {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Payment logos */
    .payment-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* Benefits grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pricing cards */
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Program components */
    .program-components {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Suitable grid */
    .suitable-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Checklist grid */
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (1200px+) */
@media (min-width: 1200px) {
    /* Container */
    .container {
        max-width: var(--container-width);
    }

    /* Hero */
    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    /* Section headers */
    .section-title {
        font-size: 38px;
    }

    /* CTA */
    .cta-title {
        font-size: 44px;
    }

    /* Navigation */
    .nav-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* Extra small devices (< 576px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .vaccination-title {
        font-size: 20px;
    }

    .service-title {
        font-size: 18px;
    }

    .subsidy-name {
        font-size: 16px;
    }

    .price-amount {
        font-size: 20px;
    }
}

/* Large desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 58px;
    }

    .section-title {
        font-size: 42px;
    }
}

/* Print styles */
@media print {
    .site-header,
    .footer,
    .hero-section,
    .appointment-cta,
    .enroll-cta-section,
    .mobile-menu,
    .mobile-menu-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .section-padding {
        padding: 20px 0;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .service-card,
    .benefit-card,
    .pricing-card {
        border-width: 2px;
    }

    .btn {
        border: 2px solid currentColor;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #1F2937;
        --light-gray: #374151;
        --dark-gray: #111827;
        --text-primary: #F9FAFB;
        --text-secondary: #D1D5DB;
    }

    .site-header {
        background: var(--dark-gray);
    }

    .vaccination-card,
    .service-card,
    .benefit-card,
    .pricing-card {
        background: var(--dark-gray);
        border-color: var(--light-gray);
    }

    .info-card,
    .enroll-cta-card {
        background: linear-gradient(135deg, #1E3A8A, #064E3B);
    }
}
