/*
Theme Name: English Hujur Academy
Theme URI: https://englishhujuracademy.online
Author: English Hujur Academy
Author URI: https://englishhujuracademy.online
Description: A professional dark-themed WordPress theme for English Hujur Academy — an online 1-to-1 Spoken English coaching platform for Bangladeshi expats worldwide. Fully compatible with Elementor Free.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: english-hujur-academy
Tags: education, dark, one-column, two-columns, custom-header, custom-menu, featured-images, full-width-template, theme-options, translation-ready, elementor
*/

/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --navy: #0B1437;
  --navy2: #0f1b4d;
  --navy3: #112056;
  --blue: #1E6FDB;
  --blue2: #3B8FF5;
  --ice: #B5D4F4;
  --white: #fff;
  --muted: #8BA7C9;
  --accent: #F4C542;
  --card: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.09);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--white);
}

ul, ol {
  list-style: none;
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

strong {
  color: var(--white);
  font-weight: 600;
}

/* =============================================
   LAYOUT
============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

/* =============================================
   HEADER / NAVIGATION
============================================= */
.site-header {
  background: rgba(11, 20, 55, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo img {
  height: 42px;
  display: block;
}

.site-logo a {
  display: inline-block;
}

/* Desktop Navigation */
.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.main-navigation a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: var(--white);
}

.main-navigation .nav-cta a,
.nav-cta-link {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.46rem 1.3rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.main-navigation .nav-cta a:hover,
.nav-cta-link:hover {
  background: var(--blue2) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: transparent;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Navigation */
.mobile-navigation {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(11, 20, 55, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 9998;
  padding: 1.5rem 5%;
}

.mobile-navigation.open {
  display: block;
}

.mobile-navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-navigation a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-navigation a:hover {
  color: var(--white);
}

/* =============================================
   BUTTONS
============================================= */
.btn-primary,
.wp-block-button__link,
.button {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  color: var(--white) !important;
}

.btn-ghost {
  background: transparent;
  color: var(--ice) !important;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--card);
  color: var(--white) !important;
}

.enroll-btn {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  transition: background 0.2s;
  display: inline-block;
}

.enroll-btn:hover {
  background: var(--blue2);
  color: var(--white) !important;
}

/* =============================================
   SECTION COMMON STYLES
============================================= */
section {
  padding: 5rem 5%;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-sub {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.75;
}

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(30, 111, 219, 0.22) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 90%, rgba(59, 143, 245, 0.1) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 111, 219, 0.18);
  border: 1px solid rgba(59, 143, 245, 0.3);
  color: var(--ice);
  padding: 0.38rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.6s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue2);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.5px;
  margin-bottom: 1.3rem;
  animation: fadeUp 0.6s 0.1s ease both;
  color: var(--white);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.45s ease both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat .num span {
  color: var(--accent);
}

.hero-stat .lbl {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.stats-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  align-self: center;
}

/* =============================================
   YOUTUBE SECTION
============================================= */
.yt-section {
  padding: 5rem 5%;
  text-align: center;
  background: var(--navy3);
}

.yt-wrap {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.yt-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* =============================================
   DEMO CLASS SECTION
============================================= */
.demo-section {
  padding: 5rem 5%;
  text-align: center;
  background: var(--navy);
}

.demo-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2rem;
}

.demo-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.demo-box p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
  padding: 5rem 5%;
  background: var(--navy);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}

.about-img-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(30, 111, 219, 0.4), transparent 60%);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 20, 55, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ice);
}

.about-content .section-label {
  text-align: left;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.about-content p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-content p.bn {
  font-size: 0.93rem;
  line-height: 1.9;
}

.exp-chips {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.38rem 1rem;
  font-size: 0.82rem;
  color: var(--ice);
  font-weight: 500;
}

/* =============================================
   FEATURES SECTION
============================================= */
.features-section {
  background: var(--navy3);
  padding: 5rem 5%;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-header .section-sub {
  margin: 0 auto;
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.7rem;
  transition: border-color 0.25s, transform 0.2s;
}

.feat-card:hover {
  border-color: rgba(59, 143, 245, 0.4);
  transform: translateY(-4px);
}

.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(30, 111, 219, 0.2);
  border: 1px solid rgba(59, 143, 245, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}

.feat-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--white);
}

