/*
Theme Name: Gurufolks Digital Marketing
Theme URI: https://gurufolks.com
Author: Gurufolks
Author URI: https://gurufolks.com
Description: Professional WordPress theme for Gurufolks Digital Marketing Institute - Prayagraj's leading digital marketing training center. Features LMS integration, course pages, placement section, blog, gallery, and student/teacher portals.
Version: 7.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: gurufolks
Tags: education, lms, digital-marketing, courses, one-page, custom-menu, featured-images

Gurufolks - Best Digital Marketing Institute in Prayagraj (Allahabad)
*/

/* ===== CSS Variables ===== */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --secondary: #f97316;
  --secondary-dark: #ea580c;
  --foreground: #1e293b;
  --background: #f8fafc;
  --muted: #94a3b8;
  --card: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 24px -4px rgba(37,99,235,0.1);
  --shadow-lg: 0 20px 60px -12px rgba(37,99,235,0.2);
  --gradient-primary: linear-gradient(135deg, #2563eb, #1d4ed8);
  --gradient-orange: linear-gradient(135deg, #f97316, #ea580c);
  --gradient-hero: linear-gradient(135deg, #0f172a, #1e3a5f);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--muted); }
.text-white { color: #fff; }
.bg-primary { background: var(--primary); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-orange { background: var(--gradient-orange); }
.bg-gradient-hero { background: var(--gradient-hero); }
.font-heading { font-family: var(--font-heading); }
.section-padding { padding: 80px 0; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  cursor: pointer; border: none; transition: all 0.3s;
  text-decoration: none;
}
.btn-primary { background: var(--gradient-primary); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--gradient-orange); color: #fff; }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,0.3); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.badge {
  display: inline-block; padding: 4px 12px;
  border-radius: 20px; font-size: 12px; font-weight: 600;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-secondary { background: #fff7ed; color: var(--secondary); }
.section-heading {
  font-size: 36px; margin-bottom: 16px;
}
.section-subheading {
  font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto 48px;
}
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); transition: all 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ===== Top Bar ===== */
.top-bar {
  background: var(--gradient-primary); color: #fff;
  padding: 8px 0; font-size: 13px;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--secondary); }
.top-bar .social-links { display: flex; gap: 12px; margin-left: 16px; padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.2); }
.top-bar .social-links a { font-size: 14px; }

/* ===== Navigation ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; background: rgba(248,250,252,0.9);
  backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; border-radius: 8px; }
.nav-logo span { font-family: var(--font-heading); font-size: 22px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color 0.3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 320px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 12px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all 0.3s; z-index: 100;
}
.dropdown-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; border-radius: 8px;
  font-size: 14px; color: var(--muted);
}
.dropdown-menu a:hover { background: var(--primary-light); color: var(--foreground); }
.dropdown-menu a .duration { font-size: 12px; background: var(--background); padding: 2px 8px; border-radius: 4px; }

/* Mobile Nav */
.mobile-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--foreground); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--card); z-index: 999; overflow-y: auto; padding: 20px;
}
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 15px; color: var(--muted); border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 12px; }
.mobile-social { display: flex; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.mobile-social a {
  width: 36px; height: 36px; border-radius: 8px; background: var(--background);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 16px;
}
.mobile-social a:hover { color: var(--primary); background: var(--primary-light); }

/* ===== Hero Section ===== */
.hero {
  padding: 160px 0 100px; background: var(--gradient-hero);
  position: relative; overflow: hidden; color: #fff;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(37,99,235,0.1); filter: blur(100px);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: 48px; margin-bottom: 20px; line-height: 1.1; }
.hero h1 .highlight { color: var(--secondary); }
.hero p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.8; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stats .stat { text-align: center; }
.hero-stats .stat-value { font-size: 28px; font-weight: 700; color: var(--secondary); }
.hero-stats .stat-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-form {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
  padding: 36px; max-width: 420px;
}
.hero-form h3 { font-size: 22px; margin-bottom: 6px; }
.hero-form p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.hero-form .form-group { margin-bottom: 14px; }
.hero-form input, .hero-form select, .hero-form textarea {
width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgb(41 58 84);
    color: #fff;
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}
.hero-form input::placeholder, .hero-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.hero-form input:focus, .hero-form select:focus, .hero-form textarea:focus {
  outline: none; border-color: var(--secondary);
}
.hero-form .btn { width: 100%; justify-content: center; margin-top: 8px; font-size: 16px; padding: 14px; }

/* ===== Trusted By ===== */
.trusted-by { padding: 40px 0; background: var(--card); border-bottom: 1px solid var(--border); }
.trusted-by h4 { font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; }
.trusted-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: 0.5; }
.trusted-logos span { font-size: 20px; font-weight: 700; font-family: var(--font-heading); color: var(--foreground); }

/* ===== Courses Section ===== */
.courses-section { background: var(--background); }
.course-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all 0.3s; position: relative;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card .course-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gradient-orange); color: #fff;
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
}
.course-card .course-icon {
  height: 200px; background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; color: rgba(255,255,255,0.2);
}
.course-card .course-body { padding: 24px; }
.course-card h3 { font-size: 18px; margin-bottom: 8px; }
.course-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.course-card .course-meta { display: flex; gap: 16px; margin-bottom: 16px; font-size: 13px; color: var(--muted); }
.course-card .course-topics { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.course-card .course-topics span {
  font-size: 11px; padding: 3px 10px; border-radius: 20px;
  background: var(--primary-light); color: var(--primary);
}

/* ===== Who Is This For ===== */
.who-section .who-card {
  text-align: center; padding: 32px 24px;
}
.who-section .who-card .icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--primary-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 16px;
}
.who-section .who-card h4 { font-size: 16px; margin-bottom: 8px; }
.who-section .who-card p { font-size: 13px; color: var(--muted); }

