/* =========================================
   BMedu.nl - Ana Stil Dosyası
   ========================================= */

:root {
    --primary: #1e3a5f;
    --primary-light: #2563eb;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --secondary: #0ea5e9;
    --gradient: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #0ea5e9 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b, #ef4444);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --card-shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
    --card-shadow-hover: 0 16px 48px rgba(30, 58, 95, 0.18);
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; height: auto; }

/* ---- Preloader ---- */
#preloader {
    position: fixed; inset: 0;
    background: var(--primary);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.loader-inner {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.loader-circle {
    width: 56px; height: 56px;
    border: 4px solid rgba(255,255,255,.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
.loader-inner span {
    color: #fff; font-size: 1.4rem; font-weight: 700; letter-spacing: 2px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Topbar ---- */
.topbar {
    background: var(--primary);
    padding: 8px 0;
    font-size: .82rem;
}
.topbar-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar a { color: rgba(255,255,255,.8); }
.topbar a:hover { color: var(--accent); }
.topbar a i { margin-right: 5px; }
.topbar .wa-btn {
    background: #25d366;
    color: #fff !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}
.topbar .wa-btn:hover { background: #1ebe5d; }

/* ---- Language Switcher ---- */
.lang-switcher {
    display: flex; align-items: center; gap: 4px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,.2);
}
.lang-btn {
    display: inline-flex; align-items: center; gap: 4px;
    color: rgba(255,255,255,.75) !important;
    font-size: .78rem; font-weight: 600;
    padding: 3px 8px;
    border-radius: 14px;
    border: 1px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}
.lang-btn:hover { color: #fff !important; border-color: rgba(255,255,255,.3); }
.lang-btn.lang-active {
    background: rgba(255,255,255,.15);
    color: #fff !important;
    border-color: rgba(255,255,255,.35);
}

/* ---- Navbar ---- */
.main-navbar {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(30,58,95,.08);
    padding: 6px 0;
    transition: var(--transition);
}
.main-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(30,58,95,.15);
}
.navbar-brand {
    display: flex; align-items: center; gap: 12px;
}
.brand-logo {
    width: 48px; height: 48px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    box-shadow: 0 4px 15px rgba(37,99,235,.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
    font-size: 1.35rem; font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-slogan { font-size: .7rem; color: var(--text-muted); font-weight: 500; }

.main-navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500; font-size: .9rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    position: relative;
}
.main-navbar .nav-link::after {
    content: ''; position: absolute; bottom: 4px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px; height: 2px;
    background: var(--accent); border-radius: 2px;
    transition: var(--transition);
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--primary-light) !important; }

.btn-contact {
    background: var(--gradient) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(37,99,235,.3);
}
.btn-contact::after { display: none !important; }
.btn-contact:hover { opacity: .9; transform: translateY(-1px); }

.navbar-toggler {
    border: none; padding: 6px;
}
.toggler-icon { font-size: 1.5rem; color: var(--primary); }

/* ---- Section Utilities ---- */
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(14,165,233,.1));
    color: var(--primary-light);
    padding: 6px 18px; border-radius: 30px;
    font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 14px;
    border: 1px solid rgba(37,99,235,.15);
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-dark); line-height: 1.2; margin-bottom: 12px;
}
.section-title span {
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; }
.divider {
    width: 60px; height: 4px;
    background: var(--gradient-accent);
    border-radius: 4px; margin: 12px 0;
}
.divider.center { margin: 12px auto; }

/* ---- Buttons ---- */
.btn-primary-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient);
    color: #fff; padding: 13px 32px;
    border-radius: 12px; font-weight: 600; font-size: .95rem;
    border: none; cursor: pointer;
    box-shadow: 0 6px 20px rgba(37,99,235,.35);
    transition: var(--transition);
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37,99,235,.45);
    color: #fff;
}
.btn-outline-custom {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    color: var(--primary-light); padding: 12px 30px;
    border-radius: 12px; font-weight: 600; font-size: .95rem;
    border: 2px solid var(--primary-light);
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: var(--primary-light); color: #fff;
    transform: translateY(-3px);
}
.btn-accent {
    background: var(--gradient-accent);
    color: #fff; padding: 13px 32px;
    border-radius: 12px; font-weight: 600;
    border: none; cursor: pointer;
    box-shadow: 0 6px 20px rgba(245,158,11,.4);
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-accent:hover { transform: translateY(-3px); color: #fff; }

/* ---- Hero / Slider ---- */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center;
}
.hero-bg {
    position: absolute; inset: 0;
    background: var(--gradient);
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bg .circle1, .hero-bg .circle2, .hero-bg .circle3 {
    position: absolute; border-radius: 50%; opacity: .12;
    animation: pulse-float 6s ease-in-out infinite;
}
.hero-bg .circle1 { width: 600px; height: 600px; background: #fff; top: -200px; right: -100px; }
.hero-bg .circle2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: -100px; animation-delay: 2s; }
.hero-bg .circle3 { width: 250px; height: 250px; background: var(--secondary); top: 50%; left: 40%; animation-delay: 4s; }
@keyframes pulse-float {
    0%,100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-20px); }
}
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff; padding: 8px 20px; border-radius: 30px;
    font-size: .8rem; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge i { color: var(--accent); }
