/* -------------------------------------------------------------
   DIGITAL CAMPUS SOLUTIONS - PREMIUM CSS DESIGN SYSTEM
   Theme: Warm Cream, Editorial Serif, Organic Accents, Micro-Animations
   ------------------------------------------------------------- */

/* Variables & Design Tokens */
:root {
  --bg-primary: #FAF8F5;       /* Warm cream background */
  --bg-secondary: #F4EFEB;     /* Darker cream for contrast */
  --bg-dark: #1E1B18;          /* Deep espresso/charcoal for high impact */
  
  --text-dark: #2C2623;        /* Soft charcoal instead of pure black */
  --text-muted: #6B615C;       /* Warm gray for helper text */
  --text-light: #FBF9F6;       /* Soft white for dark sections */
  
  --accent-orange: #FF7E40;    /* Primary Orange */
  --accent-orange-hover: #FF661F;
  --accent-orange-light: #FFF0E6;
  
  --accent-green: #45B058;     /* Sage Green */
  --accent-green-hover: #3AA14C;
  --accent-green-light: #EBF8EE;
  
  --accent-blue: #3B82F6;      /* Ocean Blue */
  --accent-blue-hover: #2563EB;
  --accent-blue-light: #EFF6FF;
  
  --accent-yellow: #F59E0B;    /* Honey Yellow */
  --accent-yellow-light: #FEF3C7;
  
  --accent-purple: #8B5CF6;
  --accent-purple-light: #F3E8FF;
  
  --accent-teal: #0D9488;
  --accent-teal-light: #F0FDFA;
  
  --accent-pink: #EC4899;
  --accent-pink-light: #FDF2F8;

  --accent-red: #EF4444;
  --accent-red-light: #FEE2E2;

  --font-serif: 'Fraunces', serif;
  --font-sans: 'Outfit', sans-serif;

  --shadow-sm: 0 4px 12px rgba(44, 38, 35, 0.04);
  --shadow-md: 0 12px 28px rgba(44, 38, 35, 0.06);
  --shadow-lg: 0 24px 48px rgba(44, 38, 35, 0.1);
  --shadow-xl: 0 32px 64px rgba(44, 38, 35, 0.15);

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --border-radius-xl: 32px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
}

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

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

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

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

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

ul {
  list-style: none;
}

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

/* Typography Utility */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

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

.text-green { color: var(--accent-green) !important; }
.text-orange { color: var(--accent-orange) !important; }
.text-blue { color: var(--accent-blue) !important; }

/* Buttons & CTA Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #FF661F);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 126, 64, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF661F, #E04E0E);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 126, 64, 0.35);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.arrow-right {
  transition: transform 0.3s ease;
}

.btn:hover .arrow-right {
  transform: translateX(4px);
}

/* Sections General */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* Modern Header Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44, 38, 35, 0.06);
  padding: 16px 0;
  transition: var(--transition-fast);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.45rem;
  font-weight: 800;
  font-family: var(--font-sans);
  color: var(--text-dark);
}

.logo-icon {
  width: 24px;
  height: 24px;
  background-color: var(--accent-orange);
  border-radius: 50% 50% 0 50%;
  display: inline-block;
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--accent-green);
  border-radius: 50%;
  bottom: -2px;
  right: -2px;
}

.logo-text span {
  color: var(--accent-orange);
}

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

.mobile-menu-buttons {
  display: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

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

.nav-link:hover {
  color: var(--text-dark);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 4px;
}

.mobile-nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-fast);
}

/* -------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------- */
.hero-section {
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, #FFF5EF 0%, transparent 60%);
}

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

.tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-orange-light);
  color: var(--accent-orange);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 126, 64, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-ring 2s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.85); opacity: 0.5; }
}