/* ===== Certifications ===== */
.certifications { background: var(--gradient-hero); color: #fff; }
.cert-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.cert-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.cert-card .cert-icon { font-size: 40px; margin-bottom: 12px; }
.cert-card h4 { font-size: 16px; margin-bottom: 6px; }
.cert-card p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ===== Placement Section ===== */
.placement-section .stat-card {
  text-align: center; padding: 24px;
}
.placement-section .stat-card .stat-value { font-size: 32px; font-weight: 700; color: var(--primary); }
.placement-section .stat-card .stat-label { font-size: 14px; color: var(--muted); margin-top: 4px; }
.placement-process { counter-reset: step; }
.placement-process .step {
  display: flex; gap: 20px; margin-bottom: 24px; align-items: flex-start;
}
.placement-process .step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; flex-shrink: 0;
}

/* ===== Testimonials ===== */
.testimonial-card {
  padding: 32px; position: relative;
}
.testimonial-card .quote { font-size: 48px; color: var(--primary); opacity: 0.2; position: absolute; top: 16px; left: 24px; }
.testimonial-card .stars { color: #fbbf24; margin-bottom: 12px; }
.testimonial-card p { font-size: 15px; color: var(--foreground); margin-bottom: 16px; line-height: 1.8; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.testimonial-card .author-info h5 { font-size: 14px; }
.testimonial-card .author-info span { font-size: 12px; color: var(--muted); }

/* ===== Blog Section ===== */
.blog-card { overflow: hidden; }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card .blog-body { padding: 24px; }
.blog-card .blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.blog-card h3 { font-size: 18px; margin-bottom: 8px; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 14px; color: var(--muted); }
.blog-sidebar .widget { margin-bottom: 32px; }
.blog-sidebar .widget h4 { font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.blog-sidebar .widget ul { list-style: none; }
.blog-sidebar .widget ul li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.blog-sidebar .widget ul li a { font-size: 14px; color: var(--muted); }
.blog-sidebar .widget ul li a:hover { color: var(--primary); }
.blog-detail .author-bio {
  display: flex; gap: 20px; padding: 24px; background: var(--background);
  border-radius: var(--radius); margin: 32px 0;
}
.blog-detail .author-bio img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.blog-detail .share-buttons { display: flex; gap: 12px; margin: 24px 0; }
.blog-detail .share-buttons a {
  width: 40px; height: 40px; border-radius: 8px; display: flex;
  align-items: center; justify-content: center; color: #fff; font-size: 16px;
}
.comment-form { margin-top: 40px; }
.comment-form h4 { font-size: 22px; margin-bottom: 20px; }
.comment-form input, .comment-form textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; margin-bottom: 16px;
  font-family: var(--font-body);
}
.comment-form textarea { min-height: 120px; resize: vertical; }

/* ===== Gallery ===== */
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.gallery-filters button {
  padding: 8px 20px; border-radius: 20px; border: 1px solid var(--border);
  background: var(--card); font-size: 13px; cursor: pointer; transition: all 0.3s;
  font-family: var(--font-body);
}
.gallery-filters button:hover, .gallery-filters button.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px; color: #fff;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay h4 { font-size: 16px; }
.gallery-item .overlay p { font-size: 13px; opacity: 0.7; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 9999; display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 80vh; border-radius: 8px; }
.lightbox .close { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 32px; cursor: pointer; background: none; border: none; }
.lightbox .nav-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 36px; cursor: pointer; background: rgba(255,255,255,0.1);
  border: none; width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox .nav-arrow.prev { left: 20px; }
.lightbox .nav-arrow.next { right: 20px; }

/* ===== Success Stories ===== */
.success-card { overflow: hidden; }
.success-card .timeline {
  position: relative; padding-left: 24px;
  border-left: 2px solid var(--primary-light);
}
.success-card .timeline-item {
  position: relative; margin-bottom: 16px; padding-left: 16px;
}
.success-card .timeline-item::before {
  content: ''; position: absolute; left: -29px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); border: 2px solid var(--primary-light);
}

/* ===== Contact Page ===== */
.contact-form { max-width: 600px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
	margin-bottom: 15px;
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: var(--font-body);
  transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-info-card {
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
}
.contact-info-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-light); display: flex;
  align-items: center; justify-content: center;
  color: var(--primary); font-size: 20px; flex-shrink: 0;
}
.google-map { border-radius: var(--radius); overflow: hidden; height: 400px; }
.google-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-item .faq-question {
  padding: 18px 24px; cursor: pointer; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--card); transition: background 0.3s; font-size: 15px;
}
.faq-item .faq-question:hover { background: var(--primary-light); }
.faq-item .faq-question .arrow { transition: transform 0.3s; font-size: 18px; }
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-item .faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s; }
.faq-item.active .faq-answer { padding: 0 24px 18px; max-height: 500px; }
.faq-item .faq-answer p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ===== Login / Portal ===== */
.login-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 20px; }
.login-card { max-width: 440px; width: 100%; padding: 40px; }
.login-card h2 { font-size: 28px; margin-bottom: 8px; }
.login-card p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.login-card .form-group { margin-bottom: 16px; }
.login-card label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.login-card input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: var(--font-body);
}
.login-card input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.login-tabs { display: flex; gap: 0; margin-bottom: 24px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.login-tabs button {
  flex: 1; padding: 10px; border: none; background: var(--background);
  font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font-body);
  transition: all 0.3s;
}
.login-tabs button.active { background: var(--primary); color: #fff; }
.social-login { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.social-login a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 14px; font-weight: 500; transition: all 0.3s;
}
.social-login a:hover { background: var(--background); border-color: var(--primary); }
.divider { text-align: center; margin: 20px 0; position: relative; }
.divider::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--border); }
.divider span { background: var(--card); padding: 0 16px; position: relative; font-size: 13px; color: var(--muted); }

