:root{
  --bg:#ffffff;
  --text:#000000;
  --muted:#718096;
  --light-muted:#a0aec0;
  --brand:#000000;
  --brand-dark:#333333;
  --brand-light:#3182ce;
  --accent:#2b6cb0;
  --accent-dark:#000000;
  --navy:#000000;
  --surface:#f7fafc;
  --surface-2:#edf2f7;
  --border:#e2e8f0;
  --border-light:#f1f5f9;
  --success:#38a169;
  --warning:#d69e2e;
  --shadow-sm:0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md:0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-brand:linear-gradient(135deg, #2b6cb0 0%, #3182ce 100%);
  --gradient-surface:linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;height:100%;overflow-x:hidden}
html,body{margin:0;padding:0;height:100%;overflow-x:hidden}
body{
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  font-feature-settings:"cv11","ss01";
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  min-height:100vh;
  overflow-y:auto;
}
/* Text colors */
h1, h2, h3, h4, h5, h6, p, div, span, li {
  color: var(--text);
}
a{color:var(--brand);text-decoration:none;transition:all 0.2s ease}
a:hover{color:var(--brand-dark);transform:translateY(-1px)}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.narrow{max-width:800px}

/* Header */
.site-header{
  position:sticky;
  top:0;
  background:rgba(255,255,255,0.95);
  backdrop-filter:saturate(180%) blur(20px);
  border-bottom:1px solid var(--border);
  z-index:100;
  transition:all 0.3s ease;
}
.site-header.scrolled{
  background:rgba(255,255,255,0.98);
  box-shadow:var(--shadow-sm);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
  font-weight:700;
  font-size:18px;
  color:var(--navy);
  transition:all 0.2s ease;
}
.brand:hover{transform:scale(1.02)}
.nav{
  display:flex;
  gap:8px;
  align-items:center;
}
.nav a{
  padding:10px 16px;
  border-radius:12px;
  font-weight:500;
  transition:all 0.2s ease;
  position:relative;
}
.nav a:hover{
  background:var(--surface);
  color:var(--navy);
  transform:translateY(-1px);
}
.nav a.active{
  background:var(--gradient-brand);
  color:white;
  box-shadow:var(--shadow-md);
}
.nav .btn{margin-left:12px}
.nav-toggle{
  display:none;
  background:none;
  border:0;
  font-size:24px;
  padding:8px;
  border-radius:8px;
  cursor:pointer;
  transition:all 0.2s ease;
}
.nav-toggle:hover{background:var(--surface)}

/* Dropdown */
.dropdown{position:relative}
.dropbtn{
  background:transparent;
  border:0;
  padding:10px 16px;
  border-radius:12px;
  cursor:pointer;
  font:inherit;
  color:inherit;
  font-weight:500;
  transition:all 0.2s ease;
}
.dropbtn:hover{
  background:var(--surface);
  transform:translateY(-1px);
}
.dropdown-content{
  display:none;
  position:absolute;
  background:white;
  border:1px solid var(--border);
  border-radius:16px;
  min-width:220px;
  top:50px;
  left:0;
  box-shadow:var(--shadow-xl);
  overflow:hidden;
  animation:dropdownFade 0.2s ease;
}
@keyframes dropdownFade{
  from{opacity:0;transform:translateY(-10px)}
  to{opacity:1;transform:translateY(0)}
}
.dropdown:hover .dropdown-content{display:block}
.dropdown-content a{
  display:block;
  padding:14px 18px;
  transition:all 0.2s ease;
  border-bottom:1px solid var(--border-light);
}
.dropdown-content a:last-child{border-bottom:none}
.dropdown-content a:hover{
  background:var(--gradient-brand);
  color:white;
  transform:translateX(4px);
}

/* Hero Section */
.hero{
  padding:120px 0 40px;
  background:linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f5f5f5 100%);
  position:relative;
  overflow:visible;
  min-height:auto;
}
.hero::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') center/50px;
  opacity:0.4;
}
.hero .container{position:relative;z-index:2}
.hero h1{
  font-size:clamp(36px, 5vw, 64px);
  line-height:1.1;
  margin:0 0 24px;
  font-weight:800;
  background:var(--gradient-brand);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:heroTitle 1s ease-out;
}

