/*
Theme Name: LEC Institute
Theme URI: https://lecinstitute.in
Author: LEC Institute
Author URI: https://lecinstitute.in
Description: Professional WordPress theme for LEC Institute – Civil Engineering Training Center, Hyderabad. Features payment gateway, course listings, hero section, testimonials, and contact form.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lec-institute
Tags: education, civil-engineering, training, one-page, responsive, dark
*/

/* ========================================
   THEME VARIABLES & RESET
======================================== */
:root {
  --navy: #0a0e1a;
  --navy2: #0f1525;
  --navy3: #141c32;
  --gold: #c8922a;
  --gold2: #e8b84b;
  --gold-light: #f5d78e;
  --copper: #b87333;
  --white: #f8f5ef;
  --gray: #8a9bb5;
  --light-gray: #c5cfe0;
  --accent: #2dd4bf;
  --red: #e05c5c;
  --card-bg: rgba(20, 28, 50, 0.85);
  --border: rgba(200, 146, 42, 0.18);
  --shadow-gold: 0 12px 36px rgba(200, 146, 42, 0.35);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: color 0.2s; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(48px, 6vw, 88px); font-weight: 900; }
h2 { font-size: clamp(32px, 4vw, 54px); }
h3 { font-size: 24px; }
p { color: var(--gray); font-size: 15px; line-height: 1.8; }

.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   LAYOUT UTILITIES
======================================== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }

.section-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-tag.center { justify-content: center; }
.section-tag.center::before { display: none; }

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   BUTTONS
======================================== */
.btn-primary, .btn-primary:visited {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--navy);
}
.btn-outline, .btn-outline:visited {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(200, 146, 42, 0.4);
  color: var(--gold2);
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(200, 146, 42, 0.1);
  border-color: var(--gold);
  color: var(--gold2);
  transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; }

/* ========================================
   NAVIGATION
======================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
#site-header.scrolled .header-inner { padding: 14px 0; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding 0.3s;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 16px; font-weight: 700;
  color: var(--navy);
}
.logo-text span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); line-height: 1;
}
.logo-text span:last-child {
  display: block;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.primary-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.primary-menu a {
  color: var(--light-gray);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}
.primary-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.primary-menu a:hover { color: var(--gold); }
.primary-menu a:hover::after { width: 100%; }
.menu-cta {
  background: linear-gradient(135deg, var(--gold), var(--copper)) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
}
.menu-cta::after { display: none !important; }
.menu-cta:hover { box-shadow: 0 6px 20px rgba(200,146,42,0.4); transform: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 0 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(200,146,42,0.06);
  color: var(--light-gray);
  font-size: 15px;
}
.mobile-menu a:hover { color: var(--gold2); }

/* ========================================
   HERO SECTION
======================================== */
#hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,146,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(45,212,191,0.05) 0%, transparent 50%),
    var(--navy);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,146,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,146,42,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}
#hero-canvas { position: absolute; inset: 0; opacity: 0.4; }
.hero-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content { max-width: 660px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.3);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .line1, .hero-title .line3 { color: var(--white); display: block; }
.hero-title .line2 {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 44px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn 1s 0.5s ease both;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 28px;
  text-align: center;
  min-width: 148px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}
.stat-card:hover { transform: translateX(-6px); border-color: var(--gold); }
.stat-num {
  font-family: 'Space Mono', monospace;
  font-size: 34px; font-weight: 700;
  color: var(--gold2); line-height: 1;
}
.stat-label { font-size: 11px; color: var(--gray); margin-top: 6px; letter-spacing: 1px; }

.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 2s 1s ease both;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

