@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-blue: #123B8F;
  --deep-blue: #08265F;
  --primary-orange: #FF7A00;
  --bright-orange: #FF9418;
  --white: #FFFFFF;
  --light-blue: #F4F7FC;
  --dark-text: #101828;
  --muted-text: #667085;
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  
  --transition-fast: 0.3s ease;
  --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 12px rgba(8, 38, 95, 0.04);
  --shadow-md: 0 10px 30px rgba(8, 38, 95, 0.08);
  --shadow-lg: 0 20px 40px rgba(8, 38, 95, 0.12);
  
  --section-padding: 100px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

.eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary-orange);
  display: block;
  margin-bottom: 1rem;
}

p {
  color: var(--muted-text);
  font-size: 1.125rem;
}

.text-highlight {
  color: var(--primary-orange);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--bright-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-blue);
  border: 1px solid rgba(18, 59, 143, 0.2);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  background-color: rgba(18, 59, 143, 0.05);
}

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

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
  background-color: transparent;
}

header.scrolled {
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 68px;
  transition: var(--transition-fast);
}

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

.nav-links a {
  font-weight: 500;
  color: #000;
  position: relative;
  transition: color 0.3s ease;
}

header.scrolled .nav-links a {
  color: var(--dark-text);
}

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

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

.nav-cta {
  display: none;
}
@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-fast);
}

header.scrolled .mobile-menu-btn span {
  background-color: var(--dark-text);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text);
}

/* Sections */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-color: var(--light-blue);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(18,59,143,0.05) 0%, rgba(244,247,252,0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
}

.hero-description {
  margin: 24px 0 40px;
  font-size: 1.25rem;
  max-width: 500px;
}

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

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  aspect-ratio: 4/5;
  background: var(--deep-blue);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
  border-radius: 24px;
  top: 24px;
  left: 24px;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.2);
}

.fc-1 {
  bottom: 40px;
  left: -40px;
}

.fc-2 {
  top: 40px;
  right: -30px;
}

.fc-icon {
  width: 48px;
  height: 48px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.fc-text h4 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--dark-text);
  line-height: 1.2;
}

.fc-text p {
  font-size: 0.875rem;
  margin: 0;
}

/* Stats Section */
.stats-section {
  background-color: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(0,0,0,0.1);
}

.stat-item h3 {
  font-size: 3.5rem;
  color: var(--deep-blue);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-item p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--muted-text);
}

/* Courses Section */
.courses-section {
  background-color: var(--light-blue);
}

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

.course-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid transparent;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(18, 59, 143, 0.05);
}

.course-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(18, 59, 143, 0.05);
  position: absolute;
  top: 24px;
  right: 32px;
  transition: var(--transition-fast);
  line-height: 1;
}

.course-card:hover .course-number {
  color: rgba(255, 122, 0, 0.1);
}

.course-card h3 {
  margin-bottom: 16px;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.course-card p {
  margin-bottom: 32px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.course-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-blue);
  position: relative;
  z-index: 2;
}

.course-link svg {
  transition: var(--transition-fast);
}

.course-card:hover .course-link {
  color: var(--primary-orange);
}

.course-card:hover .course-link svg {
  transform: translateX(6px);
}

/* Horizontal Scroll Section (Pinned) */
.horizontal-scroll-section {
  background-color: var(--deep-blue);
  color: var(--white);
  padding: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hs-wrapper {
  display: flex;
  width: 400vw;
  height: 100%;
}

.hs-panel {
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 5vw;
}

.hs-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hs-text h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.hs-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.hs-benefits {
  margin-bottom: 32px;
}

.hs-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.hs-benefits li::before {
  content: '✓';
  color: var(--primary-orange);
  font-weight: bold;
}

.hs-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  aspect-ratio: 4/3;
  position: relative;
}

.hs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why Next Gen */
.why-section {
  background-color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-left h2 {
  margin-bottom: 24px;
}

.why-left p {
  margin-bottom: 40px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-feature {
  padding: 24px;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  position: relative;
  background: var(--light-blue);
}

.why-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background-color: var(--primary-orange);
  transition: var(--transition-fast);
  border-radius: 0 4px 4px 0;
}

.why-feature:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.why-feature.active {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 59, 143, 0.05);
}

.why-feature.active::before {
  height: 60%;
}

.why-feature h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-feature h4 span {
  font-size: 0.875rem;
  color: var(--primary-orange);
  font-weight: 700;
}

.why-feature p {
  margin: 0;
  font-size: 1rem;
  display: none;
}

.why-feature.active p {
  display: block;
  margin-top: 12px;
}

.why-visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.why-visual img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.why-visual img.active {
  opacity: 1;
}

/* Results Section */
.results-section {
  background-color: var(--light-blue);
  overflow: hidden;
}

.results-display {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 64px;
}

.center-student {
  width: 350px;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.center-student img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.achievement-card {
  position: absolute;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  width: 260px;
  border-left: 4px solid var(--primary-orange);
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: scale(1.05);
}

.ac-1 { top: 10%; left: 10%; }
.ac-2 { bottom: 15%; left: 5%; }
.ac-3 { top: 20%; right: 10%; }
.ac-4 { bottom: 10%; right: 5%; }

.achievement-card .rank {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 4px;
  line-height: 1;
}

.achievement-card .name {
  font-weight: 700;
  font-size: 1.2rem;
}

.achievement-card .exam {
  color: var(--muted-text);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Before / After Section */
.transformation-section {
  background-color: var(--deep-blue);
  color: var(--white);
  padding: 120px 0;
}

.transformation-section .section-header h2 {
  color: var(--white);
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}

.transformation-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--primary-orange);
  background: var(--deep-blue);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
  border: 4px solid var(--white);
}