/* Override for black heading text */
.hero h1.black-text{
  background:none;
  -webkit-background-clip:unset;
  -webkit-text-fill-color:unset;
  background-clip:unset;
  color:#000000;
}
@keyframes heroTitle{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}
.hero p{
  color:var(--muted);
  max-width:600px;
  font-size:20px;
  line-height:1.6;
  margin-bottom:40px;
  animation:heroText 1s ease-out 0.2s both;
}
@keyframes heroText{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}
/* CTA Row */
.cta-row{
  display:flex;
  gap:16px;
  align-items:center;
  margin:32px 0;
  animation:ctaFade 1s ease-out 0.4s both;
}
@keyframes ctaFade{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}

/* Pill List */
.pill-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:32px 0 0;
  padding:0;
  list-style:none;
  animation:pillFade 1s ease-out 0.6s both;
}
@keyframes pillFade{
  from{opacity:0;transform:translateY(20px)}
  to{opacity:1;transform:translateY(0)}
}
.pill-list li{
  background:white;
  border:1px solid var(--border);
  border-radius:50px;
  padding:10px 18px;
  color:var(--navy);
  font-weight:500;
  font-size:14px;
  box-shadow:var(--shadow-sm);
  transition:all 0.2s ease;
}
.pill-list li:hover{
  background:var(--gradient-brand);
  color:white;
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}

/* Sections */
.features{
  padding:80px 0;
  background:white;
  position:relative;
  z-index:2;
  margin-top:20px;
}
.services-preview{
  padding:80px 0;
  background:var(--gradient-surface);
}
.testimonials{
  padding:80px 0;
  background:white;
}
.page{
  padding:60px 0;
}

/* Grid Layouts */
.grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:32px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:24px;
}

/* Cards */
.card{
  background:white;
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px;
  box-shadow:var(--shadow-md);
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:var(--gradient-brand);
  transform:scaleX(0);
  transition:transform 0.3s ease;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-xl);
}
.card:hover::before{
  transform:scaleX(1);
}
.card h3, .card h4{
  margin:0 0 16px;
  color:var(--navy);
  font-weight:700;
}
.card p{
  color:var(--muted);
  margin:0 0 20px;
  line-height:1.6;
}
.card.small{
  padding:24px;
}
.card.small h4{
  margin:0 0 12px;
  font-size:18px;
}
.card.quote{
  background:var(--gradient-surface);
  border:none;
}
.card.quote p{
  font-size:16px;
  color:var(--navy);
  font-style:italic;
  margin-bottom:16px;
}
.card.quote span{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}
.stars{
  color:#f59e0b;
  margin-bottom:8px;
  font-size:18px;
}


/* Services Layout */
.service-list{
  display:grid;
  gap:32px;
  margin-top:40px;
}
.service{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:40px;
  box-shadow:var(--shadow-md);
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}
.service::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:6px;
  background:var(--gradient-brand);
  transform:scaleX(0);
  transition:transform 0.3s ease;
}
.service:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-xl);
}
.service:hover::before{
  transform:scaleX(1);
}
.service h2{
  margin:0 0 16px;
  color:var(--navy);
  font-size:24px;
  font-weight:700;
}
.service p{
  color:var(--muted);
  margin:0 0 20px;
  line-height:1.6;
}
.service ul{
  margin:0 0 24px;
  padding-left:20px;
  color:var(--muted);
}
.service ul li{
  margin-bottom:8px;
  position:relative;
}
.service ul li::marker{
  color:var(--accent);
}
.service .price{
  font-weight:700;
  font-size:20px;
  color:var(--navy);
  margin:24px 0;
  padding:16px 24px;
  background:var(--gradient-surface);
  border-radius:16px;
  display:inline-block;
}