/* ========================================
   ABOUT SECTION
======================================== */
#about-section { background: var(--navy2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.blueprint-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0a1628, #0f1e3d);
  border-radius: 20px;
  border: 1px solid rgba(200,146,42,0.2);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blueprint-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,212,191,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,212,191,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.blueprint-ring {
  position: absolute;
  border: 1px solid rgba(45,212,191,0.18);
  border-radius: 50%;
}
.blueprint-ring:nth-child(2) { width: 200px; height: 200px; animation: rotateSlow 20s linear infinite; }
.blueprint-ring:nth-child(3) { width: 130px; height: 130px; animation: rotateSlow 15s linear infinite reverse; }
.blueprint-center {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: rgba(45,212,191,0.7);
  letter-spacing: 2px;
  text-align: center;
  position: relative; z-index: 1;
}
.about-years-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--navy);
  padding: 20px 26px;
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(200,146,42,0.35);
}
.badge-number {
  font-size: 36px;
  font-family: 'Space Mono', monospace;
  display: block; line-height: 1;
}
.badge-text { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(200,146,42,0.04);
  border: 1px solid rgba(200,146,42,0.1);
  transition: border-color 0.2s;
}
.feat-item:hover { border-color: rgba(200,146,42,0.3); }
.feat-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(200,146,42,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.feat-item h4 { font-size: 13px; font-weight: 600; margin-bottom: 2px; font-family: 'DM Sans', sans-serif; }
.feat-item p { font-size: 12px; color: var(--gray); margin: 0; }

/* ========================================
   COURSES SECTION
======================================== */
#courses-section { background: var(--navy); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.course-card {
  background: var(--card-bg);
  border: 1px solid rgba(200,146,42,0.12);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.course-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,146,42,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.course-card:hover::before { transform: scaleX(1); }
.course-card.featured-course {
  background: linear-gradient(160deg, rgba(200,146,42,0.1), var(--card-bg));
  border-color: rgba(200,146,42,0.3);
}
.course-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-popular { background: rgba(200,146,42,0.2); color: var(--gold2); }
.badge-hot { background: rgba(224,92,92,0.15); color: var(--red); }
.badge-new { background: rgba(45,212,191,0.15); color: var(--accent); }
.course-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(200,146,42,0.1);
  border: 1px solid rgba(200,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.course-card h3 {
  font-size: 19px; margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.course-card p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.course-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.meta-pill {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(200,146,42,0.08);
  border: 1px solid rgba(200,146,42,0.2);
  color: var(--gold2);
}

/* ========================================
   PROGRAMS / PRICING
======================================== */
#programs-section { background: var(--navy2); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.program-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.program-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.program-card.popular {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(200,146,42,0.12), var(--card-bg));
}
.program-card.popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 22px;
  border-radius: 0 0 10px 10px;
  font-family: 'DM Sans', sans-serif;
}
.plan-icon { font-size: 38px; margin-bottom: 10px; }
.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  margin: 8px 0 4px;
}
.plan-desc { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
.plan-price { margin-bottom: 28px; }
.price-num {
  font-family: 'Space Mono', monospace;
  font-size: 46px; font-weight: 700;
  color: var(--gold2); line-height: 1;
}
.price-note { font-size: 13px; color: var(--gray); margin-top: 4px; }
.plan-features { text-align: left; margin-bottom: 32px; }
.plan-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--light-gray);
  border-bottom: 1px solid rgba(200,146,42,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  width: 18px;
  flex-shrink: 0;
}
.plan-features li.na { color: var(--gray); }
.plan-features li.na::before { content: '–'; color: var(--gray); }
.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--gray);
}
.pricing-note a { color: var(--gold2); font-weight: 600; }

/* ========================================
   TESTIMONIALS
======================================== */
#testimonials-section { background: var(--navy); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid rgba(200,146,42,0.12);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(200,146,42,0.3); }
.stars { color: var(--gold2); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  color: var(--navy);
  flex-shrink: 0;
}
.reviewer h5 { font-size: 14px; font-weight: 600; font-family: 'DM Sans', sans-serif; }
.reviewer span { font-size: 12px; color: var(--gray); }

/* ========================================
   CONTACT SECTION
======================================== */
#contact-section { background: var(--navy2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 14px;
  background: rgba(200,146,42,0.04);
  border: 1px solid rgba(200,146,42,0.1);
  transition: border-color 0.2s;
}
.contact-item:hover { border-color: rgba(200,146,42,0.3); }
.c-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(200,146,42,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.c-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}
.c-value, .c-value a {
  font-size: 14px;
  color: var(--light-gray);
  transition: color 0.2s;
}
.c-value a:hover { color: var(--gold2); }

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.contact-form-card h3 {
  font-size: 22px; margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,146,42,0.05);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--navy2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(45,212,191,0.08);
  border: 1px solid rgba(45,212,191,0.25);
  border-radius: 12px;
  color: var(--accent);
  font-size: 15px;
  margin-top: 16px;
}

/* ========================================
   PAYMENT MODAL
======================================== */
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(5,8,18,0.92);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.payment-modal {
  background: #0f1525;
  border: 1px solid rgba(200,146,42,0.25);
  border-radius: 24px;
  width: 560px;
  max-width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}
.modal-overlay.active .payment-modal { transform: scale(1); }
.modal-header {
  padding: 28px 32px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-logo { display: flex; align-items: center; gap: 12px; }
.modal-logo .logo-icon { width: 38px; height: 38px; font-size: 13px; border-radius: 8px; }
.modal-logo span { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; }
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray); font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(200,146,42,0.15); color: var(--gold); }
.modal-course-summary {
  margin: 24px 32px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(200,146,42,0.06);
  border: 1px solid rgba(200,146,42,0.15);
}
.modal-course-summary h3 { font-size: 18px; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.modal-course-summary p { font-size: 13px; color: var(--gray); margin: 0; }
.modal-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 12px; }
.modal-amount {
  font-family: 'Space Mono', monospace;
  font-size: 30px; font-weight: 700;
  color: var(--gold2);
}
.modal-gst { font-size: 12px; color: var(--gray); }
.modal-body { padding: 0 32px 32px; }