.state-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.state-card h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 32px;
}

.state-card.after {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 122, 0, 0.3);
}

.state-card.after h3 {
  color: var(--primary-orange);
}

.state-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
}

.state-list.before li::before {
  content: '✕';
  color: #ff4d4f;
  font-weight: bold;
  font-size: 1.2rem;
}

.state-list.after li::before {
  content: '✓';
  color: #52c41a;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--white);
  overflow: hidden;
}

.testimonial-wrapper {
  position: relative;
  width: 100%;
}

.testimonial-carousel {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  width: max-content;
}

.testimonial-card {
  width: 450px;
  background: var(--light-blue);
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  position: relative;
}

.testimonial-quote {
  font-size: 1.25rem;
  color: var(--dark-text);
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testimonial-quote::before {
  content: '"';
  font-size: 6rem;
  color: rgba(18, 59, 143, 0.05);
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
  z-index: -1;
  font-family: Georgia, serif;
}

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

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

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--primary-orange);
  font-weight: 600;
}

/* Faculty Section */
.faculty-section {
  background-color: var(--light-blue);
}

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

.faculty-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--white);
}

.faculty-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.faculty-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 24px;
  background: linear-gradient(to top, rgba(8,38,95,0.9), transparent);
  color: var(--white);
  transform: translateY(20px);
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.faculty-card:hover img {
  transform: scale(1.05);
}

.faculty-card:hover .faculty-info {
  transform: translateY(0);
  opacity: 1;
}

.faculty-info h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.faculty-info p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

/* Video Section */
.video-section {
  background-color: var(--white);
  padding: 120px 0;
}

.video-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  max-width: 1000px;
  margin: 0 auto;
}

.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-container:hover img {
  transform: scale(1.02);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.7);
  animation: pulse-orange 2s infinite;
  z-index: 2;
  transition: var(--transition-fast);
}

.video-container:hover .play-btn {
  background: var(--bright-orange);
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-blue);
  color: var(--white);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23ffffff" fill-opacity="0.2"/></svg>') repeat;
  opacity: 0.5;
}

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

.cta-section h2 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 3rem;
}

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

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

/* Form Section */
.form-section {
  background-color: var(--light-blue);
  padding: 120px 0;
}

.form-container {
  background: var(--white);
  border-radius: 24px;
  padding: 64px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--light-blue);
  width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(18, 59, 143, 0.1);
}

.form-submit {
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.contact-icon {
  width: 64px;
  height: 64px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h4 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.contact-details p, .contact-details a {
  color: var(--muted-text);
  margin-bottom: 4px;
  display: block;
}

.contact-details a:hover {
  color: var(--primary-orange);
}

.contact-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1/1;
  background: #eee;
}

/* Footer */
footer {
  background-color: var(--deep-blue);
  color: var(--white);
  padding: 80px 0 40px;
}

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

.footer-brand img {
  height: 60px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  max-width: 300px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

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

.social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-2px);
}

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

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

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

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

/* Custom Cursor (Desktop) */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  display: none;
}

@media (pointer: fine) {
  .custom-cursor {
    display: block;
  }
}

.custom-cursor.hovering {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 122, 0, 0.1);
}

/* Utilities */
.hidden {
  display: none !important;
}


/* ===============================
   CONTACT FOOTER
================================ */

.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 18px;
}

.footer-contact li a {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: rgba(255,255,255,0.75);

    text-decoration: none;

    font-size: 14px;
    line-height: 1.6;

    transition: all 0.3s ease;
}


/* ICON */

.footer-contact .contact-icon {
    flex: 0 0 36px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,121,0,0.12);

    border: 1px solid rgba(255,121,0,0.35);

    border-radius: 9px;

    color: #ff7900;

    box-sizing: border-box;
}


.footer-contact .contact-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;

    stroke-linejoin: round;
}


/* HOVER */

.footer-contact li a:hover {
    color: #ffffff;
}

.footer-contact li a:hover .contact-icon {
    background: #ff7900;

    color: #ffffff;

    border-color: #ff7900;

    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 600px) {

    .footer-contact li a {
        font-size: 13px;
    }

    .footer-contact .contact-icon {
        flex: 0 0 34px;

        width: 34px;
        height: 34px;
    }

}

/* ===============================
   INTERACTIVE ELEMENTS
================================ */

/* Scroll Progress */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 9999;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--primary-orange);
  transition: width 0.1s;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-blue);
  padding: 100px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-text);
  font-family: inherit;
  transition: var(--transition-fast);
}

.faq-question svg {
  color: var(--primary-orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question {
  color: var(--primary-blue);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--white);
}

.faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
  font-size: 1rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--bright-orange);
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.6);
}

/* Draggable Testimonial Carousel adjustments */
.testimonial-carousel {
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.testimonial-carousel:active {
  cursor: grabbing;
}

/* Enable scrolling for the wrapper */
.testimonial-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.testimonial-wrapper:active {
  cursor: grabbing;
}

.testimonial-wrapper::-webkit-scrollbar {
  display: none;
}