.hero-title {
  font-size: 4rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title span {
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' fill='none' stroke='%23FF7E40' stroke-width='2'/%3E%3C/svg%3E") no-repeat;
  background-size: 100% 100%;
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 520px;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.badge-icon {
  width: 18px;
  height: 18px;
}
.badge-icon.green { color: var(--accent-green); }
.badge-icon.orange { color: var(--accent-orange); }
.badge-icon.blue { color: var(--accent-blue); }

.hero-visual {
  position: relative;
}

.visual-wrapper {
  position: relative;
  z-index: 2;
}

/* Mockup showcase design */
.mockup-showcase {
  position: relative;
  width: 100%;
}

.mockup-frame {
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(44, 38, 35, 0.1);
  background-color: white;
  overflow: hidden;
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.window-header {
  background-color: var(--bg-secondary);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(44, 38, 35, 0.08);
}

.window-dots {
  display: flex;
  gap: 6px;
  margin-right: 20px;
}

.window-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot.red { background-color: #EF4444; }
.dot.yellow { background-color: #F59E0B; }
.dot.green { background-color: #10B981; }

.window-address {
  font-size: 0.72rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4px 16px;
  border-radius: 4px;
  color: var(--text-muted);
  width: 100%;
  max-width: 320px;
  text-align: center;
  margin: 0 auto;
}

/* Dashboard Mock Content */
.hero-mock-dashboard {
  display: grid;
  grid-template-columns: 140px 1fr;
  height: 280px;
  font-size: 0.7rem;
}

.mock-sidebar {
  background-color: #FAF8F6;
  border-right: 1px solid rgba(44, 38, 35, 0.06);
  padding: 16px 8px;
}

.mock-logo {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.mock-nav-item {
  padding: 6px 8px;
  border-radius: 4px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.mock-nav-item.active {
  background-color: var(--accent-orange-light);
  color: var(--accent-orange);
  font-weight: 600;
}

.mock-main {
  padding: 16px;
  background-color: white;
}

.mock-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.mock-stat-card {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(44, 38, 35, 0.06);
  background-color: #FDFDFD;
}

.mock-stat-card .stat-label {
  color: var(--text-muted);
  display: block;
}

.mock-stat-card .stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin: 2px 0;
}

.mock-stat-card .stat-trend {
  font-size: 0.6rem;
  font-weight: 500;
}

.mock-chart-placeholder {
  height: 100px;
  border: 1px solid rgba(44, 38, 35, 0.04);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: flex-end;
  background-color: #FAFAFA;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  width: 100%;
  height: 100%;
}

.bar-chart .bar {
  width: 24px;
  background: linear-gradient(to top, var(--accent-orange), var(--accent-yellow));
  border-radius: 4px 4px 0 0;
}

/* Floating elements around hero */
.floating-bubble {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  border: 1px solid rgba(44, 38, 35, 0.06);
  width: 240px;
}

.bubble-top {
  top: -24px;
  right: -32px;
  animation: float-slow 5s infinite ease-in-out;
}

.bubble-bottom {
  bottom: 24px;
  left: -40px;
  animation: float-slow 5s infinite ease-in-out 2s;
}

.bubble-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.bg-orange { background-color: var(--accent-orange-light); color: var(--accent-orange); }
.bg-green { background-color: var(--accent-green-light); color: var(--accent-green); }

.bubble-text {
  display: flex;
  flex-direction: column;
}

.bubble-text strong {
  font-size: 0.78rem;
  color: var(--text-dark);
}

.bubble-text span {
  font-size: 0.68rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Floating Background Shapes */
.floating-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

.shape-ball {
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 30% 30%, #FFBCA0, var(--accent-orange));
  border-radius: 50%;
  top: 15%;
  left: 6%;
  animation: float-slow 6s infinite ease-in-out;
}

.shape-pencil {
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 3.5L20.5 10.5L7.5 23.5H0.5V16.5L13.5 3.5Z' fill='%23F59E0B'/%3E%3C/svg%3E") no-repeat;
  top: 75%;
  left: 45%;
  transform: rotate(-15deg);
  animation: float-slow 8s infinite ease-in-out 1.5s;
}

.shape-notebook {
  width: 50px;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='2' width='16' height='20' rx='2' fill='%233B82F6'/%3E%3Cline x1='8' y1='6' x2='16' y2='6' stroke='white' stroke-width='2'/%3E%3Cline x1='8' y1='10' x2='16' y2='10' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat;
  top: 45%;
  right: 5%;
  transform: rotate(10deg);
  animation: float-slow 7s infinite ease-in-out 1s;
}

.shape-airplane {
  width: 45px;
  height: 45px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 12L22.5 1.5L12 22.5L9.75 14.25L1.5 12Z' fill='%2345B058'/%3E%3C/svg%3E") no-repeat;
  top: 10%;
  right: 48%;
  transform: rotate(30deg);
  animation: float-slow 9s infinite ease-in-out 2.5s;
}

@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* -------------------------------------------------------------
   STATS SECTION
   ------------------------------------------------------------- */
.stats-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0;
  border-radius: var(--border-radius-xl);
  margin: 40px 24px;
}

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

.stat-item {
  border-right: 1px solid rgba(251, 249, 246, 0.1);
  padding-right: 20px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-light);
}

.stat-desc {
  font-size: 0.85rem;
  color: rgba(251, 249, 246, 0.6);
}

/* -------------------------------------------------------------
   WHY US - PROBLEM & SOLUTION
   ------------------------------------------------------------- */
.why-us-section {
  background-color: var(--bg-primary);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}

.comparison-card {
  padding: 48px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(44, 38, 35, 0.08);
  position: relative;
  transition: var(--transition-smooth);
}

.traditional-way {
  background-color: #FFFDFB;
}

.digital-way {
  background-color: #FFFFFF;
  box-shadow: var(--shadow-md);
  border-color: rgba(69, 176, 88, 0.15);
}

.digital-way:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.tag-red { background-color: var(--accent-red-light); color: var(--accent-red); }
.tag-green { background-color: var(--accent-green-light); color: var(--accent-green); }

.card-heading {
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.comparison-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.comparison-list li:last-child {
  margin-bottom: 0;
}

.list-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 3px;
}

.icon-red { background-color: var(--accent-red-light); color: var(--accent-red); }
.icon-green { background-color: var(--accent-green-light); color: var(--accent-green); }

.comparison-list d {
  display: flex;
  flex-direction: column;
}

.comparison-list strong {
  font-size: 0.95rem;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.comparison-list div {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* -------------------------------------------------------------
   SIMULATOR LAYOUT & VIEWPORTS
   ------------------------------------------------------------- */
.simulator-section {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-xl);
  margin: 0 24px;
}

.simulator-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  background-color: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(44, 38, 35, 0.06);
}

.simulator-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.tab-group-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
  margin-left: 8px;
}

.sim-tab-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--border-radius-md);
  border: 1px solid transparent;
  background-color: var(--bg-primary);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-smooth);
}

.sim-tab-btn:hover {
  background-color: var(--bg-secondary);
}

.sim-tab-btn.active {
  background-color: var(--accent-orange-light);
  border-color: rgba(255, 126, 64, 0.2);
  box-shadow: var(--shadow-sm);
}

.sim-tab-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.sim-tab-info {
  display: flex;
  flex-direction: column;
}

.sim-tab-info strong {
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.sim-tab-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.interactive-alert {
  background-color: var(--accent-blue-light);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--border-radius-md);
  padding: 16px;
  font-size: 0.8rem;
  color: var(--accent-blue-hover);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
}

.alert-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
  animation: pulse-ring 2.5s infinite ease-in-out;
}

/* Simulator Screen Framework */
.simulator-viewport {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-screen {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sim-screen.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: relative;
}

/* Browser Frame Mockup */
.browser-frame {
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(44, 38, 35, 0.1);
  box-shadow: var(--shadow-lg);
  background-color: white;
  width: 100%;
  height: 540px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.browser-header {
  background-color: var(--bg-secondary);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(44, 38, 35, 0.08);
}

.browser-dots {
  display: flex;
  gap: 8px;
  margin-right: 24px;
}

.browser-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-title {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.browser-body {
  flex: 1;
  overflow-y: auto;
  position: relative;
}

/* Browser Themes inside Simulator */
/* 1. Public Website theme */
.theme-creamy {
  background-color: #FFFDFB;
  color: #2F2926;
}

.sim-public-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px dashed rgba(44, 38, 35, 0.1);
}

.sim-public-logo {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent-green);
}

.sim-public-menu {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.sim-public-menu span.active {
  color: var(--accent-orange);
  font-weight: 700;
}

.sim-public-hero {
  text-align: center;
  padding: 32px 24px 20px 24px;
}

.sim-public-hero h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.sim-public-hero p {
  font-size: 0.85rem;
}

.sim-public-form-section {
  padding: 0 24px 32px 24px;
  display: flex;
  justify-content: center;
}

.form-container-card {
  background: white;
  padding: 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(44, 38, 35, 0.05);
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
}

.form-container-card h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--text-dark);
}

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

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(44, 38, 35, 0.12);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  background-color: var(--bg-primary);
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--accent-orange);
  background-color: white;
}

