/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e44993;
    --secondary-color: #227bc3;
    --accent-color: #ff497c;
    --success-color: #1bb32b;
    --warning-color: #ffa726;
    --danger-color: #ea0042;
    --dark-color: #1f2732;
    --light-color: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #227bc3 0%, #e44993 100%);
    --gradient-secondary: linear-gradient(135deg, #e44993 0%, #ff497c 100%);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.2);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PRELOADER ===== */
.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.pulse-loader {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 1.4s ease-in-out infinite both;
}

.pulse-dot:nth-child(2) { animation-delay: 0.2s; }
.pulse-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulse {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.preloader-text {
    text-align: center;
    color: var(--white);
}

.preloader-text h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.preloader-text p {
    opacity: 0.9;
}

/* ===== QUICK ACTION BAR MOBILE ===== */
.quick-action-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: var(--shadow-heavy);
    z-index: 998;
    transition: var(--transition);
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: 25px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.7rem;
    transition: var(--transition);
    min-width: 60px;
}

.quick-action-btn.primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.quick-action-btn:hover {
    transform: translateY(-2px);
}

.quick-action-btn i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

/* ===== HEADER STYLES ===== */
.pro-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.pro-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-light);
}

.header-top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: var(--accent-color);
}

.info-item a {
    color: var(--white);
    text-decoration: none;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    color: var(--white);
    transition: var(--transition);
}

.header-social a:hover {
    color: var(--accent-color);
}

/* Main Navigation */
.header-nav {
    padding: 15px 0;
}