/* Metrics */
.metrics{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:24px;
  margin-top:40px;
}
.metric{
  background:white;
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px;
  text-align:center;
  box-shadow:var(--shadow-md);
  transition:all 0.3s ease;
  position:relative;
  overflow:hidden;
}
.metric::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:var(--gradient-brand);
}
.metric:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.metric .value{
  font-size:36px;
  font-weight:800;
  color:var(--navy);
  margin-bottom:8px;
  background:var(--gradient-brand);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.metric .label{
  color:var(--muted);
  font-weight:600;
  font-size:16px;
}


/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:white;
  color:var(--navy);
  border:2px solid var(--border);
  padding:14px 28px;
  border-radius:50px;
  font-weight:600;
  font-size:16px;
  text-decoration:none;
  transition:all 0.3s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.btn::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition:left 0.5s;
}
.btn:hover::before{
  left:100%;
}
.btn:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-lg);
}
.btn.primary{
  background:var(--gradient-brand);
  color:white;
  border-color:transparent;
  box-shadow:var(--shadow-md);
}
.btn.primary:hover{
  box-shadow:var(--shadow-xl);
  transform:translateY(-3px) scale(1.02);
}
.btn.outline{
  background:transparent;
  color:var(--brand);
  border-color:var(--brand);
}
.btn.outline:hover{
  background:var(--brand);
  color:white;
}
.btn.whatsapp{
  background:linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color:white;
  border-color:transparent;
  box-shadow:var(--shadow-md);
}
.btn.whatsapp:hover{
  box-shadow:var(--shadow-xl);
  transform:translateY(-3px) scale(1.02);
}
.link{
  color:var(--brand);
  font-weight:600;
  text-decoration:none;
  position:relative;
}
.link::after{
  content:'';
  position:absolute;
  bottom:-2px;
  left:0;
  width:0;
  height:2px;
  background:var(--brand);
  transition:width 0.3s ease;
}
.link:hover::after{
  width:100%;
}

/* Forms */
.contact-form{
  background:white;
  border:1px solid var(--border);
  border-radius:24px;
  padding:40px;
  box-shadow:var(--shadow-md);
  margin-top:40px;
}
.contact-form label{
  display:block;
  margin-bottom:20px;
}
.contact-form span{
  display:block;
  margin-bottom:8px;
  font-weight:600;
  color:var(--navy);
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:16px 20px;
  border:2px solid var(--border);
  border-radius:16px;
  font-size:16px;
  transition:all 0.2s ease;
  background:var(--surface);
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--brand);
  background:white;
  box-shadow:0 0 0 3px rgba(14, 165, 233, 0.1);
}
.form-note{
  color:var(--muted);
  font-size:14px;
  margin-top:16px;
  text-align:center;
}
.hide{display:none !important}

/* Checklists */
.checklist{
  padding-left:0;
  list-style:none;
}
.checklist li{
  margin-bottom:12px;
  padding-left:32px;
  position:relative;
  color:var(--muted);
  line-height:1.6;
}
.checklist li::before{
  content:'✓';
  position:absolute;
  left:0;
  top:0;
  width:24px;
  height:24px;
  background:var(--gradient-brand);
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  font-size:14px;
}

/* Blog Posts */
.cards .post{
  transition:all 0.3s ease;
}
.cards .post:hover{
  transform:translateY(-4px);
}
.cards .post h3{
  margin:0 0 12px;
  font-size:20px;
}
.cards .post h3 a{
  color:var(--navy);
  text-decoration:none;
}
.cards .post h3 a:hover{
  color:var(--brand);
}
.cards .meta{
  color:var(--light-muted);
  font-size:14px;
  font-weight:500;
}

/* Footer */
.site-footer{
  margin-top:80px;
  padding:40px 0;
  border-top:1px solid var(--border);
  background:var(--gradient-surface);
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:32px;
  align-items:start;
}
.footer-grid strong{
  color:var(--navy);
  font-size:18px;
}
.footer-grid p{
  margin:8px 0;
  color:var(--muted);
}
.footer-grid a{
  color:var(--brand);
  font-weight:500;
}
.footer-grid a:hover{
  color:var(--brand-dark);
}

