/* ============================================
   Prime Care Health Solutions - Custom Styles
   Modern Healthcare Theme with Glassmorphism
   ============================================ */

:root {
    --primary: #1565c0;
    --primary-dark: #0d47a1;
    --primary-light: #42a5f5;
    --secondary: #00897b;
    --accent: #ff9800;
    --accent-dark: #f57c00;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --danger: #dc3545;
    --success: #28a745;
    --border-radius: 0.75rem;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    --shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(21,101,192,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base */
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}
.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Navbar */
.navbar {
    background: rgba(13, 71, 161, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(13, 71, 161, 0.98);
    padding: 0.35rem 0;
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    padding: 0;
}
.logo-img {
    max-height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: var(--transition);
}
.logo-img:hover {
    transform: scale(1.03);
}
.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    border-radius: var(--border-radius);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 1px;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}
.nav-link:hover, .nav-link:focus {
    background: rgba(255,255,255,0.1);
}
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}
.dropdown-item {
    border-radius: 0.35rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: var(--transition);
}
.dropdown-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.btn:hover::before {
    left: 100%;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    box-shadow: 0 4px 15px rgba(21,101,192,0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21,101,192,0.45);
}
.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255,152,0,0.35);
}
.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,152,0,0.45);
    color: var(--white);
}
.btn-outline-glass {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}
.btn-outline-glass:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    transform: translateY(-3px);
}
.btn-outline-light:hover {
    transform: translateY(-3px);
}
.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13,71,161,0.92) 0%, rgba(21,101,192,0.85) 50%, rgba(0,137,123,0.8) 100%);
    z-index: 1;
}
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,152,0,0.05) 0%, transparent 40%);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,152,0,0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(255,152,0,0.2); }
}
.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero h1 .text-accent {
    color: var(--accent);
    position: relative;
}
.hero h1 .text-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}
.hero .lead {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 90%;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero-img-wrapper {
    position: relative;
    z-index: 2;
}
.hero-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, rgba(255,152,0,0.3), rgba(66,165,245,0.3));
    border-radius: 2rem;
    filter: blur(60px);
    animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}
.hero-img {
    position: relative;
    animation: float 6s ease-in-out infinite;
}
.hero-img img {
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.1);
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.hero-stat:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
}
.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(255,152,0,0.3);
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Wave divider */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}
.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* Services Tabs */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}
.service-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border: none;
}
.service-tabs .nav-item { margin: 0; }
.service-tabs .nav-link {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px !important;
    padding: 0.75rem 2rem !important;
    font-weight: 600;
    background: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: width 0.3s ease;
    z-index: -1;
}
.service-tabs .nav-link:hover::before,
.service-tabs .nav-link.active::before {
    width: 100%;
}
.service-tabs .nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21,101,192,0.25);
}
.service-tabs .nav-link.active {
    color: var(--white);
    box-shadow: 0 8px 25px rgba(21,101,192,0.35);
    border-color: var(--primary);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-size: 1.75rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(21,101,192,0.3);
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(21,101,192,0.4);
}
.service-card h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Sub-services (collapsible) */
.sub-services {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.sub-services.show {
    max-height: 2000px;
}
.sub-service-item {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #dee2e6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: var(--transition);
}
.sub-service-item:hover {
    padding-left: 8px;
}
.sub-service-item:last-child { border-bottom: none; }
.sub-service-item i {
    color: var(--secondary);
    margin-top: 0.25rem;
}

/* Feature Section */
.feature-section {
    padding: 5rem 0;
}
.feature-section.bg-light { background: var(--bg-light); }
.feature-img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.feature-img:hover { transform: scale(1.02); }
.feature-list {
    list-style: none;
    padding: 0;
}
.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Stats */
.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(255,152,0,0.3);
}
.stat-label {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-lg); }
.card-img-top {
    height: 220px;
    object-fit: cover;
}
.card-title { color: var(--primary-dark); }

/* Forms */
.form-control, .form-select {
    border-radius: var(--border-radius);
    padding: 0.625rem 1rem;
    border: 1.5px solid #dee2e6;
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.2rem rgba(66,165,245,0.25);
}
.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
    font-size: 0.9rem;
}
.form-section-title {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}
.form-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

/* Height input group */
.height-input {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.height-input .form-control { text-align: center; }
.height-input span {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.875rem;
}

/* Contact Page */
.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}
.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(21,101,192,0.3);
    transition: var(--transition);
}
.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}
.contact-info-card h4 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

/* Shop/E-commerce */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.product-img {
    height: 250px;
    background: linear-gradient(135deg, var(--bg-light), #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-light);
}
.product-info { padding: 1.5rem; }
.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Blog */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}
.blog-content { padding: 1.5rem; }
.blog-date {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.875rem;
}

/* DPP Landing Page */
.dpp-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}
.dpp-nav-pills .nav-link {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px !important;
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem !important;
    font-weight: 700;
    transition: var(--transition);
}
.dpp-nav-pills .nav-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.dpp-nav-pills .nav-link.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(21,101,192,0.3);
}
.dpp-section { padding: 3rem 0; }
.dpp-section.alt { background: var(--bg-light); }
.schedule-table th {
    background: var(--primary);
    color: var(--white);
}
.schedule-table td, .schedule-table th {
    vertical-align: middle;
}

/* Quiz */
.quiz-option {
    border: 2px solid #dee2e6;
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.quiz-option:hover {
    border-color: var(--primary-light);
    background: rgba(66,165,245,0.05);
    transform: translateX(5px);
}
.quiz-option.selected {
    border-color: var(--primary);
    background: rgba(21,101,192,0.08);
}
.quiz-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a1628 0%, #1b263b 100%);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}
.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}
.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.25rem 0;
}
.footer a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}
.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 0.5rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(21,101,192,0.4);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(21,101,192,0.4);
    border: none;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(21,101,192,0.5);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero h1 { font-size: 3rem; }
    .hero .lead { font-size: 1.1rem; }
    .service-tabs { gap: 0.5rem; }
    .service-tabs .nav-link { padding: 0.5rem 1.25rem !important; font-size: 0.875rem; }
    .section-title { font-size: 2rem; }
    .hero-stats-row { gap: 1rem; }
    .hero-stat { padding: 0.75rem 1rem; }
    .logo-img { max-height: 45px; }
}
@media (max-width: 767.98px) {
    .hero { min-height: auto; padding: 5rem 0 3rem; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .hero .lead { font-size: 1rem; max-width: 100%; }
    .stat-number { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .hero-stats-row { justify-content: center; }
    .hero-badge { font-size: 0.8rem; }
    .hero-wave svg { height: 60px; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* Print styles for forms */
@media print {
    .no-print { display: none !important; }
    .form-card { box-shadow: none; border: 1px solid #000; }
    body { background: white; }
}