/* Payment method tabs */
.payment-methods-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 10px;
  display: block;
}
.method-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.method-tab {
  padding: 10px 6px;
  border-radius: 10px;
  border: 1.5px solid rgba(200,146,42,0.15);
  background: transparent;
  color: var(--gray);
  font-size: 11px; font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.method-icon { font-size: 18px; }
.method-tab:hover { border-color: rgba(200,146,42,0.4); color: var(--light-gray); }
.method-tab.active { border-color: var(--gold); background: rgba(200,146,42,0.1); color: var(--gold2); }

/* Card number formatting */
.card-input-wrap { position: relative; }
.card-input-wrap input { padding-right: 60px; font-family: 'Space Mono', monospace; letter-spacing: 1px; }
.card-brand { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 20px; }

/* UPI apps */
.upi-apps { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.upi-app {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(200,146,42,0.15);
  background: rgba(255,255,255,0.03);
  font-size: 12px; cursor: pointer;
  color: var(--light-gray);
  transition: all 0.2s;
}
.upi-app:hover { border-color: var(--gold); color: var(--gold2); }
.upi-app.selected { border-color: var(--gold); background: rgba(200,146,42,0.1); color: var(--gold2); }

/* Net banking */
.bank-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bank-btn {
  padding: 12px 8px;
  border-radius: 10px;
  border: 1px solid rgba(200,146,42,0.12);
  background: rgba(255,255,255,0.03);
  text-align: center; cursor: pointer;
  font-size: 12px; color: var(--gray);
  transition: all 0.2s;
}
.bank-btn:hover { border-color: var(--gold); color: var(--gold2); }
.bank-btn.selected { border-color: var(--gold); background: rgba(200,146,42,0.1); color: var(--gold2); }
.bank-emoji { font-size: 20px; display: block; margin-bottom: 4px; }

.secure-ssl {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 11px; color: var(--gray);
  margin: 18px 0;
}
.ssl-green { color: var(--accent); }
.pay-now-btn {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  border: none; border-radius: 12px;
  font-size: 16px; font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
}
.pay-now-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(200,146,42,0.45); }

/* Payment success */
.payment-success-state {
  text-align: center;
  padding: 50px 32px;
  display: none;
}
.success-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(45,212,191,0.12);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  animation: popIn 0.5s ease;
}
.success-ref {
  font-family: 'Space Mono', monospace;
  font-size: 13px; color: var(--gold2);
  margin-top: 16px; display: block;
}

/* Processing overlay */
.processing-state {
  position: fixed; inset: 0;
  z-index: 99999;
  background: rgba(5,8,18,0.97);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.processing-state.show { display: flex; }
.spinner {
  width: 60px; height: 60px;
  border: 3px solid rgba(200,146,42,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.processing-text { font-size: 16px; color: var(--gray); }

/* ========================================
   FOOTER
======================================== */
#site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(200,146,42,0.1);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-about p { font-size: 14px; line-height: 1.85; margin: 16px 0 24px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(200,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.social-link:hover { background: rgba(200,146,42,0.12); border-color: var(--gold); }
.footer-col-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--gray); font-size: 14px; }
.footer-links a:hover { color: var(--gold2); }
.newsletter-note { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: 8px; color: var(--white);
  font-size: 14px; outline: none;
}
.newsletter-form button {
  padding: 12px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  border: none; border-radius: 8px;
  color: var(--navy); font-weight: 700;
  cursor: pointer; transition: opacity 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.newsletter-form button:hover { opacity: 0.85; }
.footer-bottom {
  border-top: 1px solid rgba(200,146,42,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--gray);
}
.footer-bottom a { color: var(--gold2); }

/* ========================================
   KEYFRAMES
======================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(1.5); } }
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .hero-stats-col { display: none; }
  .programs-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { gap: 50px; }
  .contact-grid { gap: 50px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 60px 0; }
  .primary-menu { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .method-tabs { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { max-width: 100%; }
  #hero-section { padding: 100px 0 60px; }
}

/* ========================================
   WORDPRESS SPECIFIC
======================================== */
.wp-block-image img { border-radius: 12px; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { text-align: center; }
.wp-caption-text { font-size: 13px; color: var(--gray); margin-top: 8px; }
.entry-content a { color: var(--gold2); }
.entry-content a:hover { color: var(--gold); }