/* Live Demo Styles */
.demo-container{
  background:var(--navy);
  border-radius:20px;
  padding:24px;
  margin:32px 0;
  position:relative;
  overflow:hidden;
}
.demo-container::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation:shimmer 2s infinite;
}
@keyframes shimmer{
  0%{transform:translateX(-100%)}
  100%{transform:translateX(100%)}
}
.demo-header{
  display:flex;
  gap:8px;
  margin-bottom:16px;
}
.demo-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#ff5f57;
}
.demo-dot:nth-child(2){background:#ffbd2e}
.demo-dot:nth-child(3){background:#28ca42}
.demo-content{
  background:rgba(255,255,255,0.1);
  border-radius:12px;
  padding:20px;
  color:white;
  font-family:monospace;
  font-size:14px;
  line-height:1.6;
}
.typing-animation{
  border-right:2px solid #28ca42;
  animation:typing 3s steps(40) infinite;
}
@keyframes typing{
  0%, 50%{border-color:transparent}
  51%, 100%{border-color:#28ca42}
}

/* Section Headers */
h2{
  font-size:clamp(28px, 4vw, 40px);
  font-weight:700;
  color:var(--navy);
  margin:0 0 24px;
  text-align:center;
  position:relative;
}
h2::after{
  content:'';
  position:absolute;
  bottom:-8px;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:4px;
  background:var(--gradient-brand);
  border-radius:2px;
}

/* Responsive Design */
@media (max-width: 1024px){
  .container{padding:0 16px}
  .hero{padding:80px 0 60px}
  .hero h1{font-size:clamp(32px, 6vw, 48px)}
  .hero p{font-size:18px}
  .features, .services-preview, .testimonials{padding:60px 0}
  .card{padding:24px}
  .service{padding:32px}
}

@media (max-width: 768px){
  .header-inner{height:64px}
  .brand{font-size:16px}
  .nav{display:none;position:absolute;top:64px;left:0;right:0;background:rgba(255,255,255,0.98);backdrop-filter:blur(20px);border-bottom:1px solid var(--border);padding:20px;box-shadow:var(--shadow-lg)}
  .nav.active{display:flex;flex-direction:column;gap:8px}
  .nav a{display:block;padding:12px 16px;border-radius:12px;text-align:center}
  .nav-toggle{display:block}
  .cta-row{flex-direction:column;gap:12px}
  .btn{width:100%;justify-content:center}
  .grid-3, .grid-2{grid-template-columns:1fr}
  .hero{padding:60px 0 40px}
  .hero h1{font-size:clamp(28px, 8vw, 40px)}
  .hero p{font-size:16px}
  .pill-list{justify-content:center}
  .footer-grid{grid-template-columns:1fr;text-align:center}
  .contact-form{padding:24px}
}

@media (max-width: 480px){
  .container{padding:0 12px}
  .card, .service, .contact-form{padding:20px}
  .hero{padding:40px 0 30px}
  .features, .services-preview, .testimonials{padding:40px 0}
  .btn{padding:12px 20px;font-size:14px}
  .metric{padding:20px}
  .metric .value{font-size:28px}
}

/* Loading Animation */
.loading{
  display:inline-block;
  width:20px;
  height:20px;
  border:2px solid rgba(255,255,255,0.3);
  border-radius:50%;
  border-top-color:white;
  animation:spin 1s ease-in-out infinite;
}
@keyframes spin{
  to{transform:rotate(360px)}
}

/* Scroll Animations */
.fade-in{
  opacity:0;
  transform:translateY(30px);
  transition:all 0.6s ease;
}
.fade-in.visible{
  opacity:1;
  transform:translateY(0);
}

/* Success Indicators */
.success-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--gradient-brand);
  color:white;
  padding:8px 16px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  box-shadow:var(--shadow-md);
}
.success-badge::before{
  content:'✓';
  width:20px;
  height:20px;
  background:rgba(255,255,255,0.2);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

/* Subject Tabs */
.subject-tabs{
  margin-top:40px;
  margin-bottom:40px;
  background:white;
  border-radius:24px;
  box-shadow:var(--shadow-lg);
  overflow:hidden;
  position:relative;
  z-index:1;
}
.tab-nav{
  display:flex;
  background:var(--surface);
  border-bottom:1px solid var(--border);
  overflow-x:auto;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.tab-nav::-webkit-scrollbar{display:none}
.tab-btn{
  background:transparent;
  border:none;
  padding:16px 24px;
  font-weight:600;
  font-size:14px;
  color:var(--muted);
  cursor:pointer;
  transition:all 0.3s ease;
  white-space:nowrap;
  position:relative;
}
.tab-btn:hover{
  color:var(--brand);
  background:rgba(14, 165, 233, 0.05);
}
.tab-btn.active{
  color:var(--brand);
  background:white;
}
.tab-btn.active::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:3px;
  background:var(--gradient-brand);
}
.tab-content{
  padding:32px;
}
.tab-panel{
  display:none;
  animation:tabFade 0.3s ease;
}
.tab-panel.active{
  display:block;
}
@keyframes tabFade{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:translateY(0)}
}
.tab-info{
  display:flex;
  gap:20px;
  align-items:flex-start;
}
.tab-info img{
  flex-shrink:0;
}
.tab-info h3{
  margin:0 0 12px;
  color:var(--navy);
  font-size:20px;
  font-weight:700;
}
.tab-info p{
  color:var(--muted);
  margin:0 0 16px;
  line-height:1.6;
}
.subject-features{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.feature-tag{
  background:var(--gradient-brand);
  color:white;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
  box-shadow:var(--shadow-sm);
}

/* Reviews/Success Stories Page */
.reviews-hero{
  padding:100px 0 80px;
  background:var(--gradient-surface);
}
.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.hero-text h1{
  font-size:clamp(32px, 5vw, 48px);
  font-weight:800;
  color:var(--navy);
  margin:0 0 20px;
}
.hero-text p{
  font-size:18px;
  color:var(--muted);
  margin:0 0 32px;
  line-height:1.6;
}
.trust-indicators{
  display:flex;
  gap:24px;
}
.trust-item{
  text-align:center;
}
.trust-number{
  font-size:24px;
  font-weight:800;
  color:var(--brand);
  margin-bottom:4px;
}
.trust-label{
  font-size:12px;
  color:var(--muted);
  font-weight:600;
}

.featured-reviews{
  padding:80px 0;
  background:white;
}
.review-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:32px;
  margin-top:40px;
}
.review-card{
  background:white;
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px;
  box-shadow:var(--shadow-md);
  transition:all 0.3s ease;
}
.review-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-xl);
}
.review-card.featured{
  border:2px solid var(--brand);
  background:linear-gradient(135deg, #f0f9ff 0%, white 100%);
}
.review-header{
  display:flex;
  gap:16px;
  margin-bottom:20px;
}
.student-avatar{
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--gradient-brand);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:16px;
}
.student-info h4{
  margin:0 0 4px;
  color:var(--navy);
  font-weight:700;
}
.student-info span{
  color:var(--muted);
  font-size:14px;
}
.review-text{
  color:var(--text);
  line-height:1.6;
  margin:0 0 20px;
  font-style:italic;
}
.review-stats{
  display:flex;
  gap:20px;
}
.stat{
  text-align:center;
}
.stat-value{
  display:block;
  font-weight:700;
  color:var(--brand);
  font-size:16px;
}
.stat-label{
  font-size:12px;
  color:var(--muted);
}
.outcome-badge{
  background:var(--gradient-brand);
  color:white;
  padding:8px 16px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
}
.outcome-badge.success{
  background:var(--gradient-brand);
}

