/* ========================================
   CHEEMA EDU ZONE - MAIN STYLESHEET
   ======================================== */

/* CSS Variables */
:root {
  --primary: #1a5f2a;
  --primary-dark: #0d3d18;
  --primary-light: #2d8a3e;
  --secondary: #f59e0b;
  --secondary-dark: #d97706;
  --accent: #10b981;
  --dark: #1f2937;
  --darker: #111827;
  --light: #f9fafb;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Marquee Bars */
.marquee-bar {
  padding: 6px 0;
  overflow: hidden;
  position: relative;
  z-index: 1001;
}

.marquee-bar-top {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.marquee-bar-brands {
  background: var(--primary);
  padding: 10px 0;
}

.marquee-bar-brands .marquee-item {
  color: var(--white);
}

.marquee-bar-brands .marquee-item i {
  color: var(--secondary);
}

.marquee-bar-brands .marquee-divider {
  color: rgba(255,255,255,0.4);
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0 24px;
}

.marquee-item i {
  color: var(--primary);
  font-size: 0.75rem;
}

.marquee-divider {
  color: var(--gray-300);
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .marquee-bar {
    padding: 8px 0;
  }

  .marquee-item {
    font-size: 0.8rem;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .marquee-item {
    font-size: 0.75rem;
    padding: 0 16px;
  }

  .marquee-item i {
    display: none;
  }
}

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 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 95, 42, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 95, 42, 0.4);
}

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

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

.btn-gold {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

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

.nav-logo-text h1 {
  font-size: 1.25rem;
  color: var(--primary);
  line-height: 1.2;
}

.nav-logo-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 61, 24, 0.9) 0%, rgba(26, 95, 42, 0.7) 50%, rgba(45, 138, 62, 0.5) 100%);
  z-index: 2;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 30%;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 40px 16px;
  }

  .marquee-bar-brands {
    padding: 8px 0;
  }

  .marquee-bar-brands .marquee-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .marquee-bar-brands {
    display: none;
  }
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--white);
}

.hero-badge i {
  color: var(--secondary);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero h1 span {
  color: var(--secondary);
}

.hero-tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.hero-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 450px;
  height: 550px;
}

.hero-image-main {
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 100px 100px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  border: 5px solid rgba(255, 255, 255, 0.3);
}

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

.hero-float-card-1 {
  top: 20%;
  left: -60px;
  animation-delay: 0s;
}

.hero-float-card-2 {
  bottom: 20%;
  right: -60px;
  animation-delay: 1s;
}

.hero-float-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.hero-float-card-text h4 {
  font-size: 0.9rem;
  color: var(--dark);
}