.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 900; line-height: 1.1; margin-bottom: 20px;
}
.hero-title .accent-text { color: var(--accent); }
.hero-desc { font-size: 1.15rem; opacity: .9; margin-bottom: 36px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 32px; margin-top: 56px;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,.2);
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
    display: block; font-size: 2.4rem; font-weight: 900; color: var(--accent);
    line-height: 1;
}
.hero-stat-label { font-size: .8rem; opacity: .8; text-transform: uppercase; letter-spacing: 1px; }
.hero-image-wrap {
    position: relative; z-index: 2;
    display: flex; justify-content: center; align-items: center;
}
.hero-card-float {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--border-radius);
    padding: 24px; color: #fff;
    animation: float-card 4s ease-in-out infinite;
}
.hero-card-float:nth-child(2) { animation-delay: 1.5s; }
.hero-icon-box {
    width: 540px; height: 380px;
    background: rgba(255,255,255,.08);
    border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
    font-size: 12rem; opacity: .6;
    position: relative;
}
@keyframes float-card {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Slider Controls */
.hero-slider-dots {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 5;
}
.slider-dot {
    width: 10px; height: 10px;
    background: rgba(255,255,255,.4); border-radius: 50%;
    cursor: pointer; transition: var(--transition);
}
.slider-dot.active {
    background: var(--accent); width: 28px; border-radius: 5px;
}

/* ---- Cards ---- */
.edu-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(30,58,95,.05);
}
.edu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}
.card-icon-wrap {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

/* ---- Services Section ---- */
.services-section { padding: 100px 0; background: var(--bg-white); }

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 36px 32px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(30,58,95,.06);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: var(--gradient); transform: scaleX(0);
    transform-origin: left; transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}
.service-icon {
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(14,165,233,.1));
}
.service-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.service-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ---- Courses ---- */
.courses-section { padding: 100px 0; background: var(--bg-light); }

.course-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(30,58,95,.06);
}
.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}
.course-thumb {
    height: 200px;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; opacity: .7; color: #fff; position: relative;
    overflow: hidden;
}
.course-thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--accent); color: #fff;
    padding: 4px 12px; border-radius: 20px; font-size: .75rem; font-weight: 700;
}
.course-body { padding: 24px; }
.course-meta {
    display: flex; gap: 16px; margin-bottom: 12px;
    flex-wrap: wrap;
}
.course-meta span {
    display: flex; align-items: center; gap: 5px;
    font-size: .8rem; color: var(--text-muted);
}
.course-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.course-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.course-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 16px; border-top: 1px solid #f1f5f9;
}