/* ===== Dashboard ===== */
.dashboard { padding: 120px 0 60px; }
.dashboard-header { margin-bottom: 32px; }
.dashboard-header h1 { font-size: 28px; margin-bottom: 8px; }
.dashboard-tabs { display: flex; gap: 4px; background: var(--background); padding: 4px; border-radius: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.dashboard-tabs button {
  padding: 10px 20px; border-radius: 8px; border: none;
  background: transparent; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); transition: all 0.3s;
}
.dashboard-tabs button.active { background: var(--primary); color: #fff; }
.dashboard-stat {
  padding: 20px; display: flex; align-items: center; gap: 16px;
}
.dashboard-stat .stat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.dashboard-table { width: 100%; border-collapse: collapse; }
.dashboard-table th { text-align: left; padding: 12px 16px; font-size: 13px; color: var(--muted); border-bottom: 1px solid var(--border); }
.dashboard-table td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--border); }
.status-badge { padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-paid { background: #dcfce7; color: #16a34a; }
.status-pending { background: #fef3c7; color: #d97706; }
.status-overdue { background: #fecaca; color: #dc2626; }

/* ===== Webinar ===== */
.webinar-card { overflow: hidden; }
.webinar-card .webinar-status {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; margin-bottom: 12px;
}
.webinar-card .status-live { background: #dc2626; color: #fff; animation: pulse 2s infinite; }
.webinar-card .status-upcoming { background: var(--primary-light); color: var(--primary); }
.webinar-card .status-recorded { background: var(--background); color: var(--muted); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

/* ===== Legal Pages ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 24px; margin: 32px 0 16px; color: var(--foreground); }
.legal-content h3 { font-size: 20px; margin: 24px 0 12px; }
.legal-content p { margin-bottom: 16px; color: var(--muted); }
.legal-content ul { margin: 16px 0; padding-left: 24px; }
.legal-content ul li { margin-bottom: 8px; color: var(--muted); }

/* ===== Footer ===== */
.footer { background: var(--foreground); color: rgba(255,255,255,0.7); }
.footer-newsletter {
  background: var(--gradient-primary); padding: 48px 0;
}
.footer-newsletter h3 { font-size: 24px; color: #fff; margin-bottom: 8px; }
.footer-newsletter p { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input {
  padding: 12px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); color: #fff; font-size: 14px; width: 280px;
  font-family: var(--font-body);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-portal {
  background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-portal h4 { font-size: 16px; color: #fff; }
.footer-portal p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-main { padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin: 16px 0; max-width: 360px; }
.footer-social { display: flex; gap: 10px; margin: 20px 0; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255,255,255,0.08); display: flex;
  align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
  font-size: 16px; transition: all 0.3s;
}
.footer-social a:hover { color: #fff; transform: translateY(-2px); }
.footer-social a.fb:hover { background: #1877f2; }
.footer-social a.ig:hover { background: #e4405f; }
.footer-social a.tw:hover { background: #1da1f2; }
.footer-social a.li:hover { background: #0a66c2; }
.footer-social a.yt:hover { background: #ff0000; }
.footer-contact { margin-top: 16px; }
.footer-contact a, .footer-contact div { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; margin-bottom: 12px; }
.footer-contact a:hover { color: var(--secondary); }
.footer h4 { font-size: 16px; color: #fff; margin-bottom: 20px; font-family: var(--font-heading); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.footer ul li a:hover { color: var(--secondary); padding-left: 4px; }
.footer-cta-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 20px; margin-top: 20px;
}
.footer-cta-card h5 { font-size: 14px; color: #fff; margin-bottom: 6px; }
.footer-cta-card p { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-portal-card {
  background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius); padding: 20px; margin-top: 16px;
}
.footer-trust { border-top: 1px solid rgba(255,255,255,0.08); padding: 32px 0; }
.footer-trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--gradient-primary); padding: 80px 0; text-align: center; color: #fff;
}
.cta-section h2 { font-size: 36px; margin-bottom: 16px; }
.cta-section p { font-size: 18px; opacity: 0.8; margin-bottom: 32px; }

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex;
  align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ===== Animations ===== */
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-pulse-glow { animation: pulseGlow 2s infinite; }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); } 50% { box-shadow: 0 0 20px 4px rgba(249,115,22,0.2); } }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-form { margin: 0 auto; }
  .hero h1 { font-size: 36px; }
  .hero-stats { justify-content: center; }
  .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  .section-heading { font-size: 28px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero { padding: 130px 0 60px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-newsletter form { flex-direction: column; }
  .footer-newsletter input { width: 100%; }
  .trusted-logos { gap: 24px; }
  .blog-detail .share-buttons { flex-wrap: wrap; }
  .dashboard-tabs { overflow-x: auto; }
  .top-bar .flex-between { flex-direction: column; gap: 4px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero-form { padding: 24px; }
  .section-heading { font-size: 24px; }
  .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .login-card { padding: 24px; }
}

/* ===== WordPress Specific ===== */
.wp-block-image { margin: 24px 0; }
.wp-block-image img { border-radius: 8px; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px; }
