/* PREMIUM HOME PAGE STYLES */
.text-gradient { background: linear-gradient(90deg, #60a5fa, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-accent { color: var(--accent); }
.sub-title { display: inline-block; padding: 5px 15px; background: rgba(37, 99, 235, 0.1); color: var(--accent); border-radius: 20px; font-weight: 600; font-size: 14px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }

/* Hero Section Premium */
.hero-section { position: relative; padding: 160px 0 120px; background: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; color: #fff; min-height: 80vh; display: flex; align-items: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8)); }
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.hero-badge { display: inline-block; padding: 6px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: 30px; font-size: 14px; margin-bottom: 25px; backdrop-filter: blur(5px); }
.hero-title { font-size: 56px; font-weight: 900; line-height: 1.2; margin-bottom: 20px; letter-spacing: -1px; }
.hero-tagline { font-size: 20px; color: #cbd5e1; margin-bottom: 30px; }
.hero-features { display: flex; gap: 20px; justify-content: center; margin-bottom: 40px; }
.hero-features span { font-weight: 500; display: flex; align-items: center; gap: 8px; }
.hero-features i { color: var(--success); }
.btn-gradient { background: linear-gradient(90deg, var(--accent), #3b82f6); color: white; border: none; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4); }
.btn-gradient:hover { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6); color: white; transform: translateY(-2px); }
.btn-outline-light { border: 2px solid rgba(255,255,255,0.3); color: white; background: transparent; padding: 10px 24px; border-radius: 6px; display: inline-block; text-align: center; transition: all 0.3s; }
.btn-outline-light:hover { background: white; color: var(--primary); }

/* Quick Actions */
.quick-actions { position: relative; z-index: 10; margin-top: -60px; }
.action-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.action-card { background: white; padding: 30px 20px; border-radius: 12px; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; border: 1px solid var(--border); display: block; }
.ac-icon { width: 60px; height: 60px; background: rgba(37,99,235,0.05); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px; transition: 0.3s; }
.action-card h3 { font-size: 18px; margin-bottom: 5px; color: var(--primary); }
.action-card p { font-size: 13px; color: var(--text-muted); margin: 0; }
.action-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.action-card:hover .ac-icon { background: var(--accent); color: white; }

/* Categories */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.category-card { background: white; border: 1px solid var(--border); padding: 40px 30px; border-radius: 12px; text-align: center; transition: 0.3s; }
.category-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-5px); }
.cat-icon { font-size: 40px; color: var(--accent); margin-bottom: 20px; }
.category-card h3 { font-size: 20px; margin-bottom: 10px; }
.category-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }
.cat-link { font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; color: var(--accent); }
.cat-link:hover { gap: 10px; }

/* Featured Courses */
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; }
.course-deck { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.premium-course-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); border: 1px solid var(--border); transition: 0.4s; }
.premium-course-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: translateY(-8px); }
.course-thumb { height: 200px; position: relative; background: var(--primary); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,23,42,0.2), rgba(15,23,42,0.8)); }
.course-bg-icon { font-size: 80px; color: rgba(255,255,255,0.1); position: absolute; }
.course-badge { position: absolute; top: 20px; left: 20px; background: var(--warning); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 4px; z-index: 2; text-transform: uppercase; letter-spacing: 1px; }
.course-details { padding: 30px; }
.course-meta-top { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; font-weight: 600; }
.course-title { font-size: 20px; margin-bottom: 10px; line-height: 1.4; color: var(--primary); }
.course-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; min-height: 42px; }
.course-attributes { display: flex; gap: 15px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.attr { font-size: 13px; font-weight: 500; color: var(--text-main); display: flex; align-items: center; gap: 6px; }
.course-footer { display: flex; justify-content: space-between; align-items: center; }
.fee-label { display: block; font-size: 12px; color: var(--text-muted); }
.fee-amount { display: block; font-size: 20px; font-weight: 800; color: var(--accent); }

/* About Modern */
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lead-text { font-size: 18px; font-weight: 500; color: var(--text-main); margin-bottom: 20px; border-left: 4px solid var(--accent); padding-left: 15px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.point { display: flex; gap: 15px; }
.p-icon { width: 45px; height: 45px; border-radius: 8px; background: rgba(37,99,235,0.1); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.p-text h4 { font-size: 16px; margin-bottom: 5px; }
.p-text p { font-size: 13px; color: var(--text-muted); margin: 0; }
.visual-box { position: relative; }
.main-img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); display: block; }
.experience-card { position: absolute; bottom: -30px; left: -30px; background: white; padding: 30px; border-radius: 12px; box-shadow: 0 15px 30px -5px rgba(0,0,0,0.1); border-left: 5px solid var(--accent); display: flex; align-items: center; gap: 15px; }
.experience-card h3 { font-size: 48px; color: var(--accent); line-height: 1; margin: 0; }
.experience-card p { font-weight: 600; line-height: 1.2; color: var(--primary); margin: 0; }

/* Stats Premium */
.stats-premium { background: var(--primary); padding: 80px 0; color: white; }
.stats-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-box { padding: 30px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-box:last-child { border-right: none; }
.s-icon { font-size: 40px; color: var(--accent); margin-bottom: 20px; opacity: 0.8; }
.stat-box h2 { font-size: 48px; font-weight: 900; margin-bottom: 10px; color: white; }
.stat-box p { font-size: 16px; color: #cbd5e1; margin: 0; }

/* Testimonials & Notices */
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.testimonial-card { background: white; padding: 30px; border-radius: 12px; margin-bottom: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.t-rating { color: var(--warning); margin-bottom: 15px; font-size: 14px; }
.t-content { font-style: italic; color: var(--text-main); margin-bottom: 20px; font-size: 15px; line-height: 1.6; }
.t-user { display: flex; gap: 15px; align-items: center; }
.t-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--light); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.t-info h4 { font-size: 16px; margin-bottom: 2px; }
.t-info p { font-size: 12px; color: var(--text-muted); margin: 0; }

.notice-board { background: white; border-radius: 12px; padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.notice-item { display: flex; gap: 20px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
.notice-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.n-date { text-align: center; width: 60px; height: 60px; background: var(--light); border-radius: 8px; display: flex; flex-direction: column; justify-content: center; flex-shrink: 0; }
.n-date .d { font-size: 20px; font-weight: 800; color: var(--accent); line-height: 1; }
.n-date .m { font-size: 12px; font-weight: 600; text-transform: uppercase; color: var(--text-muted); }
.n-badge { font-size: 10px; text-transform: uppercase; padding: 3px 8px; border-radius: 20px; color: white; font-weight: 700; display: inline-block; margin-bottom: 5px; }
.bg-primary { background: var(--accent); }
.bg-warning { background: var(--warning); color: #fff; }
.bg-danger { background: var(--danger); }
.n-content h4 { font-size: 16px; margin-bottom: 5px; line-height: 1.4; }
.n-content p { font-size: 13px; color: var(--text-muted); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.view-all-notice { display: inline-block; margin-top: 25px; font-weight: 600; font-size: 14px; color: var(--accent); }

/* Gallery Preview */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.g-item { position: relative; border-radius: 12px; overflow: hidden; height: 250px; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; display: block; }
.g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.9), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: 0.4s; }
.g-item:hover img { transform: scale(1.1); }
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay h4 { color: white; margin-bottom: 5px; font-size: 16px; }
.g-cat { color: var(--accent); font-size: 12px; font-weight: 600; text-transform: uppercase; }

/* CTA Premium */
.cta-premium { padding: 100px 0; background: linear-gradient(135deg, var(--accent) 0%, #1e3a8a 100%); color: white; position: relative; overflow: hidden; }
.cta-premium::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.cta-premium h2 { font-size: 40px; color: white; margin-bottom: 20px; }
.cta-premium p { font-size: 18px; max-width: 600px; margin: 0 auto; color: rgba(255,255,255,0.8); }

/* Utilities */
.section-padding { padding: 80px 0; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.d-none-sm { display: inline-block; }

@media (max-width: 992px) {
  .hero-title { font-size: 40px; }
  .action-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrapper, .dual-grid { grid-template-columns: 1fr; }
  .stats-wrap { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-box { border: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-card { left: 0; bottom: -20px; }
}
@media (max-width: 576px) {
  .action-grid { grid-template-columns: 1fr; }
  .stats-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-features { flex-direction: column; gap: 10px; align-items: center; }
  .hero-btns { display: flex; flex-direction: column; gap: 15px; }
  .d-none-sm { display: none; }
  .flex-between { flex-direction: column; align-items: flex-start; gap: 15px; }
}