/* ---- Stats ---- */
.stats-section {
    background: var(--gradient);
    padding: 80px 0; position: relative; overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card { text-align: center; color: #fff; position: relative; z-index: 1; }
.stat-card .stat-icon {
    font-size: 2.8rem; opacity: .8; margin-bottom: 10px;
}
.stat-card .stat-number {
    font-size: 3.2rem; font-weight: 900;
    color: var(--accent); display: block; line-height: 1;
    font-family: 'Inter', sans-serif;
}
.stat-card .stat-label {
    font-size: .9rem; opacity: .85;
    text-transform: uppercase; letter-spacing: 1px; margin-top: 6px;
}

/* ---- About ---- */
.about-section { padding: 100px 0; background: var(--bg-light); }
.about-image-wrap {
    position: relative;
}
.about-main-img {
    border-radius: 24px;
    width: 100%; object-fit: cover;
    box-shadow: 0 20px 60px rgba(30,58,95,.2);
}
.about-badge-float {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gradient);
    color: #fff; padding: 20px 28px; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(37,99,235,.4);
    text-align: center;
}
.about-badge-float .num { font-size: 2.5rem; font-weight: 900; display: block; }
.about-badge-float .txt { font-size: .85rem; opacity: .9; }
.about-feature {
    display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px;
}
.about-feature-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(14,165,233,.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--primary-light); flex-shrink: 0;
}
.about-feature-text h6 { font-weight: 700; margin-bottom: 4px; }
.about-feature-text p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ---- News ---- */
.news-section { padding: 100px 0; background: var(--bg-white); }
.news-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(30,58,95,.06);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.news-thumb {
    height: 220px; background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; color: rgba(255,255,255,.5);
}
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-body { padding: 24px; }
.news-date {
    display: flex; align-items: center; gap: 6px;
    font-size: .8rem; color: var(--text-muted); margin-bottom: 10px;
}
.news-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.news-title a:hover { color: var(--primary-light); }
.news-desc { font-size: .88rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.news-link {
    font-size: .88rem; font-weight: 600; color: var(--primary-light);
    display: flex; align-items: center; gap: 5px;
}
.news-link:hover { gap: 10px; }

/* ---- Gallery ---- */
.gallery-section { padding: 100px 0; background: var(--bg-light); }
.gallery-filter {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 22px; border-radius: 30px;
    border: 2px solid rgba(37,99,235,.2);
    background: transparent; color: var(--text-muted);
    font-weight: 600; font-size: .88rem; cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
    background: var(--gradient); color: #fff; border-color: transparent;
}
.gallery-grid { columns: 3; gap: 16px; }
.gallery-item {
    break-inside: avoid; margin-bottom: 16px;
    border-radius: var(--border-radius-sm);
    overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(30,58,95,.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: #fff; }

/* Lightbox */
.lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-overlay img { max-width: 90vw; max-height: 85vh; border-radius: 12px; }
.lightbox-close {
    position: absolute; top: 20px; right: 20px;
    color: #fff; font-size: 2rem; cursor: pointer;
}

/* ---- Contact ---- */
.contact-section { padding: 100px 0; background: var(--bg-white); }
.contact-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(30,58,95,.06);
}
.contact-info-item {
    display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px;
}
.contact-info-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
    background: var(--gradient); color: #fff;
    box-shadow: 0 6px 20px rgba(37,99,235,.3);
}
.contact-info-text h6 { font-weight: 700; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { 
    color: var(--text-muted); font-size: .9rem; margin: 0;
}
.contact-info-text a:hover { color: var(--primary-light); }

/* Form Styles */
.form-control-custom, .form-select-custom {
    width: 100%;
    padding: 13px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: .95rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none; font-family: 'Inter', sans-serif;
}
.form-control-custom:focus, .form-select-custom:focus {
    border-color: var(--primary-light);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37,99,235,.1);
}
.form-group { margin-bottom: 20px; }
.form-label { font-weight: 600; font-size: .9rem; margin-bottom: 8px; display: block; }
textarea.form-control-custom { resize: vertical; min-height: 140px; }

/* ---- Page Hero ---- */
.page-hero {
    background: var(--gradient);
    padding: 100px 0 70px;
    position: relative; overflow: hidden;
    color: #fff;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); position: relative; z-index: 1; }
.breadcrumb-custom { position: relative; z-index: 1; }
.breadcrumb-custom a { color: rgba(255,255,255,.7); }
.breadcrumb-custom a:hover { color: var(--accent); }
.breadcrumb-custom .sep { margin: 0 10px; opacity: .5; }
.breadcrumb-custom .current { color: var(--accent); font-weight: 600; }

/* ---- Partners ---- */
.partners-section { padding: 70px 0; background: var(--bg-light); }
.partners-track {
    display: flex; gap: 50px; align-items: center;
    animation: scroll-x 20s linear infinite;
    width: max-content;
}
.partner-item {
    background: var(--bg-white);
    border-radius: 12px; padding: 16px 32px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(30,58,95,.06);
    font-weight: 700; font-size: 1.1rem; color: var(--text-muted);
    white-space: nowrap; border: 1px solid #e2e8f0;
    flex-shrink: 0;
}
@keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- Testimonials ---- */
.testimonials-section { padding: 100px 0; background: var(--bg-white); }
.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 36px;
    border: 1px solid rgba(30,58,95,.06);
    height: 100%; position: relative;
}
.testimonial-card::before {
    content: '"'; position: absolute; top: 20px; right: 28px;
    font-size: 6rem; line-height: 1; color: rgba(37,99,235,.1);
    font-family: Georgia, serif;
}
.testimonial-stars { color: var(--accent); margin-bottom: 16px; }
.testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gradient); display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1.1rem;
}
.author-name { font-weight: 700; font-size: .95rem; }
.author-title { font-size: .82rem; color: var(--text-muted); }

