/* ============================================
   ZEE ACADEMY - Premium Modern Style
   ============================================ */

/* CSS Variables */
:root {
  --primary: #0B3D91;
  --primary-dark: #082d6b;
  --secondary: #1E90FF;
  --accent: #4FC3F7;
  --gradient: linear-gradient(135deg, #1E90FF 0%, #0B3D91 100%);
  --gradient-hover: linear-gradient(135deg, #2da3ff 0%, #0B3D91 100%);
  
  --white: #ffffff;
  --bg-light: #f8fafc;
  --bg-soft: #f1f5f9;
  --text-dark: #0f172a;
  --text: #334155;
  --text-muted: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 64px rgba(11, 61, 145, 0.15);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --font-display: '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;
  scroll-padding-top: 80px;
}

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

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-white {
  color: var(--white) !important;
  -webkit-text-fill-color: initial;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  transition: var(--transition);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.navbar.scrolled::before {
  opacity: 1;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand .logo-img {
  height: 40px;
  width: auto;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(30, 144, 255, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 144, 255, 0.4);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(30, 144, 255, 0.15);
  top: -200px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(79, 195, 247, 0.1);
  bottom: -150px;
  left: -100px;
  animation-delay: -2s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(11, 61, 145, 0.1);
  top: 40%;
  left: 30%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(30, 144, 255, 0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30, 144, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 144, 255, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid rgba(0,0,0,0.1);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.hero-trust {
  font-size: 14px;
  color: var(--text-muted);
}

.trust-logos {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.trust-logos span {
  font-weight: 600;
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-card {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.hero-card i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 144, 255, 0.1);
  color: var(--secondary);
  border-radius: var(--radius-sm);
}

.hero-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.card-1 {
  top: 20px;
  right: -20px;
}

.card-2 {
  bottom: 40px;
  left: -20px;
  animation-delay: -3s;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--primary);
  padding: 24px 0;
}

.trust-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.trust-item i {
  font-size: 20px;
  color: var(--accent);
}

.trust-item span {
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.light .section-title,
.section-header.light .section-subtitle,
.section-header.light .section-tag {
  color: var(--white);
}

.section-header.light .section-tag {
  color: var(--accent);
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  background: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 144, 255, 0.2);
}

.why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 144, 255, 0.1);
  color: var(--secondary);
  font-size: 24px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   COURSES SECTION
   ============================================ */
.courses-section {
  background: var(--white);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
}

.course-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.course-card.featured {
  border: 2px solid var(--secondary);
}

.featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gradient);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  z-index: 2;
}

.course-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.course-content {
  padding: 24px;
}

.course-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.course-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.course-price .price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.course-price .duration {
  font-size: 14px;
  color: var(--text-muted);
}

.course-features {
  margin-bottom: 16px;
}

.course-features li {
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-features li i {
  color: var(--secondary);
  font-size: 12px;
}

.course-internship {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 144, 255, 0.1);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.career-paths {
  margin-bottom: 16px;
}

.career-label {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.career-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.career-tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg-soft);
  color: var(--text);
  border-radius: 50px;
}

.btn-course {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: var(--bg-soft);
  color: var(--text-dark);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.btn-course:hover {
  background: var(--gradient);
  color: var(--white);
}

.btn-course.btn-primary {
  background: var(--gradient);
  color: var(--white);
}

/* ============================================
   INTERNSHIP SECTION
   ============================================ */
.internship-section {
  background: var(--gradient);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.internship-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.internship-section .container {
  position: relative;
  z-index: 1;
}

.internship-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 48px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(255,255,255,0.3);
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--secondary);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.timeline-content {
  color: var(--white);
}

.timeline-content h4 {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 4px;
  font-weight: 500;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.internship-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.benefit-item i {
  color: #4ade80;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-info span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-rating {
  margin-left: auto;
  color: #fbbf24;
  font-size: 12px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   FEES SECTION
   ============================================ */
.fees-section {
  background: var(--white);
}

.fees-table-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
}

.fees-table th,
.fees-table td {
  padding: 20px 24px;
  text-align: left;
}

.fees-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fees-table td {
  border-bottom: 1px solid var(--bg-soft);
  font-size: 15px;
}

.fees-table tr:last-child td {
  border-bottom: none;
}

.fees-table tr:hover {
  background: var(--bg-light);
}

.fees-table tr.best-value {
  background: rgba(30, 144, 255, 0.05);
}

.fees-table tr.best-value td:first-child {
  position: relative;
}

.course-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.best-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50px;
}

.fees-amount {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.included {
  color: #16a34a;
  font-weight: 500;
}

.btn-table {
  display: inline-block;
  padding: 10px 20px;
  background: var(--bg-soft);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.btn-table:hover {
  background: var(--gradient);
  color: var(--white);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.cta-box {
  position: relative;
  text-align: center;
  padding: 60px 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

.cta-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
}

.cta-circle:first-child {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.cta-circle:last-child {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info .section-tag,
.contact-info .section-title {
  text-align: left;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--secondary);
  font-size: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-details h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-details p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-details a {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.social-links a:hover {
  background: var(--gradient);
  color: var(--white);
}

.map-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.map-placeholder i {
  font-size: 48px;
  color: var(--secondary);
  margin-bottom: 16px;
}

.map-placeholder p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.btn-map {
  display: inline-block;
  padding: 12px 24px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

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

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

/* ============================================
   SCROLL TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--white);
  color: var(--text);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gradient);
  color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-card {
    right: 0;
    left: auto;
  }
  
  .card-2 {
    left: 0;
  }
  
  .why-grid,
  .courses-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .internship-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-line {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .why-grid,
  .courses-grid,
  .testimonials-grid,
  .internship-timeline {
    grid-template-columns: 1fr;
  }
  
  .trust-strip {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .fees-table-wrapper {
    overflow-x: auto;
  }
  
  .fees-table {
    min-width: 600px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .internship-benefits {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .stat-item {
    min-width: 100px;
  }
}