.hero-float-card-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-bg {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  font-size: 1.1rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-features {
  text-align: left;
  margin-bottom: 24px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.service-features li i {
  color: var(--accent);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
}

.service-link:hover {
  gap: 12px;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text h2 span {
  color: var(--secondary);
}

.about-text > p {
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}

.about-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-feature span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Videos Section */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.video-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.video-thumbnail {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary);
  color: var(--white);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.video-content {
  padding: 24px;
}

.video-content h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.video-content p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
}

.video-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

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

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-rating i {
  color: var(--secondary);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Booking Section */
.book-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.book-info h2 {
  margin-bottom: 20px;
}

.book-info h2 span {
  color: var(--secondary);
}

.book-info > p {
  margin-bottom: 32px;
}

.book-contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.book-contact-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.book-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.book-contact-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.book-contact-text p {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.book-form {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.book-form h3 {
  margin-bottom: 8px;
}

.book-form > p {
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 95, 42, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920') center/cover;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section h2 span {
  color: var(--secondary);
}

.cta-section > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

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

/* Footer */
.footer {
  background: var(--darker);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--gray-400);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 8px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gray-400);
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--secondary);
  margin-top: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

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

.footer-bottom-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
}

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

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--dark);
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Chatbot */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  max-height: 500px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 998;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-container.active {
  display: flex;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-header-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.chatbot-header-info h4 {
  color: var(--white);
  font-size: 1rem;
}

.chatbot-header-info span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 8px;
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: var(--gray-100);
}

.chatbot-message {
  margin-bottom: 16px;
  animation: fadeInUp 0.3s ease;
}

.chatbot-message.bot {
  display: flex;
  gap: 10px;
}

.chatbot-message.bot img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.chatbot-message.user {
  justify-content: flex-end;
}

.chatbot-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.chatbot-message.bot .chatbot-bubble {
  background: var(--white);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
}

.chatbot-message.user .chatbot-bubble {
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chatbot-input {
  padding: 16px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 12px;
}

.chatbot-input input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.chatbot-input input:focus {
  border-color: var(--primary);
}

.chatbot-input button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.chatbot-input button:hover {
  background: var(--primary-dark);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 70px);
  background: var(--white);
  padding: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  display: block;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  text-align: left;
}

.mobile-menu a:hover {
  color: var(--primary);
  background: var(--gray-100);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-content,
  .book-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-container {
    height: 70px;
  }

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

  .nav-logo-text h1 {
    font-size: 1rem;
  }

  .nav-logo-text span {
    display: none;
  }

  .nav-menu,
  .nav-cta .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: transparent;
    border-radius: 8px;
  }

  .mobile-menu-btn:hover {
    background: var(--gray-100);
  }

  .mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
  }

  .mobile-menu-btn span:nth-child(2) {
    margin: 5px 0;
  }

  .section {
    padding: 60px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

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

  .services-grid,
  .videos-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .video-thumbnail {
    height: 180px;
  }

  .video-card {
    margin-bottom: 0;
  }

  .testimonial-card {
    margin-bottom: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .book-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .book-info {
    order: 2;
  }

  .book-form {
    order: 1;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: 1;
  }

  .about-text {
    order: 2;
  }

  .hero-image-wrapper {
    display: none;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

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

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

  .chatbot-container {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
  }

  .nav-logo-text h1 {
    font-size: 0.9rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .book-form {
    padding: 20px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
    font-size: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 24px 20px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .page-header {
    padding: 160px 0 60px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .about-features {
    gap: 12px;
  }

  .book-contact-item {
    padding: 16px;
  }

  .book-contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .footer {
    padding: 60px 0 24px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer h4 {
    font-size: 1rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .chatbot-container {
    width: calc(100% - 32px);
    right: 16px;
    left: 16px;
    bottom: 90px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .nav-container {
    padding: 0 12px;
  }

  .nav-logo img {
    width: 36px;
    height: 36px;
  }

  .nav-logo-text h1 {
    font-size: 0.85rem;
  }

  .mobile-menu-btn {
    width: 40px;
    height: 40px;
  }

  .mobile-menu-btn span {
    width: 18px;
  }

  .hero-content {
    padding: 90px 16px 50px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .section {
    padding: 50px 0;
  }

  .container {
    padding: 0 16px;
  }

  .service-card {
    padding: 20px 16px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* Prevent horizontal overflow globally */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    overflow-x: hidden;
  }

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

  /* Fix any elements that might overflow */
  .hero-shapes {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(135deg, rgba(13, 61, 24, 0.95) 0%, rgba(26, 95, 42, 0.85) 100%);
  }

  .footer-social {
    justify-content: flex-start;
  }

  .testimonial-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .hero-float-card {
    display: none;
  }

  /* Page Header Mobile Fixes */
  .page-header {
    padding: 100px 0 60px;
  }

  .page-header-content {
    padding: 0 20px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .page-header p {
    font-size: 0.95rem;
    padding: 0 20px;
  }

  .page-header-breadcrumb {
    font-size: 0.85rem;
    gap: 8px;
  }

  /* Services Grid Mobile Fix */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-features {
    text-align: left;
  }

  /* Book Form Mobile Fix */
  .book-form {
    margin: 0 -16px;
    border-radius: 0;
    padding: 24px 20px;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1920') center/cover;
  opacity: 0.1;
}

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

.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.page-header-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.page-header-breadcrumb a:hover {
  color: var(--white);
}

.page-header-breadcrumb span {
  color: var(--secondary);
}/* Responsive Fixes End */