/* ---- CTA Section ---- */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { color: #fff; position: relative; z-index: 1; font-size: clamp(1.8rem, 3.5vw, 3rem); }
.cta-section p { color: rgba(255,255,255,.85); position: relative; z-index: 1; font-size: 1.1rem; }
.cta-section .btn-group-custom { position: relative; z-index: 1; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-white {
    background: #fff; color: var(--primary);
    padding: 14px 36px; border-radius: 12px; font-weight: 700;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,.25); color: var(--primary); }
.btn-white-outline {
    border: 2px solid rgba(255,255,255,.6); color: #fff;
    padding: 12px 34px; border-radius: 12px; font-weight: 600;
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-white-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

/* ---- Footer ---- */
.footer { background: #0a0f1e; color: rgba(255,255,255,.75); }
.footer-top { padding: 80px 0 50px; }
.footer-brand p { font-size: .9rem; line-height: 1.8; margin: 20px 0; }
.footer-logo {
    display: flex; align-items: center; gap: 12px;
    font-size: 1.5rem; font-weight: 800; color: #fff;
}
.footer-logo i {
    width: 44px; height: 44px;
    background: var(--gradient);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gradient); color: #fff; transform: translateY(-3px); }
.footer-title {
    color: #fff; font-size: 1rem; font-weight: 700;
    margin-bottom: 24px; position: relative; padding-bottom: 12px;
    font-family: 'Inter', sans-serif;
}
.footer-title::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 36px; height: 3px; background: var(--gradient-accent); border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; display: flex; align-items: center; gap: 8px; }
.footer-links a i { font-size: .75rem; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex; gap: 12px; align-items: flex-start;
    margin-bottom: 14px; font-size: .88rem;
}
.footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--accent); }
.footer-stats { display: flex; gap: 20px; margin-top: 20px; }
.footer-stats .stat-item { text-align: center; }
.footer-stats .stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--accent); line-height: 1; }
.footer-stats .stat-lbl { font-size: .75rem; opacity: .7; }
.newsletter-form .input-group {
    display: flex; gap: 8px;
}
.newsletter-form input {
    flex: 1; padding: 10px 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px; background: rgba(255,255,255,.08);
    color: #fff; font-size: .88rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button {
    padding: 10px 18px; border-radius: 10px;
    background: var(--gradient); border: none; color: #fff; cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover { opacity: .85; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { margin: 0; font-size: .85rem; opacity: .65; }
.admin-link { font-size: .82rem; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 6px; }
.admin-link:hover { color: var(--accent); }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 24px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; z-index: 999;
    box-shadow: 0 6px 20px rgba(37,211,102,.5);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.wa-pulse {
    position: absolute; inset: -4px; border-radius: 50%;
    border: 3px solid #25d366; opacity: .5;
    animation: wa-pulse 1.5s infinite;
}
@keyframes wa-pulse {
    0% { transform: scale(1); opacity: .5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ---- Scroll Top ---- */
.scroll-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--gradient); color: #fff; border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; cursor: pointer; z-index: 999;
    box-shadow: 0 4px 15px rgba(37,99,235,.4);
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }

/* ---- Alert Messages ---- */
.alert-custom {
    padding: 14px 20px; border-radius: 12px;
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px; font-size: .9rem; font-weight: 500;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ---- Admin ---- */
.admin-sidebar {
    width: 260px; min-height: 100vh;
    background: var(--primary);
    position: fixed; left: 0; top: 0; z-index: 100;
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.admin-sidebar-logo {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; gap: 12px;
    font-size: 1.2rem; font-weight: 800; color: #fff;
}
.admin-sidebar-logo i {
    font-size: 1.5rem; color: var(--accent);
}
.admin-nav { padding: 20px 0; flex: 1; }
.admin-nav .nav-section-title {
    padding: 8px 20px; font-size: .72rem;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: rgba(255,255,255,.4); font-weight: 600;
}
.admin-nav-link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px; color: rgba(255,255,255,.7);
    font-size: .9rem; font-weight: 500;
    transition: var(--transition);
}
.admin-nav-link i { font-size: 1.1rem; width: 22px; }
.admin-nav-link:hover, .admin-nav-link.active {
    color: #fff; background: rgba(255,255,255,.1);
    border-right: 3px solid var(--accent);
}
.admin-content {
    margin-left: 260px; min-height: 100vh;
    background: #f1f5f9; padding: 0;
}
.admin-topbar {
    background: #fff; padding: 16px 30px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    position: sticky; top: 0; z-index: 50;
}
.admin-page-title { font-size: 1.2rem; font-weight: 700; }
.admin-body { padding: 30px; }
.admin-stat-card {
    background: #fff; border-radius: var(--border-radius);
    padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.05);
    display: flex; align-items: center; gap: 20px;
}
.admin-stat-icon {
    width: 58px; height: 58px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
}
.admin-stat-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.admin-stat-lbl { font-size: .85rem; color: var(--text-muted); }
.admin-table-card {
    background: #fff; border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(0,0,0,.05); overflow: hidden;
}
.admin-table-header {
    padding: 20px 24px; border-bottom: 1px solid #f1f5f9;
    display: flex; justify-content: space-between; align-items: center;
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
    padding: 12px 20px; text-align: left;
    font-size: .82rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .5px; color: var(--text-muted);
    background: #f8fafc; border-bottom: 1px solid #e2e8f0;
}
.admin-table td {
    padding: 14px 20px; border-bottom: 1px solid #f1f5f9;
    font-size: .9rem; vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f8fafc; }
.badge-aktif { background: #d1fae5; color: #065f46; padding: 4px 10px; border-radius: 6px; font-size: .78rem; font-weight: 600; }
.badge-pasif { background: #fee2e2; color: #991b1b; padding: 4px 10px; border-radius: 6px; font-size: .78rem; font-weight: 600; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .topbar { display: none; }
    .hero-section { min-height: auto; padding: 80px 0 60px; }
    .hero-image-wrap { margin-top: 40px; }
    .hero-stats { gap: 20px; }
    .gallery-grid { columns: 2; }
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-content { margin-left: 0; }
}

@media (max-width: 575px) {
    .gallery-grid { columns: 1; }
    .hero-stats { flex-wrap: wrap; }
    .hero-actions { flex-direction: column; }
    .stats-section .row > div { margin-bottom: 30px; }
}