.success-metrics{
  padding:80px 0;
  background:var(--gradient-surface);
}
.metrics-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:32px;
  margin-top:40px;
}
.metric-card{
  background:white;
  border-radius:20px;
  padding:32px;
  text-align:center;
  box-shadow:var(--shadow-md);
  transition:all 0.3s ease;
}
.metric-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.metric-icon{
  font-size:48px;
  margin-bottom:16px;
}
.metric-value{
  font-size:36px;
  font-weight:800;
  color:var(--brand);
  margin-bottom:8px;
}
.metric-label{
  font-size:18px;
  font-weight:700;
  color:var(--navy);
  margin-bottom:12px;
}
.metric-desc{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.case-studies{
  padding:80px 0;
  background:white;
}
.case-study{
  background:var(--surface);
  border-radius:20px;
  padding:40px;
  margin-bottom:32px;
  box-shadow:var(--shadow-md);
}
.case-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:32px;
}
.case-header h3{
  color:var(--navy);
  font-size:24px;
  font-weight:700;
  margin:0;
}
.case-tag{
  background:var(--gradient-brand);
  color:white;
  padding:8px 16px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
}
.case-content{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:32px;
}
.case-challenge, .case-solution, .case-result{
  background:white;
  border-radius:16px;
  padding:24px;
}
.case-content h4{
  color:var(--navy);
  font-weight:700;
  margin:0 0 16px;
}
.result-metrics{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.result-item{
  display:flex;
  align-items:center;
  gap:12px;
}
.result-before{
  color:var(--muted);
}
.result-arrow{
  color:var(--brand);
  font-weight:700;
}
.result-after{
  color:var(--accent);
  font-weight:700;
}
.result-achievement{
  background:var(--gradient-brand);
  color:white;
  padding:8px 16px;
  border-radius:20px;
  font-size:14px;
  font-weight:600;
}

.reviews-cta{
  padding:80px 0;
  background:var(--navy);
  color:white;
}
.cta-content{
  text-align:center;
  max-width:600px;
  margin:0 auto;
}
.cta-content h2{
  color:white;
  margin-bottom:16px;
}
.cta-content p{
  color:rgba(255,255,255,0.8);
  font-size:18px;
  margin-bottom:32px;
}

/* Services Page Redesign */
.services-hero{
  padding:80px 0 60px;
  background:var(--gradient-surface);
  text-align:center;
}
.services-header h1{
  font-size:clamp(32px, 5vw, 48px);
  font-weight:800;
  color:var(--navy);
  margin:0 0 16px;
}
.services-header p{
  font-size:18px;
  color:var(--muted);
  margin:0 0 32px;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}
.quick-contact{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

.services-grid-section{
  padding:60px 0;
  background:white;
}
.services-grid{
  display:grid;
  gap:40px;
  margin-bottom:60px;
}
.service-category{
  background:var(--surface);
  border-radius:20px;
  padding:32px;
  box-shadow:var(--shadow-md);
}
.service-category h2{
  color:var(--navy);
  font-size:24px;
  font-weight:700;
  margin:0 0 24px;
  text-align:left;
}
.service-category h2::after{display:none}
.service-items{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:20px;
}
.service-item{
  background:white;
  border:2px solid var(--border);
  border-radius:20px;
  padding:32px 24px;
  transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align:center;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow-md);
}
.service-item:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:var(--shadow-xl);
  border-color:var(--brand);
  background:var(--gradient-surface);
}
.service-item h3{
  color:var(--navy);
  font-size:20px;
  font-weight:800;
  margin:0 0 12px;
  letter-spacing:-0.5px;
}
.service-item p{
  color:var(--muted);
  font-size:15px;
  margin:0 0 20px;
  line-height:1.6;
  font-weight:400;
}
.service-item .price{
  background:var(--gradient-brand);
  color:white;
  border:none;
  padding:12px 24px;
  border-radius:25px;
  font-size:16px;
  font-weight:700;
  display:inline-block;
  margin-bottom:16px;
  box-shadow:var(--shadow-md);
  transform:translateY(0);
  transition:all 0.3s ease;
}
.service-link{
  color:var(--brand);
  font-weight:600;
  text-decoration:none;
  font-size:14px;
}
.service-link:hover{
  color:var(--brand-dark);
}