.feat-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* =============================================
   COURSES SECTION
============================================= */
.courses-section {
  padding: 5rem 5%;
  background: var(--navy);
}

.courses-header {
  text-align: center;
  margin-bottom: 3rem;
}

.courses-header .section-sub {
  margin: 0 auto;
}

.courses-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.course-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}

.course-card:hover {
  border-color: rgba(59, 143, 245, 0.4);
  transform: translateY(-4px);
}

.course-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
}

.course-body {
  padding: 1.4rem;
}

.course-tag {
  display: inline-block;
  background: rgba(30, 111, 219, 0.2);
  border: 1px solid rgba(59, 143, 245, 0.3);
  color: var(--ice);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.course-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: var(--white);
}

.course-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

/* =============================================
   COUNTRIES SECTION
============================================= */
.countries-section {
  background: var(--navy3);
  padding: 5rem 5%;
}

.countries-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  max-width: 900px;
  margin: 2rem auto 0;
}

.pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}

.pill:hover {
  border-color: rgba(59, 143, 245, 0.4);
  background: rgba(30, 111, 219, 0.1);
}

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
  padding: 5rem 5%;
  text-align: center;
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  padding: 2.5rem 5%;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--navy);
}

.footer-logo img {
  height: 36px;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

.footer-credits {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: right;
}

/* Elementor header/footer canvas */
.elementor-location-header .site-header,
.elementor-location-footer .site-footer {
  all: unset;
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* =============================================
   WORDPRESS CORE STYLES
============================================= */

/* Alignment */
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; }

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 0;
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 99999;
}

.skip-link:focus {
  top: 0;
}

/* WordPress posts */
.entry-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem 5% 4rem;
}

.entry-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.entry-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.entry-content a {
  color: var(--blue2);
  text-decoration: underline;
}

.entry-content a:hover {
  color: var(--ice);
}

.entry-content blockquote {
  border-left: 3px solid var(--blue);
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: var(--ice);
  font-style: italic;
}

/* Archive / Blog */
.archive-section {
  padding: 6rem 5% 4rem;
}

.archive-header {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.posts-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}

.post-card:hover {
  border-color: rgba(59, 143, 245, 0.4);
  transform: translateY(-4px);
}

.post-card .post-thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.post-card-body {
  padding: 1.4rem;
}

.post-card h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.post-card h2 a {
  color: var(--white);
  text-decoration: none;
}

.post-card h2 a:hover {
  color: var(--ice);
}

.post-card p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 2rem 0;
}

.page-numbers {
  color: var(--muted);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* =============================================
   ELEMENTOR OVERRIDES
============================================= */
.elementor-section {
  background: transparent;
}

.elementor-page .site-header,
.elementor-page .site-footer {
  display: block;
}

/* Elementor canvas */
body.elementor-page-template-canvas .site-header,
body.elementor-page-template-canvas .site-footer {
  display: none;
}

/* =============================================
   WIDGET AREA
============================================= */
.widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.widget a {
  color: var(--muted);
  text-decoration: none;
}

.widget a:hover {
  color: var(--white);
}

/* =============================================
   FORMS
============================================= */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: rgba(59, 143, 245, 0.5);
}

input[type="submit"] {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

input[type="submit"]:hover {
  background: var(--blue2);
  transform: translateY(-2px);
}

/* =============================================
   SCROLL ANIMATION
============================================= */
.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .about-inner {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .main-navigation ul {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img-wrap img {
    aspect-ratio: 1;
  }

  .hero-stats .stats-divider {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  section {
    padding: 4rem 5%;
  }

  .hero-section {
    padding: 6rem 5% 4rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
