/* Revolutionary CSS Variables for SYS Guin City Rehab */
:root {
    --emerald-dark: #064e3b;
    --emerald-main: #059669;
    --emerald-light: #10b981;
    --emerald-pale: #d1fae5;
    --slate-dark: #0f172a;
    --slate-main: #334155;
    --slate-light: #64748b;
    --slate-pale: #f1f5f9;
    --white: #ffffff;
    --black: #000000;
    --amber-accent: #f59e0b;
    --rose-accent: #e11d48;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;

    /* Transitions */
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --transition-all: all 0.3s var(--ease-out);
    --transition-fast: all 0.15s var(--ease-out);

    /* Gradients */
    --gradient-emerald: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-main) 50%, var(--emerald-light) 100%);
    --gradient-slate: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate-main) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(6, 78, 59, 0.37) 0%, rgba(5, 150, 105, 0.37) 50%, rgba(16, 185, 129, 0.37) 100%);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-main);
    background-color: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--slate-dark);
}

h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 12px;
}

h3 {
    font-size: clamp(20px, 2.5vw, 28px);
    margin-bottom: 8px;
}

p {
    margin-bottom: 16px;
    color: var(--slate-light);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(100, 116, 139, 0.1);
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition-all);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.brand-name {
    font-size: 24px;
    color: var(--emerald-main);
    letter-spacing: -0.5px;
}

.brand-sub {
    font-size: 12px;
    color: var(--slate-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-main);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-main);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--emerald-main);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--slate-dark);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    width: 100%;
}

.hero-text {
    max-width: 700px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.label-dot {
    width: 6px;
    height: 6px;
    background: var(--emerald-light);
    border-radius: 50%;
}

.hero-title {
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-main {
    display: block;
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--emerald-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.title-sub {
    display: block;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: var(--gradient-emerald);
    color: var(--white);
    border: none;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-all);
    box-shadow: var(--shadow-lg);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-hero::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-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-number {
    font-size: 16px;
    font-weight: 700;
}

.disclaimer-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    transition: var(--transition-all);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--slate-pale);
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: var(--emerald-main);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    margin-bottom: 12px;
    background: var(--gradient-emerald);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 18px;
    color: var(--slate-light);
    margin-bottom: 0;
}

/* Treatment Section */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.treat-card {
    background: var(--white);
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-all);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.treat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-emerald);
}

.treat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-light);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.treat-card h3 {
    color: var(--slate-dark);
    margin-bottom: 12px;
    font-size: 20px;
}

.treat-card p {
    color: var(--slate-light);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 15px;
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.program-card {
    background: var(--white);
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-all);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-light);
}

.program-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--emerald-main);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-card h3 {
    color: var(--slate-dark);
    margin-bottom: 12px;
    font-size: 20px;
    margin-top: 8px;
}

.program-card p {
    color: var(--slate-light);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 15px;
}

/* Facility Section */
.facility {
    background: var(--white);
}

.facility-note {
    text-align: center;
    font-style: italic;
    color: var(--slate-light);
    margin-bottom: 40px;
    font-size: 14px;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.facility-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition-all);
    box-shadow: var(--shadow-sm);
}

.facility-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-all);
}

.facility-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(6, 78, 59, 0.9));
    color: var(--white);
    padding: 20px 16px 16px;
    transform: translateY(100%);
    transition: var(--transition-all);
}

.facility-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.facility-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.facility-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.facility-item:hover img {
    transform: scale(1.1);
}

.facility-item:hover .facility-info {
    transform: translateY(0);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-emerald);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-info h3 {
    color: var(--slate-dark);
    margin-bottom: 8px;
    font-size: 18px;
}

.step-info p {
    color: var(--slate-light);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 15px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(100, 116, 139, 0.1);
    transition: var(--transition-all);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--emerald-light);
}

.faq-q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition-fast);
    user-select: none;
}

.faq-q:hover {
    background: var(--slate-pale);
}

.faq-q h3 {
    margin: 0;
    color: var(--slate-dark);
    font-size: 16px;
    flex: 1;
    padding-right: 16px;
}

.faq-arrow {
    color: var(--emerald-main);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out), padding 0.3s var(--ease-out);
    background: var(--slate-pale);
}

.faq-item.active .faq-a {
    padding: 16px 24px;
    max-height: 200px;
}

.faq-a p {
    color: var(--slate-light);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 15px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-all);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-emerald);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--emerald-light);
}

.contact-head {
    margin-bottom: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--emerald-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-head h3 {
    color: var(--slate-dark);
    font-size: 18px;
    margin-bottom: 0;
}

.contact-phone {
    background: none;
    border: none;
    color: var(--emerald-main);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
    font-family: inherit;
    text-decoration: none;
    margin-bottom: 4px;
}

.contact-phone:hover {
    color: var(--emerald-dark);
}

.contact-email {
    color: var(--emerald-main);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    margin-bottom: 4px;
    display: block;
}

.contact-email:hover {
    color: var(--emerald-dark);
}

.contact-location {
    color: var(--slate-dark);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
}

.contact-sub {
    color: var(--slate-light);
    font-size: 14px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(100, 116, 139, 0.1);
}

/* Footer */
.footer {
    background: var(--slate-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-logo .brand-name {
    font-size: 28px;
    color: var(--emerald-light);
}

.footer-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-style: italic;
}

.footer-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-legal {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.3s ease;
}

.modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modal-box {
    background-color: var(--white);
    margin: 5% auto;
    border-radius: var(--radius-2xl);
    width: 90%;
    max-width: 500px;
    position: relative;
    z-index: 2001;
    box-shadow: var(--shadow-2xl);
    animation: slideUp 0.3s var(--ease-out);
    overflow: hidden;
    border: 1px solid rgba(100, 116, 139, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 24px 24px 0;
    position: relative;
}

.modal-header h3 {
    color: var(--slate-dark);
    margin-bottom: 0;
    font-size: 20px;
}

.modal-close {
    position: absolute;
    right: 16px;
    top: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--slate-light);
    transition: var(--transition-fast);
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--slate-dark);
    background: var(--slate-pale);
}

.modal-body {
    padding: 16px 24px;
}

.modal-body p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--slate-light);
    font-size: 15px;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 0 24px 24px;
}

.modal-btn {
    background: var(--gradient-emerald);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-all);
    box-shadow: var(--shadow-md);
    font-family: inherit;
}

.modal-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition-all);
        box-shadow: var(--shadow-lg);
        padding: 32px 0;
        gap: 16px;
    }

    .nav-links.active {
        left: 0;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero-bg {
        background-attachment: scroll;
    }

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

    .btn-hero,
    .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    section {
        padding: 60px 0;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .treatment-grid,
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .facility-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }

    .modal-box {
        margin: 10% auto;
        width: 95%;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .treat-card,
    .program-card,
    .contact-card {
        padding: 24px 20px;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .process-steps {
        gap: 16px;
    }

    .faq-q {
        padding: 16px 20px;
    }

    .faq-a {
        padding: 0 20px;
    }

    .faq-item.active .faq-a {
        padding: 12px 20px;
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Focus States */
button:focus,
.nav-links a:focus,
.faq-q:focus {
    outline: 2px solid var(--emerald-main);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--slate-pale);
}

::-webkit-scrollbar-thumb {
    background: var(--emerald-main);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--emerald-dark);
}

/* Print Styles */
@media print {
    .navbar,
    .modal {
        display: none;
    }

    .hero {
        height: auto;
        padding: 40px 0;
    }

    .hero-bg,
    .hero-overlay {
        position: relative;
    }
}