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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #444;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.section {
  padding: 90px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title h2 {
  font-size: 2.4rem;
  color: #2d3436;
  font-weight: 700;
}

.underline {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #1E3A6F, #E8B830);
  margin: 14px auto 10px;
  border-radius: 3px;
}

.section-sub {
  color: #888;
  font-size: 1.05rem;
  margin-top: 8px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #1E3A6F, #2B4C8E);
  color: #fff;
  box-shadow: 0 8px 25px rgba(30, 58, 111, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 58, 111, 0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: #fff;
  color: #2d3436;
  border-color: #fff;
  transform: translateY(-3px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.3s;
  background: linear-gradient(135deg, #1E3A6F, #2B4C8E);
  box-shadow: 0 4px 30px rgba(30, 58, 111, 0.3);
}

.header.scrolled {
  background: linear-gradient(135deg, #1E3A6F, #2B4C8E);
  box-shadow: 0 4px 30px rgba(30, 58, 111, 0.3);
  padding: 8px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.logo i {
  font-size: 2rem;
  color: #E8B830;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: #E8B830;
  border-radius: 2px;
  transition: width 0.3s;
}

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

.nav a:hover,
.nav a.active {
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1E3A6F 0%, #2B4C8E 30%, #E8B830 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.hero-content h2 span {
  display: block;
  font-size: 2.6rem;
  color: #fff;
  margin-top: 4px;
}

.hero-location {
  font-size: 1.15rem;
  margin-top: 12px;
  opacity: 0.9;
}

.hero-location i {
  color: #E8B830;
}

.hero-tagline {
  font-size: 1.15rem;
  opacity: 0.85;
  margin: 18px auto 32px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 55px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}

.strip-item i {
  color: #E8B830;
  font-size: 1.1rem;
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(30, 58, 111, 0.2);
  display: block;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #1E3A6F, #E8B830);
  color: #fff;
  padding: 20px 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 58, 111, 0.35);
}

.about-exp-badge .num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.about-exp-badge .txt {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-text p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 16px;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
}

.about-features-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #2d3436;
}

.about-features-list i {
  color: #1E3A6F;
  font-size: 1.2rem;
}

/* Gallery */
.gallery {
  background: linear-gradient(135deg, #F0F4FA 0%, #FFF9E6 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
  min-height: 200px;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(30, 58, 111, 0.85));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  padding: 6px 16px;
  border-radius: 50px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fff;
  padding: 38px 28px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: all 0.4s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1E3A6F, #E8B830);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(30, 58, 111, 0.15);
  border-color: rgba(30, 58, 111, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #F0F4FA, #FFF9E6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: all 0.4s;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #1E3A6F, #2B4C8E);
  transform: rotateY(180deg);
}

.feature-card:hover .feature-icon i {
  color: #fff;
}

.feature-icon i {
  font-size: 1.8rem;
  color: #1E3A6F;
  transition: all 0.4s;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #2d3436;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: #777;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, #2d3436 0%, #1a1a2e 100%);
}

.contact .section-title h2 {
  color: #fff;
}

.contact .section-sub {
  color: rgba(255,255,255,0.6);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  padding: 22px;
  border-radius: 16px;
  transition: all 0.3s;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
  border-color: rgba(30, 58, 111, 0.3);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #1E3A6F, #2B4C8E);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.3rem;
  color: #fff;
}

.contact-card h4 {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-card p {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.contact-form input,
.contact-form textarea {
  padding: 15px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s;
  outline: none;
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1E3A6F;
  background: rgba(255,255,255,0.1);
}

.contact-form button {
  align-self: flex-start;
}

.contact-form button i {
  margin-right: 8px;
}

/* Footer */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo i {
  font-size: 1.8rem;
  color: #E8B830;
}

.footer-logo h3 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
}

.footer-col > p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  transition: all 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  background: linear-gradient(135deg, #1E3A6F, #2B4C8E);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  opacity: 0.7;
}

.footer-col ul li i {
  color: #1E3A6F;
  width: 16px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #1E3A6F;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 22px 0;
  margin-top: 50px;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1E3A6F, #2B4C8E);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(30, 58, 111, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(30, 58, 111, 0.5);
}

/* Page Hero */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #1E3A6F 0%, #2B4C8E 50%, #E8B830 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider-container {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,111,0.75), rgba(43,76,142,0.6), rgba(232,184,48,0.3));
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  transform: translateY(30px);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-content .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.25);
}

.slide-content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.slide-content h2 span {
  display: block;
  font-size: 2.6rem;
  color: #fff;
  margin-top: 4px;
}

.slide-content .hero-tagline {
  font-size: 1.15rem;
  opacity: 0.85;
  margin: 18px auto 32px;
  max-width: 550px;
}

.slide-content .hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.dot.active {
  background: #fff;
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* WhatsApp Float Button */
.wa-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: waPulse 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
  color: #fff;
}

@keyframes waPulse {
  0% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
}

/* Home About */
.home-about .about-text h3 {
  font-size: 1.4rem;
  color: #2d3436;
  margin-bottom: 16px;
  font-weight: 600;
}

.home-about .about-text .btn {
  margin-top: 10px;
}

/* Home CTA */
.home-cta {
  background: linear-gradient(135deg, #1E3A6F, #2B4C8E);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn {
  font-size: 1.05rem;
  padding: 16px 44px;
}

.cta-content .btn-primary {
  background: #fff;
  color: #1E3A6F;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-content .btn-primary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Features Preview */
.features-preview .features-grid {
  margin-bottom: 0;
}

/* Mission Grid */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.mission-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: all 0.4s;
  border-top: 5px solid transparent;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30, 58, 111, 0.12);
  border-top-color: #1E3A6F;
}

.mission-card i {
  font-size: 3rem;
  color: #1E3A6F;
  margin-bottom: 20px;
}

.mission-card h3 {
  font-size: 1.4rem;
  color: #2d3436;
  margin-bottom: 14px;
  font-weight: 600;
}

.mission-card p {
  font-size: 0.98rem;
  color: #777;
  line-height: 1.8;
}

/* Contact Form Heading */
.contact-form h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

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

/* About text heading */
.about-text h3 {
  font-size: 1.4rem;
  color: #2d3436;
  margin-bottom: 16px;
  font-weight: 600;
}

/* Facility Cards */
.facility-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.facility-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.facility-card.reverse {
  direction: rtl;
}

.facility-card.reverse .facility-info {
  direction: ltr;
}

.facility-img {
  overflow: hidden;
  height: 100%;
}

.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
  min-height: 300px;
}

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

.facility-info {
  padding: 40px;
}

.facility-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F0F4FA, #FFF9E6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.facility-icon i {
  font-size: 1.6rem;
  color: #1E3A6F;
}

.facility-info h3 {
  font-size: 1.4rem;
  color: #2d3436;
  margin-bottom: 14px;
  font-weight: 600;
}

.facility-info p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

/* Classes Grid */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.class-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: all 0.4s;
  border-bottom: 4px solid transparent;
}