.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 5;
}

.form-success-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.form-success-overlay h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success-overlay p {
  font-size: 0.78rem;
  max-width: 280px;
}

/* 2. Admin Dashboard Portal Theme */
.theme-admin {
  background-color: #F8F9FA;
  color: #333333;
}

.admin-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  height: 100%;
}

.admin-sidebar {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admin-brand {
  font-weight: 700;
  font-size: 0.85rem;
  padding-left: 10px;
}

.admin-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-menu-item {
  font-size: 0.72rem;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  color: rgba(251, 249, 246, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-menu-item.active, .admin-menu-item:hover {
  background-color: rgba(251, 249, 246, 0.1);
  color: white;
  font-weight: 600;
}

.admin-menu-item .badge {
  background-color: var(--accent-orange);
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 700;
}

.admin-content {
  padding: 24px;
  overflow-y: auto;
}

.admin-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 12px;
}

.admin-content-header h4 {
  font-size: 1.1rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
}

.live-indicator {
  font-size: 0.62rem;
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stat-card {
  background: white;
  padding: 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
}

.admin-stat-card h5 {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  margin-bottom: 4px;
}

.admin-stat-card .value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.admin-stat-card .subtext {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.admin-lists-container {
  background: white;
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
}

.admin-list-section h5 {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-family: var(--font-sans);
  margin-bottom: 12px;
}

.table-wrapper {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.72rem;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.admin-table th {
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-secondary);
}

.status-tag {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 600;
}

.status-pending { background-color: var(--accent-yellow-light); color: var(--accent-yellow); }
.status-approved { background-color: var(--accent-green-light); color: var(--accent-green); }

/* 3. Teacher Attendance Portal Theme */
.theme-teacher {
  background-color: white;
  color: var(--text-dark);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.teacher-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px dashed rgba(44, 38, 35, 0.1);
  padding-bottom: 16px;
}

.teacher-header h4 {
  font-size: 1.15rem;
  font-family: var(--font-sans);
  margin-bottom: 4px;
}

.teacher-header p {
  font-size: 0.8rem;
}

.attendance-table-container {
  flex: 1;
  overflow-y: auto;
}

.attendance-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  text-align: left;
}

.attendance-table th, .attendance-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(44, 38, 35, 0.05);
}

.attendance-table th {
  font-weight: 600;
  background-color: var(--bg-primary);
}

.attendance-toggle {
  display: flex;
  border: 1px solid rgba(44, 38, 35, 0.1);
  border-radius: 20px;
  overflow: hidden;
  width: max-content;
}

.status-btn {
  border: none;
  background-color: transparent;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.status-btn.btn-present.active {
  background-color: var(--accent-green);
  color: white;
}

.status-btn.btn-absent.active {
  background-color: var(--accent-red);
  color: white;
}

.teacher-footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.attendance-success-banner {
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  border: 1px solid rgba(69, 176, 88, 0.15);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.78rem;
  opacity: 0;
  display: none;
  transition: opacity 0.3s ease;
}

.attendance-success-banner.active {
  display: block;
  opacity: 1;
}

/* 4. Parent Mobile App Mockup Frame */
.phone-frame {
  width: 280px;
  height: 520px;
  background-color: #12100F;
  border-radius: 36px;
  padding: 10px;
  border: 4px solid #2C2623;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background-color: #2C2623;
  border-radius: 10px;
  z-index: 20;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background-color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Parent App Custom UI */
.theme-app {
  background-color: #FAF8F5;
  color: var(--text-dark);
}

.app-header {
  background-color: white;
  padding: 32px 16px 12px 16px; /* High top padding to sit under notch */
  border-bottom: 1px solid rgba(44, 38, 35, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.school-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.school-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--accent-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.school-info h6 {
  font-size: 0.72rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

.school-info span {
  font-size: 0.58rem;
  color: var(--text-muted);
  display: block;
}

.app-notif-bell {
  font-size: 0.85rem;
  cursor: pointer;
}

.app-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.app-card {
  background-color: white;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(44, 38, 35, 0.04);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}

.app-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.stat-bubble {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.stat-bubble .label {
  font-size: 0.58rem;
  color: var(--text-muted);
}

.stat-bubble .value {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 2px 0;
}

.stat-bubble .status {
  font-size: 0.55rem;
  font-weight: 600;
}

.fee-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.fee-card h6 {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
}

.due-tag {
  font-size: 0.55rem;
  color: var(--accent-red);
  font-weight: 600;
}

.fee-amount {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.fee-desc {
  font-size: 0.6rem;
  margin-bottom: 10px;
}

/* Success Card for App payment */
.fee-success {
  display: none;
  border-color: rgba(69, 176, 88, 0.15);
  background-color: var(--accent-green-light);
}

.success-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.success-tick {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: bold;
}

.fee-success h6 {
  font-size: 0.72rem;
  margin: 0;
}

.success-tag {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.receipt-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  border-top: 1px dashed rgba(44, 38, 35, 0.1);
  padding-top: 8px;
}

.receipt-link {
  color: var(--accent-blue);
  cursor: pointer;
  font-weight: 600;
}

/* Notices section */
.notice-board-section h6 {
  font-size: 0.75rem;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
}

.app-notice-item {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(44, 38, 35, 0.04);
}

.app-notice-item:last-child {
  border-bottom: none;
}

.notice-date {
  font-size: 0.58rem;
  background-color: var(--bg-secondary);
  padding: 4px 6px;
  border-radius: 4px;
  height: max-content;
  font-weight: 700;
}

.notice-details strong {
  font-size: 0.68rem;
  display: block;
  line-height: 1.2;
  margin-bottom: 2px;
}

.notice-details p {
  font-size: 0.58rem;
  line-height: 1.3;
}

/* Pay App Modal Overlay */
.app-pay-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 30;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.app-pay-overlay.active {
  opacity: 1;
  visibility: visible;
}

.payment-modal {
  background-color: white;
  width: 100%;
  border-radius: 20px 20px 0 0;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-pay-overlay.active .payment-modal {
  transform: translateY(0);
}

.payment-modal h5 {
  font-size: 0.85rem;
  font-family: var(--font-sans);
  margin-bottom: 6px;
}

.payment-modal p {
  font-size: 0.65rem;
  margin-bottom: 12px;
}

.upi-bank-select {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-primary);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.bank-icon {
  font-size: 1.1rem;
}

.upi-bank-select strong {
  font-size: 0.68rem;
  display: block;
}

.upi-bank-select span {
  font-size: 0.58rem;
  color: var(--text-muted);
}

.upi-pin-section label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}

.upi-pin-input {
  width: 120px;
  display: block;
  margin: 0 auto 12px auto;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 6px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 6px;
  border-radius: 4px;
}

.upi-pin-keyboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.upi-pin-keyboard span {
  padding: 8px;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
}

.upi-pin-keyboard span:hover {
  background-color: #E2DBD6;
}

.upi-pin-keyboard .btn-done {
  background-color: var(--accent-green);
  color: white;
}

.upi-pin-keyboard .btn-done:hover {
  background-color: var(--accent-green-hover);
}

/* -------------------------------------------------------------
   CORE MODULES SECTION
   ------------------------------------------------------------- */
.modules-section {
  background-color: var(--bg-primary);
}

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

.module-card {
  background-color: white;
  padding: 32px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(44, 38, 35, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.bg-orange-light { background-color: var(--accent-orange-light); }
.bg-green-light { background-color: var(--accent-green-light); }
.bg-blue-light { background-color: var(--accent-blue-light); }
.bg-yellow-light { background-color: var(--accent-yellow-light); }
.bg-purple-light { background-color: var(--accent-purple-light); }
.bg-teal-light { background-color: var(--accent-teal-light); }
.bg-pink-light { background-color: var(--accent-pink-light); }
.bg-red-light { background-color: var(--accent-red-light); }

.module-card h4 {
  font-size: 1.15rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.module-card p {
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.module-features {
  border-top: 1px dashed rgba(44, 38, 35, 0.1);
  padding-top: 16px;
}

.module-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}

.module-features li:last-child {
  margin-bottom: 0;
}

.module-features li::before {
  content: '•';
  color: var(--accent-orange);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* -------------------------------------------------------------
   PRICING SECTION
   ------------------------------------------------------------- */
.pricing-section {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-xl);
  margin: 0 24px;
}

.pricing-toggle-container {
  display: inline-flex;
  align-items: center;
  background-color: white;
  padding: 8px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
}

.toggle-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0 16px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.toggle-label.active {
  color: var(--text-dark);
}

.pricing-toggle-switch {
  width: 48px;
  height: 24px;
  border-radius: 50px;
  background-color: var(--accent-orange);
  border: none;
  position: relative;
  cursor: pointer;
  outline: none;
}

.switch-handle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: white;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-toggle-switch.monthly .switch-handle {
  transform: translateX(24px);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  align-items: stretch;
}

.pricing-card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(44, 38, 35, 0.06);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.popular {
  border: 2px solid var(--accent-orange);
  box-shadow: var(--shadow-lg);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-orange), #FF661F);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: 50px;
}

.pricing-header {
  margin-bottom: 24px;
  text-align: center;
}

.pack-title {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pack-desc {
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}

.price-wrap .currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-right: 4px;
}

.price-wrap .price-amount {
  font-size: 3.6rem;
  font-family: var(--font-serif);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.price-wrap .price-duration {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.pricing-sub-detail {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 12px;
}

.pack-limit {
  font-size: 0.8rem;
  background-color: var(--bg-primary);
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 600;
  color: var(--text-dark);
}

.pricing-features-wrap {
  flex: 1;
  border-top: 1px solid rgba(44, 38, 35, 0.06);
  padding-top: 24px;
  margin-bottom: 32px;
}

.pricing-features-wrap h6 {
  font-size: 0.88rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
}

.pricing-btn {
  margin-top: auto;
}

/* -------------------------------------------------------------
   ONBOARDING ROADMAP TIMELINE
   ------------------------------------------------------------- */
.onboarding-section {
  background-color: var(--bg-primary);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background-color: rgba(44, 38, 35, 0.08);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: -40px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 2px solid var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-badge {
  background-color: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  transform: scale(1.1);
}

.timeline-content {
  background-color: white;
  padding: 28px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(44, 38, 35, 0.05);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.timeline-content h4 {
  font-size: 1.3rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.timeline-content p {
  font-size: 0.92rem;
}

.timeline-time {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-orange);
  background-color: var(--accent-orange-light);
  padding: 2px 10px;
  border-radius: 4px;
}

/* -------------------------------------------------------------
   CONTACT SECTION & BOOKING FORM
   ------------------------------------------------------------- */
.contact-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
  margin: 0 24px;
}

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

.contact-info-panel .section-title {
  color: white;
  font-size: 2.8rem;
}

.info-desc {
  color: rgba(251, 249, 246, 0.7);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(251, 249, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 2px;
}

.contact-detail-item span, .contact-detail-item a {
  font-size: 0.88rem;
  color: rgba(251, 249, 246, 0.6);
}

.contact-detail-item a:hover {
  color: var(--accent-orange);
}

/* Booking Form Styles */
.contact-form-panel {
  position: relative;
}

.booking-form {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  color: var(--text-dark);
  box-shadow: var(--shadow-xl);
}

.booking-form h4 {
  font-size: 1.45rem;
  margin-bottom: 24px;
}

.booking-form .form-group input, .booking-form .form-group select {
  border-color: rgba(44, 38, 35, 0.15);
  font-size: 0.9rem;
}

/* success overlay for booking form */
.contact-form-panel .form-success-overlay {
  border-radius: var(--border-radius-lg);
}

.success-illustration {
  font-size: 3.2rem;
  margin-bottom: 16px;
}

.contact-form-panel .form-success-overlay h4 {
  color: var(--text-dark);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* -------------------------------------------------------------
   FOOTER SECTION
   ------------------------------------------------------------- */
.main-footer {
  background-color: #12100F;
  color: rgba(251, 249, 246, 0.5);
  padding: 80px 0 32px 0;
  border-top: 1px solid rgba(251, 249, 246, 0.05);
}

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

.footer-brand .logo {
  color: white;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(251, 249, 246, 0.6);
  max-width: 380px;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-links h6 {
  font-size: 0.88rem;
  font-family: var(--font-sans);
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(251, 249, 246, 0.6);
  margin-bottom: 12px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(251, 249, 246, 0.05);
  padding-top: 32px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* -------------------------------------------------------------
   RESPONSIVENESS (MEDIA QUERIES)
   ------------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-item {
    border-right: none;
  }
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .simulator-layout {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-item {
    border-right: none;
  }
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .simulator-layout {
    grid-template-columns: 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  section {
    padding: 60px 0;
  }
  .floating-shape {
    display: none !important;
  }
  .hero-section {
    padding-top: 10px;
    padding-bottom: 15px;
  }
  .portfolio-hero-section {
    padding-top: 10px;
    padding-bottom: 15px;
  }
  .portfolio-grid-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .main-header {
    padding: 16px 0;
    position: relative;
    z-index: 1001;
  }
  .header-actions .btn {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: flex;
    z-index: 1002;
  }
  .mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
    margin-top: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 20px;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .nav-menu.active .mobile-menu-buttons {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-menu .nav-link {
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--text-dark) !important;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-menu.active .nav-link {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
  .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
  .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.25s; }
  .nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.3s; }
  .nav-menu.active .nav-link:nth-child(6) { transition-delay: 0.35s; }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-badges {
    justify-content: center;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .stats-section {
    margin: 20px 12px;
  }
  .simulator-section, .pricing-section, .contact-section {
    margin: 0 12px;
  }
  
  /* Horizontal scrolling for tab groups in simulator sidebar */
  .simulator-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .simulator-tab-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }
  .tab-group-label {
    width: 100%;
  }
  .sim-tab-btn {
    flex: 1 1 45%;
    padding: 10px 14px;
    font-size: 0.8rem;
  }
  .interactive-alert {
    width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .simulator-layout {
    padding: 16px;
  }
  .timeline {
    padding-left: 20px;
  }
  .timeline::before {
    left: 10px;
  }
  .timeline-badge {
    width: 32px;
    height: 32px;
    left: -20px;
    font-size: 0.8rem;
  }
  .booking-form {
    padding: 24px;
  }
  .phone-frame {
    margin: 20px auto;
  }
  .sim-tab-btn {
    flex: 1 1 100%;
  }
  .portfolio-slider-track {
    animation-duration: 15s;
  }
}

/* =============================================================
   CLIENT PORTFOLIO INFINITE MARQUEE CAROUSEL
   ============================================================= */
.portfolio-slider-section {
  background-color: transparent;
  padding: 40px 0 20px 0;
  overflow: hidden;
  margin: 0;
}

.portfolio-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--text-muted);
  display: inline-block;
}

.portfolio-slider-track-wrap {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

.portfolio-slider-track-wrap::before,
.portfolio-slider-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.portfolio-slider-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}
.portfolio-slider-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.portfolio-slider-track {
  display: flex;
  width: calc(280px * 12);
  animation: scroll-marquee 25s linear infinite;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 6));
  }
}

.portfolio-slider-track-wrap:hover .portfolio-slider-track {
  animation-play-state: paused;
}

.portfolio-slide {
  width: 280px;
  flex-shrink: 0;
  padding: 0 10px;
}

.school-logo-card {
  background: white;
  padding: 16px 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(44, 38, 35, 0.06);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.school-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-orange-hover);
}

.school-logo-icon {
  font-size: 1.8rem;
}

.school-logo-details {
  display: flex;
  flex-direction: column;
}

.school-logo-details strong {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-family: var(--font-sans);
}

.school-logo-details span {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =============================================================
   DEDICATED PORTFOLIO SHOWCASE PAGE STYLING
   ============================================================= */
.portfolio-hero-section {
  padding-top: 10px;
  padding-bottom: 1px;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, #FFF5EF 0%, transparent 60%);
}

.portfolio-grid-section {
  padding: 40px 0 100px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.portfolio-card-item {
  background: white;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(44, 38, 35, 0.06);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portfolio-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: background-color 0.3s ease;
}

.portfolio-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-orange-hover);
}

.portfolio-card-item:hover::before {
  background-color: var(--accent-orange);
}

.portfolio-card-top {
  margin-bottom: 24px;
}

.portfolio-avatar-logo {
  width: 56px;
  height: 56px;
  border-radius: 50% 50% 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.35rem;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.avatar-orange { background: linear-gradient(135deg, #FF7E40, #FF5500); }
.avatar-green  { background: linear-gradient(135deg, #45B058, #2E7D32); }
.avatar-teal   { background: linear-gradient(135deg, #0D9488, #005953); }
.avatar-blue   { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.avatar-yellow { background: linear-gradient(135deg, #F59E0B, #D97706); }
.avatar-purple { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }

.portfolio-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.portfolio-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text-dark);
  font-weight: 700;
}

.portfolio-link-btn {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-orange);
  background-color: var(--accent-orange-light);
  padding: 4px 10px;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.portfolio-link-btn:hover {
  background-color: var(--accent-orange);
  color: white;
}

.portfolio-type-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 12px;
}

.portfolio-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.portfolio-tag-item {
  font-size: 0.72rem;
  font-weight: 600;
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  padding: 4px 10px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