/* Price hover effect */
.service-item:hover .price{
  transform:translateY(-2px);
  box-shadow:var(--shadow-xl);
  background:linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
}

/* Add subtle animation */
.service-item::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition:left 0.5s;
}

.service-item:hover::before{
  left:100%;
}

.quick-order{
  background:var(--navy);
  color:white;
  border-radius:24px;
  padding:40px;
  text-align:center;
  margin-top:40px;
}
.quick-order h2{
  color:white;
  margin:0 0 12px;
}
.quick-order h2::after{display:none}
.quick-order p{
  color:rgba(255,255,255,0.8);
  margin:0 0 32px;
  font-size:16px;
}
.order-buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.btn.large{
  padding:16px 32px;
  font-size:16px;
}

.detailed-services{
  padding:60px 0;
  background:var(--gradient-surface);
}
.detailed-services h2{
  text-align:center;
  margin-bottom:40px;
}
.service-details{
  display:grid;
  gap:32px;
}
.service-details .service{
  margin-bottom:0;
}

/* Success Message */
.success-message{
  position:fixed;
  top:20px;
  right:20px;
  background:white;
  border:2px solid var(--accent);
  border-radius:16px;
  box-shadow:var(--shadow-xl);
  z-index:1000;
  animation:slideIn 0.3s ease;
}
@keyframes slideIn{
  from{transform:translateX(100%);opacity:0}
  to{transform:translateX(0);opacity:1}
}
.success-content{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px 20px;
  color:var(--navy);
}
.success-icon{
  width:24px;
  height:24px;
  background:var(--accent);
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  flex-shrink:0;
}
.close-btn{
  background:none;
  border:none;
  font-size:20px;
  color:var(--muted);
  cursor:pointer;
  padding:0;
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  transition:all 0.2s ease;
}
.close-btn:hover{
  background:var(--surface);
  color:var(--navy);
}