.header-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 25px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-cta .btn-donor-cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta .btn-donor-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 2px 0;
    transition: var(--transition);
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero-section-pro {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 120px;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider-container .metaslider,
.hero-slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fallback {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    text-align: center;
}

.hero-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--accent-color);
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    margin: 20px auto;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-hero {
    min-width: 200px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ===== SECTIONS COMMON STYLES ===== */
.section-header-pro {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-pro {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-divider-pro {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 20px;
}

.section-divider-pro.center {
    margin: 0 auto 20px;
}

.section-subtitle-pro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-section-pro {
    padding: 100px 0;
    background: var(--light-color);
}

.services-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card-pro {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.service-card-pro:hover::before {
    left: 0;
}

.service-card-pro:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon-pro {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
}

.icon-wrapper {
    width: 100%;
    height: 100%;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-card-pro:hover .icon-wrapper {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.service-icon-pro i {
    font-size: 2.5rem;
    transition: var(--transition);
}

.service-card-pro:hover .service-icon-pro i {
    color: var(--white);
}

.service-card-pro:nth-child(1) .service-icon-pro i { color: var(--danger-color); }
.service-card-pro:nth-child(2) .service-icon-pro i { color: var(--success-color); }
.service-card-pro:nth-child(3) .service-icon-pro i { color: var(--secondary-color); }
.service-card-pro:nth-child(4) .service-icon-pro i { color: var(--accent-color); }

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--light-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-action {
    margin-top: 20px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

/* ===== INFO SECTION ===== */
.info-section-pro {
    padding: 100px 0;
    background: var(--white);
}

.info-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card-pro {
    background: var(--white);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.info-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.info-icon-pro {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.info-card-pro:hover .info-icon-pro {
    background: var(--gradient-primary);
}

.info-icon-pro i {
    font-size: 2rem;
    transition: var(--transition);
}

.info-card-pro:hover .info-icon-pro i {
    color: var(--white);
}

.info-card-pro:nth-child(1) .info-icon-pro i { color: var(--secondary-color); }
.info-card-pro:nth-child(2) .info-icon-pro i { color: var(--danger-color); }
.info-card-pro:nth-child(3) .info-icon-pro i { color: var(--warning-color); }
.info-card-pro:nth-child(4) .info-icon-pro i { color: var(--success-color); }

.info-card-pro h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.info-card-pro p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-link-pro {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.info-link-pro:hover {
    color: var(--accent-color);
}

.info-link-pro i {
    margin-left: 5px;
    transition: var(--transition);
}

.info-link-pro:hover i {
    transform: translateX(5px);
}

/* ===== BLOOD STOCK SECTION ===== */
.blood-stock-section {
    padding: 100px 0;
    background: var(--light-color);
}

.stock-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.stock-widget,
.chart-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.widget-header {
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.last-update {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.widget-content {
    padding: 0;
}

.widget-content iframe {
    display: block;
    border: none;
}

/* ===== CHARTS SECTION ===== */
.charts-section {
    padding: 80px 0;
    background: var(--white);
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

/* ===== CTA SECTION ===== */
.cta-section-pro {
    padding: 100px 0;
    background: var(--gradient-secondary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.cta-stat .stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.pro-footer {
    background: var(--dark-color);
    color: var(--white);
    position: relative;
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 5px;
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-details p,
.contact-details a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0;
}

.contact-details a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    display: block;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ===== BACK TO TOP ===== */
.back-to-top-pro {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top-pro.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-pro:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stock-widgets,
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-heavy);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu li {
        width: 100%;
        margin: 5px 0;
    }
    
    .nav-link {
        display: block;
        padding: 12px 20px;
        border-radius: 8px;
        text-align: center;
    }
    
    .nav-cta {
        margin-top: 15px;
    }
    
    .nav-cta .btn-donor-cta {
        justify-content: center;
        width: 100%;
    }
    
    .header-top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title-pro {
        font-size: 2rem;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .hero-stats,
    .cta-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .quick-action-bar {
        bottom: 10px;
        padding: 6px;
    }
    
    .quick-action-btn {
        padding: 6px 10px;
        font-size: 0.65rem;
        min-width: 55px;
    }
    
    .stock-widgets,
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .stock-widget,
    .chart-widget {
        min-width: auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title-pro {
        font-size: 1.8rem;
    }
    
    .services-grid-pro,
    .info-grid-pro {
        grid-template-columns: 1fr;
    }
    
    .service-card-pro,
    .info-card-pro {
        padding: 30px 20px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Print Styles */
@media print {
    .quick-action-bar,
    .mobile-menu-toggle,
    .page-preloader,
    .back-to-top-pro {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
    }
}

/* ===== CUSTOM MENU PREMIUM ===== */
.header-nav {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.logo-placeholder:hover {
    transform: rotate(10deg) scale(1.05);
}

.logo-text h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Desktop Menu Premium */
.nav-menu-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link i {
    font-size: 1.1rem;
    transition: var(--transition);
    width: 20px;
    text-align: center;
}

.nav-link span {
    position: relative;
    z-index: 2;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-link:hover i,
.nav-link.active i {
    transform: scale(1.2);
}

/* CTA Button Donor */
.nav-cta {
    margin-left: 15px;
}

.nav-btn-donor {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(228, 73, 147, 0.3);
}

.nav-btn-donor::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.nav-btn-donor:hover::before {
    left: 100%;
}

.nav-btn-donor:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(228, 73, 147, 0.4);
}

.btn-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--gradient-primary);
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

/* Mobile Menu Toggle Premium */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 12px;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
}

.menu-bar {
    width: 24px;
    height: 3px;
    background: var(--white);
    margin: 2px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 30px 30px;
        display: flex;
        flex-direction: column;
    }

    .nav-menu-container.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 16px 20px;
        border-radius: 12px;
        justify-content: flex-start;
        font-size: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-cta {
        margin: 20px 0 0 0;
        width: 100%;
    }

    .nav-btn-donor {
        justify-content: center;
        width: 100%;
    }

    /* Overlay */
    .nav-menu-container::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }

    .nav-menu-container.active::before {
        opacity: 1;
        visibility: visible;
    }
}

/* Header Top Bar Social */
.social-top {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-top:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element.el-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.el-2 {
    top: 60%;
    left: 85%;
    animation-delay: 1s;
}

.floating-element.el-3 {
    top: 80%;
    left: 15%;
    animation-delay: 2s;
}

.floating-element.el-4 {
    top: 30%;
    left: 90%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-glow:hover .btn-shine {
    left: 100%;
}

/* Profile Section */
.profile-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.profile-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.profile-highlight {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    margin-bottom: 30px;
}

.profile-highlight h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.profile-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.detail-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.detail-item h4 {
    margin: 0 0 5px 0;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.detail-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.profile-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.visual-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.visual-card h4 {
    margin: 0 0 10px 0;
    color: var(--dark-color);
}

.visual-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section-pro {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin: 0 0 10px 0;
    color: var(--dark-color);
}

.contact-details p {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Back to Top Enhanced */
.back-to-top-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: pulse 2s infinite;
    opacity: 0.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .profile-details {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .header-top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-info {
        flex-direction: column;
        gap: 8px;
    }
}


/* ===== MOBILE HEADER ADJUSTMENT ===== */
@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }
    
    /* Adjust header position since top bar is removed */
    .pro-header {
        top: 0;
    }
    
    .hero-section-pro {
        margin-top: 90px; /* Reduced margin because top bar is gone */
    }
    
    /* Optional: Adjust nav padding for better mobile appearance */
    .header-nav {
        padding: 12px 0;
    }
}

/* ===== HEADER LOGO STYLES ===== */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--white); /* Ganti dari gradient menjadi putih */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 2px solid #f0f0f0; /* Tambahkan border halus */
}

.logo-placeholder img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
}

/* Sembunyikan teks logo */
.logo-text {
    display: none; /* Sembunyikan teks logo */
}

/* Untuk desktop - tampilkan teks jika perlu */
@media (min-width: 769px) {
    .logo-text {
        display: block; /* Tampilkan kembali di desktop jika perlu */
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--secondary-color);
        margin: 0;
        line-height: 1.2;
    }
    
    .logo-text p {
        font-size: 0.7rem;
        color: var(--text-light);
        margin: 0;
        font-weight: 500;
        letter-spacing: 0.5px;
    }
}

/* ===== HERO SLIDER CUSTOM ===== */
.hero-fallback {
    width: 100%;
    height: 100%;
    background-image: url('https://udd.pmibuleleng.or.id/wp-content/uploads/2021/08/20210802_1341490-scaled-e1655556079951.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== MOBILE HEADER ADJUSTMENT ===== */
@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }
    
    .pro-header {
        top: 0;
    }
    
    .hero-section-pro {
        margin-top: 90px;
    }
    
    .header-nav {
        padding: 12px 0;
    }
    
    /* Logo mobile lebih kecil */
    .logo-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .logo-placeholder img {
        width: 42px;
        height: 42px;
    }
    
    /* Sembunyikan teks logo di mobile */
    .logo-text {
        display: none;
    }
}