.class-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30, 58, 111, 0.12);
  border-bottom-color: #1E3A6F;
}

.class-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #F0F4FA, #FFF9E6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.class-icon i {
  font-size: 1.8rem;
  color: #1E3A6F;
}

.class-card h3 {
  font-size: 1.15rem;
  color: #2d3436;
  font-weight: 600;
  margin-bottom: 6px;
}

.class-card p {
  color: #666;
  font-size: 0.95rem;
}

.class-card span {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: #999;
  background: #f5f5f5;
  padding: 4px 14px;
  border-radius: 50px;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.reason-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(30, 58, 111, 0.12);
}

.reason-num {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(30, 58, 111, 0.08);
  line-height: 1;
}

.reason-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1E3A6F, #2B4C8E);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.reason-icon i {
  font-size: 1.6rem;
  color: #fff;
}

.reason-card h3 {
  font-size: 1.25rem;
  color: #2d3436;
  margin-bottom: 12px;
  font-weight: 600;
}

.reason-card p {
  font-size: 0.98rem;
  color: #666;
  line-height: 1.8;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  background: #fff;
  padding: 35px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: all 0.4s;
  border-top: 4px solid #1E3A6F;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(30, 58, 111, 0.12);
}

.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1E3A6F;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

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

.contact-map {
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.form-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-wide {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-wide input,
.contact-form-wide textarea {
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border 0.3s;
  outline: none;
  background: #fff;
  color: #333;
}

.contact-form-wide input:focus,
.contact-form-wide textarea:focus {
  border-color: #1E3A6F;
}

.contact-form-wide textarea {
  resize: vertical;
}

.contact-form-wide button {
  align-self: flex-start;
}

.contact-form-wide button i {
  margin-right: 8px;
}

/* Home about text */
.home-about .about-text h3 {
  font-size: 1.4rem;
  color: #2d3436;
  margin-bottom: 16px;
  font-weight: 600;
}

.home-about .about-text .btn {
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .slide-content h2 { font-size: 2.6rem; }
  .slide-content h2 span { font-size: 2rem; }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 992px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img {
    max-height: 400px;
    object-fit: cover;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content h2 {
    font-size: 2.6rem;
  }
  .hero-content h2 span {
    font-size: 2rem;
  }
  .mission-grid { grid-template-columns: 1fr; }
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .facility-card { grid-template-columns: 1fr; }
  .facility-card.reverse { direction: ltr; }
  .page-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: linear-gradient(135deg, #1E3A6F, #2B4C8E);
    flex-direction: column;
    transition: left 0.4s;
    padding: 40px 20px;
  }
  .nav.open {
    left: 0;
  }
  .nav ul {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .nav a {
    font-size: 1.2rem;
  }
  .hamburger {
    display: flex;
  }
  .slide-content h2 {
    font-size: 2.2rem;
  }
  .slide-content h2 span {
    font-size: 1.6rem;
  }
  .slider-arrow { display: none; }
  .section {
    padding: 60px 0;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
  .hero-strip {
    gap: 16px;
  }
  .strip-item {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
  .about-features-list {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.large {
    grid-column: span 2;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-exp-badge {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }
  .logo h1 {
    font-size: 1.2rem;
  }
  .classes-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .facility-info { padding: 25px; }
  .facility-img img { min-height: 220px; }
  .contact-map { min-height: 300px; }
  .page-hero { padding: 120px 0 50px; }
  .page-hero h1 { font-size: 1.9rem; }
  .cta-content h2 { font-size: 1.8rem; }
  .wa-float {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    bottom: 20px;
    left: 20px;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .slide-content h2 {
    font-size: 1.8rem;
  }
  .slide-content h2 span {
    font-size: 1.3rem;
  }
  .slide-content .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero p { font-size: 0.95rem; }
}