/* Blog Modal Styles */
.post-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.post-modal.hidden {
  display: none !important;
}

.post-modal .modal-content {
  background: white;
  border-radius: 20px;
  padding: 0;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.post-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 32px 16px;
  border-bottom: 1px solid var(--border);
}

.post-modal .modal-header h2 {
  color: var(--navy);
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  flex: 1;
  padding-right: 20px;
}

.post-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.post-modal .close-modal:hover {
  background: var(--surface);
  color: var(--navy);
}

.post-modal .modal-body {
  padding: 32px;
}

.post-modal .post-meta {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.post-modal .post-meta .meta {
  display: inline-block;
  background: var(--surface);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-right: 8px;
  margin-bottom: 8px;
}

.post-modal .post-meta .meta.featured {
  background: var(--gradient-brand);
  color: white;
}

.post-modal .post-tags {
  margin-top: 16px;
}

.post-modal .post-tags .tag {
  display: inline-block;
  background: var(--gradient-brand);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.post-modal .post-content {
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
}

.post-modal .post-content p {
  margin-bottom: 16px;
}

.post-modal .post-content h3,
.post-modal .post-content h4 {
  color: var(--navy);
  margin: 24px 0 12px;
  font-weight: 700;
}

.post-modal .post-content ul,
.post-modal .post-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.post-modal .post-content li {
  margin-bottom: 8px;
}

.post-modal .post-content strong {
  font-weight: 700;
  color: var(--navy);
}

/* Blog Page Enhancements */
.featured-section {
  margin-bottom: 60px;
}

.featured-section h2 {
  text-align: center;
  margin-bottom: 32px;
  color: var(--navy);
}

.all-posts-section h2 {
  text-align: center;
  margin-bottom: 32px;
  color: var(--navy);
}

.filter-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-controls .btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}

.post-tags {
  margin-top: 12px;
}

.post-tags .tag {
  display: inline-block;
  background: var(--gradient-brand);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.featured-post {
  border: 2px solid var(--brand);
  background: linear-gradient(135deg, #f0f9ff 0%, white 100%);
}

.featured-post h3 a {
  color: var(--brand);
}

.meta.featured {
  background: var(--gradient-brand);
  color: white;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
  .post-modal .modal-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .post-modal .modal-header {
    padding: 24px 24px 16px;
  }
  
  .post-modal .modal-header h2 {
    font-size: 20px;
  }
  
  .post-modal .modal-body {
    padding: 24px;
  }
  
  .filter-controls {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-controls .btn {
    width: 200px;
  }
}

/* Order Modal */
.order-modal{
  background:rgba(0,0,0,0.7);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2000;
  animation:fadeIn 0.3s ease;
}
@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}
.modal-content{
  background:white;
  border-radius:20px;
  padding:32px;
  max-width:400px;
  width:90%;
  position:relative;
  animation:slideUp 0.3s ease;
  box-shadow:var(--shadow-xl);
}
@keyframes slideUp{
  from{transform:translateY(50px);opacity:0}
  to{transform:translateY(0);opacity:1}
}
.modal-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
  padding-bottom:16px;
  border-bottom:1px solid var(--border);
}
.modal-header h3{
  color:var(--navy);
  margin:0;
  font-size:20px;
}
.price-tag{
  background:white;
  color:#000000;
  border:2px solid #000000;
  padding:6px 12px;
  border-radius:16px;
  font-size:14px;
  font-weight:600;
}
.order-options{
  display:flex;
  gap:12px;
  margin-top:24px;
}
.order-options .btn{
  flex:1;
  text-align:center;
  padding:12px 16px;
  font-size:14px;
}
.close-modal{
  position:absolute;
  top:16px;
  right:16px;
  background:none;
  border:none;
  font-size:24px;
  color:var(--muted);
  cursor:pointer;
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  transition:all 0.2s ease;
}
.close-modal:hover{
  background:var(--surface);
  color:var(--navy);
}
