/* ===== ROOT ===== */
:root {
  --red: #7f2063;
  --red-dark: #5e1649;
  --black: #111111;
  --gray-dark: #333;
  --gray-mid: #666;
  --gray-light: #999;
  --gray-bg: #F5F5F5;
  --white: #FFFFFF;
  --border: #E0E0E0;
  --font: 'Space Grotesk', sans-serif;
  --shadow: 0 2px 16px rgba(0,0,0,.07);
  --radius: 10px;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); font-size: 14px; line-height: 1.55; }
a { text-decoration: none; color: inherit; }
a:hover { color: inherit; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }
img { max-width: 100%; }

/* ===== BUTTONS ===== */
.btn-red {
  background: var(--red); color: #fff; border-radius: 7px; padding: 10px 22px;
  font-weight: 700; font-size: 18px; transition: background .2s, transform .1s;
  border: none; display: inline-block;
}
.btn-red:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }

.btn-black {
  background: #fff;
  color: var(--black);
  border-radius: 7px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  transition: opacity .2s;
}
.btn-black:hover { opacity: .8; color: #fff; }

.btn-outline {
  border: 2px solid var(--black); border-radius: 7px; padding: 9px 22px;
  font-weight: 600; font-size: 16px; background: transparent; color: var(--black); transition: all .2s;
}
.btn-outline:hover { background: var(--black); color: #fff; }

.btn-dark {
  background: #fff; color: #111; border-radius: 7px; padding: 11px 26px;
  font-weight: 700; font-size: 16px; border: none; transition: opacity .2s; white-space: nowrap;
}
.btn-dark:hover { opacity: .85; }

/* ===== NAVBAR ===== */
.site-nav {
  background: #fff; border-bottom: 1px solid var(--border); padding: 0;
  position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 8px rgba(0,0,0,.06);margin-top: 70px;
}
.nav-inner { display: flex; align-items: center; height: 52px; gap: 20px; padding: 0 16px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--red); flex-shrink: 0; }
.logo-icon {
  width: 30px; height: 30px; background: var(--red); border-radius: 5px;
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-weight: 900; font-size: 12px; flex-shrink: 0;
}
.badge-red { background: var(--red); color: #fff; border-radius: 20px; padding: 3px 10px; font-size: 11px; font-weight: 600; flex-shrink: 0; }
.nav-links { display: flex; gap: 18px; align-items: center; flex: 1; }
.nav-links a { color: var(--gray-dark); font-size: 13px; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; flex-shrink: 0; }
.nav-right span { font-size: 12px; color: var(--gray-dark); white-space: nowrap; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; padding: 6px; cursor: pointer; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); margin: 4px 0; border-radius: 2px; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; background: #fff; border-top: 1px solid var(--border); padding: 16px;
  position: absolute; top: 100%; left: 0; right: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 999;
}
.mobile-menu.open { display: block; animation: slideDown .2s ease; }
.mobile-menu a { display: block; padding: 10px 0; font-size: 14px; color: var(--gray-dark); border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mob-phones { padding: 12px 0 0; font-size: 13px; color: var(--gray-dark); }

/* ===== SUBNAV ===== */
.subnav { background: #fff; border-bottom: 1px solid var(--border); overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
.subnav::-webkit-scrollbar { height: 2px; }
.subnav::-webkit-scrollbar-thumb { background: var(--border); }
.subnav-inner { display: flex; min-width: max-content; padding: 0 16px; }
.subnav-inner a {
  display: inline-flex; align-items: center; height: 38px; padding: 0 13px;
  font-size: 12px; color: var(--gray-dark); border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s; white-space: nowrap;
}
.subnav-inner a:hover { color: var(--black); }
.subnav-inner a.active { color: var(--black); font-weight: 700; border-bottom-color: var(--red); }

/* ===== BREADCRUMB ===== */
.breadcrumb-wrap { padding: 8px 0; font-size: 11px; color: var(--gray-light); }
.breadcrumb-wrap a { color: var(--gray-light); }
.breadcrumb-wrap a:hover { color: var(--red); }
.breadcrumb-wrap span { color: var(--gray-dark); }

/* ===== HERO ===== */
.hero-section { padding: 32px 0 40px; }
.hero-title { font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 6px; }
.hero-title .city { color: var(--red); display: block; }
.hero-sub { font-size: 15px; color: var(--gray-dark); margin: 10px 0 22px; }
.hero-form-row { display: flex; gap: 8px; flex-wrap: nowrap; }
.hero-form-row input {
  flex: 1; border: 1.5px solid var(--border); border-radius: 7px; padding: 12px 14px;
  font-family: var(--font); font-size: 14px; outline: none; transition: border-color .2s; min-width: 0;
  min-height: 60px;
}
.hero-form-row input:focus { border-color: var(--red); }
.hero-consent { font-size: 11px; color: var(--gray-light); display: flex; gap: 6px; align-items: flex-start; margin-top: 8px; }
.hero-consent input { margin-top: 2px; accent-color: var(--red); }

.map-block {
  background: linear-gradient(135deg, #e8eef4 0%, #d0dce8 100%);
  border-radius: 20px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
}
.map-block svg { opacity: .35; }
.map-pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  width: 14px; height: 14px; background: var(--red); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(127,32,99,.25);
}
.map-pin::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 2px; height: 10px; background: var(--red);
}

/* ===== BENEFITS ===== */
.benefits-section { background: var(--gray-bg); padding: 36px 0; }
.benefits-heading { font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.4; }
.hl { background: var(--red); color: #fff; padding: 1px 7px; border-radius: 4px; display: inline; }

.benefit-card {
 background: #fff;
  border-radius: 20px;
  padding: 26px;
  
  display: flex;
  flex-direction: column;
 box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
}
/* Ikonka joylari - benefit-icon uchun placeholder shakl */
.benefit-icon {
   border-radius: 8px; flex-shrink: 0; width: 30%;
}
.benefit-card h4 { font-size: 18px; font-weight: 600; line-height: 1.3; margin: 16px; }

/* ===== CONTACT HEAD ===== */
.contact-head { padding: 32px 0 20px; }
.contact-head h2 { font-size: clamp(18px, 3vw, 22px); font-weight: 700; line-height: 1.35;  }
.hotline-phone { font-size: clamp(20px, 3vw, 26px); font-weight: 700; color: var(--red); }
.hotline-email { font-size: 13px; color: var(--gray-mid); }

/* ===== OFFICES ===== */
.offices-section { padding: 0 0 40px; }
.office-row {
  border-top: 1px solid var(--border); padding: 16px 0;
  display: flex; flex-wrap: wrap; align-items: center;
}
.office-label { font-size: 24px; color: var(--gray-light); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.office-addr { font-size: 18px; font-weight: 500; }
.office-contacts { font-size: 16px; color: var(--gray-dark); }
.office-cta-card { background: var(--red); color: #fff; border-radius: 20px; padding: 14px 16px; box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);}
.office-cta-card p { font-size: 24px; font-weight: 600; line-height: 1.3; margin: 0 0 3px; box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);}
.office-cta-card span { font-size: 16px; opacity: .8; display: block; margin-bottom: 8px; }
.office-cta-card button {
  background: #ffffff; color: #111; border-radius: 6px; padding: 7px 14px;
  font-size: 18px; font-weight: 600; border: none; cursor: pointer; transition: opacity .2s;
}
.office-cta-card button:hover { opacity: .85; }

/* ===== BUDGET ===== */
.budget-section { background: var(--gray-bg); padding: 36px 0; }
.budget-dark-card {
  background: linear-gradient(135deg, #4bb61b, #559e23, #0e822b); border-radius: 20px; padding: 28px;box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
  color: #fff; min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end;
}
.budget-dark-card h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 700; margin-bottom: 8px; }
.budget-dark-card p { font-size: 16px; opacity: .85; line-height: 1.5; margin: 0; }
.budget-form-card { background: var(--red); border-radius: 20px; padding: 28px; color: #fff; height: 360px;box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);}
.budget-form-card h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; margin-bottom: 20px; }
.budget-form-card input {
  width: 100%; background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 8px; padding: 11px 15px; color: #fff; font-family: var(--font); font-size: 16px;
  margin-bottom: 10px; outline: none; transition: border-color .2s;
}
.budget-form-card input:focus { border-color: rgba(255,255,255,.7); }
.budget-form-card input::placeholder { color: rgba(255,255,255,.65); }
.budget-form-card button {
  width: 100%; background: #fff; color: #111; border-radius: 8px; padding: 12px;
  font-weight: 700; font-size: 18px; margin-top: 4px; border: none; cursor: pointer; transition: opacity .2s;
}
.budget-form-card button:hover { opacity: .85; }
.consent-txt { font-size: 11px; margin-top: 8px; opacity: .7; }

/* ===== CREDIT ===== */
.credit-section { padding: 40px 0; }
.credit-section h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; margin-bottom: 12px; }
.credit-section p { font-size: 16px; color: var(--gray-dark); line-height: 1.6; margin-bottom: 16px; }
.credit-visual {
   border-radius: 20px; height: 220px;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.credit-percent { font-size: clamp(80px, 12vw, 120px); font-weight: 700; color: var(--red); line-height: 1; opacity: .9; }
.credit-percent-label { position: absolute; bottom: 20px; right: 20px; color: #fff; font-size: 13px; font-weight: 600; text-align: right; }

/* ===== LEVELS / PRICES ===== */
.levels-section {  padding: 32px 0; }
.level-card {
  background: #fff; border-radius:20px ; padding: 16px; display: flex; border-radius: 20px;
  flex-direction: column; gap: 6px; border: 1.5px solid var(--border);
  transition: border-color .2s, box-shadow .2s; cursor: pointer; height: 100%;box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
}
.level-card:hover { border-color: var(--red); box-shadow: 1 4px 16px rgba(127, 32, 98, 0.493); background-color: rgba(127, 214, 56, 0.7);}
.level-name { font-size: 24px; font-weight: 700; }
.level-check { color: var(--red); font-size: 26px; }
.level-price { font-size: 26px; font-weight: 700; margin-top: auto; }
.level-price span { font-size: 11px; color: var(--gray-mid); font-weight: 400; }

/* ===== SECTION TITLE ===== */
.section-title { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.section-title h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; }
.count-badge { font-size: 22px; background: var(--gray-bg); color: var(--gray-mid); padding: 2px 8px; border-radius: 20px; font-weight: 600; }

/* ===== TABS ===== */
.tab-row {
  display: flex; border-bottom: 1.5px solid var(--border); margin-bottom: 20px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.tab-row::-webkit-scrollbar { height: 2px; }
.tab-item {
  padding: 10px 14px; font-size: 18px; font-weight: 500; white-space: nowrap;
  border-bottom: 2px solid transparent; cursor: pointer; background: none; color: var(--gray-dark);
  border: none; outline: none; transition: color .2s, border-color .2s; flex-shrink: 0;
}
.tab-item.active { color: var(--black); font-weight: 700; border-bottom-color: var(--red); }
.tab-item .sub { font-size: 18px; color: var(--gray-light); display: block; font-weight: 400; }

/* ===== FILTERS ===== */
.filters-row { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; align-items: center; }
.filter-select {
  border: 1.5px solid var(--border); border-radius: 7px; padding: 7px 30px 7px 12px;
  font-family: var(--font); font-size: 18px; outline: none; appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E") no-repeat right 10px center;
  cursor: pointer;
}

/* ===== TAGS ===== */
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.tag { padding: 5px 12px; border-radius: 20px; font-size: 12px; border: 1.5px solid var(--border); cursor: pointer; transition: all .2s; background: #fff; color: var(--gray-dark); }
.tag.active { background: var(--black); color: #fff; border-color: var(--black); font-size: 20px; }
.tag:hover:not(.active) { border-color: var(--gray-dark); }

/* ===== PROG CARDS ===== */
.programs-section { padding: 40px 0; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.prog-card {
  border: 1.5px solid var(--border); border-radius: 20px; padding: 16px;
  display: flex; flex-direction: column; gap: 7px; min-height: 130px;
  transition: border-color .2s, box-shadow .2s; position: relative; overflow: hidden; cursor: pointer;box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
}
.prog-card:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.prog-card.featured { background: var(--red); border-color: var(--red); color: #fff; }
.prog-cat { font-size: 18px; color: var(--gray-light); }
.prog-card.featured .prog-cat { color: rgba(255,255,255,.75); }
.prog-name { font-size: 18px; font-weight: 700; flex: 1; line-height: 1.3; }
.btn-apply {
  align-self: flex-start; background: var(--red); color: #fff; border-radius: 6px; padding: 6px 14px;
  font-size: 16px; font-weight: 600; border: none; cursor: pointer; transition: opacity .2s;
}
.btn-apply:hover { opacity: .85; }
.prog-card.featured .btn-apply { background: #fff; color: var(--red); }
.show-more-btn {
  display: block; margin: 20px auto 0; border: 1.5px solid var(--border); background: #fff;
  border-radius: 8px; padding: 10px 28px; font-size: 16px; font-weight: 600; color: var(--gray-dark); transition: all .2s;
}
.show-more-btn:hover { border-color: var(--black); color: var(--black); }

/* ===== CTA BAND ===== */
.cta-band { background: var(--red); padding: 36px 0; color: #fff; border-radius: 20px; }
.cta-band h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; margin-bottom: 16px; }
.cta-form-row { display: flex; gap: 8px; flex-wrap: wrap; }
.cta-form-row input {
  flex: 1; min-width: 160px; background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 7px; padding: 11px 14px; color: #fff; font-family: var(--font); font-size: 14px;
  outline: none; transition: border-color .2s; min-height: 60px;
}
.cta-form-row input:focus { border-color: rgba(255,255,255,.7); }
.cta-form-row input::placeholder { color: rgba(255,255,255,.65); }

/* ===== FACULTIES ===== */
.faculties-section { padding: 40px 0; }
.faculties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.fac-card {
  border: 1.5px solid var(--border); border-radius: 20px; padding: 18px; min-height: 120px;
  display: flex; flex-direction: column; gap: 5px; transition: border-color .2s, box-shadow .2s; cursor: pointer;
}
.fac-card:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.fac-card.featured { background: var(--red); color: #fff; border-color: var(--red); }
.fac-spec-count { font-size: 11px; color: var(--gray-light); }
.fac-card.featured .fac-spec-count { color: rgba(255,255,255,.7); }
.fac-name { font-size: 15px; font-weight: 700; flex: 1; line-height: 1.3; }
.fac-btn {
  align-self: flex-start; background: var(--red); color: #fff; border-radius: 6px; padding: 6px 14px;
  font-size: 11px; font-weight: 600; border: none; cursor: pointer; transition: opacity .2s;
}
.fac-btn:hover { opacity: .85; }
.fac-card.featured .fac-btn { background: #111; }

/* ===== HOW TO APPLY ===== */
.apply-section { background: var(--gray-bg); padding: 40px 0; }
.apply-section h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; margin-bottom: 24px; }
.step-card {
  background: var(--red); border-radius: 20px; padding: 20px; color: #fff;
  height: 100%; display: flex; flex-direction: column; gap: 8px; min-height: 110px;box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
}
.step-num { font-size: 36px; font-weight: 700; opacity: .3; }
.step-text { font-size: 18px; font-weight: 600; line-height: 1.4; }

/* ===== FORMATS ===== */
.formats-section { padding: 40px 0; }
.formats-section h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; margin-bottom: 24px; }
.format-card {
  border: 1.5px solid var(--border); border-radius: 20px; padding: 18px;
  display: flex; flex-direction: column; gap: 8px; height: 100%; min-height: 160px;
  transition: border-color .2s, box-shadow .2s; cursor: pointer;box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
}
.format-card:hover { border-color: var(--red); box-shadow: 0 4px 14px rgba(127,32,99,.1);box-shadow: 0 0 14px rgba(0, 0, 0, 0.12); }
.format-card.active { border-color: var(--red); background: #fdf5f9; }
/* Ikonka joyi uchun placeholder */
.format-card .format-icon-placeholder {
  width: 32px; height: 32px; background: var(--gray-bg); border-radius: 6px;
}
.format-name { font-size: 18px; font-weight: 700; }
.format-desc { font-size: 16px; color: var(--gray-dark); line-height: 1.5; }

/* ===== LEVELS DETAIL ===== */
.levels-detail-section { background: var(--gray-bg); padding: 40px 0; }
.levels-detail-section h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; margin-bottom: 20px; }
.level-tabs { display: flex; gap: 6px; margin-bottom: 24px; flex-wrap: wrap; }
.level-tab {
  padding: 7px 16px; border-radius: 10px; border: 1.5px solid var(--border);
  background: #fff; font-size: 16px; font-weight: 600; cursor: pointer; transition: all .2s;
}
.level-tab.active { background: var(--black); color: #fff; border-color: var(--black); }
.level-info-card { background: #fff; border-radius: 20px; padding: 22px;box-shadow: 0 0 14px rgba(0, 0, 0, 0.12); }
.level-info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.level-info-card p { font-size: 16px; color: var(--gray-dark); line-height: 1.6; margin-bottom: 16px; }
.level-stat-card {
  background: #fff; border-radius: 20px; padding: 20px; text-align: center;
  height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.level-stat-card .num { font-size: clamp(36px, 5vw, 48px); font-weight: 700; line-height: 1; margin-bottom: 4px; }
.level-stat-card .label { font-size: 12px; color: var(--gray-mid); }
.level-badge-card { background: var(--red); border-radius: 20px; padding: 20px; color: #fff; text-align: center; }
/* Ikonka joyi - level badge */
.level-badge-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,.25);
  border-radius: 50%; margin: 0 auto 8px;
}
.level-badge-card p { font-size: 13px; font-weight: 600; margin: 0; }

/* ===== ABOUT ===== */
.about-section { padding: 40px 0; }
.about-section h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; margin-bottom: 24px; }
.about-text h3 { font-size: clamp(18px, 3vw, 22px); font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.about-text h3 em { color: var(--red); font-style: normal; }
.about-text p { font-size: 16px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 14px; }
.about-video {
  background: #1a1a1a; border-radius: 20px; height: 450px;box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: opacity .2s;
}
.about-video:hover { opacity: .9; }
.play-btn {
  width: 58px; height: 58px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; transition: transform .2s;
}
.about-video:hover .play-btn { transform: scale(1.1); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: 20px; overflow: hidden; margin-top: 24px; }
.stat-item { background: var(--gray-bg); padding: 20px; text-align: center; }
.stat-item .num { font-size: clamp(32px, 3vw, 52px); font-weight: 700; color: var(--red); line-height: 1; }
.stat-item .label { font-size: 22px; color: var(--gray-mid); margin-top: 4px; line-height: 1.3; }

/* ===== RATINGS ===== */
.ratings-section { background: var(--gray-bg); padding: 40px 0; }
.ratings-section h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; margin-bottom: 24px; }
.rating-card { background: #fff; border-radius: 20px; padding: 22px; border-left: 4px solid var(--red); height: 100%; box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);}
.rating-badge {
  display: inline-flex; align-items: center; gap: 5px; background: #4bb61b; color: #fff;
  border-radius: 10px; padding: 3px 50px; font-size: 16px; font-weight: 700; margin-bottom: 10px;
}
.rating-source { font-size: 10px; color: var(--gray-light); margin-bottom: 7px; }
.rating-desc { font-size: 18px; font-weight: 600; line-height: 1.4; }

/* ===== FAQ ===== */
.faq-section { padding: 40px 0; }
.faq-section h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; margin-bottom: 18px; }
.faq-tabs { display: flex; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.faq-tab {
  padding: 6px 14px; border-radius: 10px; border: 1.5px solid var(--border);
  background: #fff; font-size: 18px; font-weight: 600; cursor: pointer; transition: all .2s;
}
.faq-tab.active { background: var(--black); color: #fff; border-color: var(--black); }
.faq-item { border-top: 1px solid var(--border); padding: 14px 0; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-size: 18px; font-weight: 500; gap: 14px; }
.faq-toggle {
  width: 24px; height: 24px; border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  color: var(--gray-mid); flex-shrink: 0; transition: all .2s;
}
.faq-item.open .faq-toggle { background: var(--red); border-color: var(--red); color: #fff; }
.faq-a { font-size: 16px; color: var(--gray-dark); line-height: 1.6; padding-top: 8px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ===== ADMISSION ===== */
.admission-section { background: var(--gray-bg); padding: 40px 0; }
.admission-section h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; margin-bottom: 22px; }
.admission-text { font-size: clamp(18px, 2.5vw, 26px); font-weight: 600; line-height: 1.5; }
.admission-card {
 background:#fff;
  color: #111;
  border-radius: 20px;
  padding: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: opacity .2s;
  margin-bottom: 10px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);

}
.admission-card:hover { opacity: .85; }
.admission-card span { font-size: 18px; font-weight: 600; }
.admission-card .arr { font-size: 18px; color: var(--red); }

/* ===== REVIEWS ===== */
.reviews-section { padding: 40px 0; }
.reviews-section h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 700; margin-bottom: 22px; }
.review-card { border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; height: 100%;box-shadow: 0 0 14px rgba(0, 0, 0, 0.12); }
.review-thumb {
  background: #1a1a1a; height: 260px;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.review-play {
  width: 42px; height: 42px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px;
  cursor: pointer; transition: transform .2s;
}
.review-card:hover .review-play { transform: scale(1.1); }
.review-tag { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,.15); color: #fff; border-radius: 4px; padding: 2px 7px; font-size: 10px; }
.review-body { padding: 14px; }
.review-name { font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.review-role { font-size: 16px; color: var(--gray-light); margin-bottom: 7px; }
.review-text { font-size: 16px; color: var(--gray-dark); line-height: 1.5; }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--red); padding: 40px 0; color: #fff; }
.final-cta h2 { font-size: clamp(24px, 3.5vw, 31px); font-weight: 700; margin-bottom: 4px; }
.final-cta h2 .hl { background: #fff;
  border-radius: 5px;
  padding: 0 7px;
  display: inline;
  color: #7f2063; }
.final-cta-form { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.final-cta-form input {
  flex: 1; min-width: 150px; background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 7px; padding: 11px 14px; color: #fff; font-family: var(--font); font-size: 13px; outline: none;min-height: 60px;
}
.final-cta-form input::placeholder { color: rgba(255,255,255,.65); }

/* ===== FOOTER ===== */
footer { background: var(--black); color: #fff; padding: 40px 0 24px; }
.footer-logo { font-size: 17px; font-weight: 700; color: var(--red); margin-bottom: 14px; }
.footer-col h4 { font-size: 12px; font-weight: 700; margin-bottom: 12px; color: rgba(255,255,255,.9); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.footer-col ul li a { font-size: 11px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding-top: 20px; }
.footer-contacts h4 { font-size: 11px; font-weight: 700; margin-bottom: 7px; color: rgba(255,255,255,.9); }
.footer-contacts .addr { font-size: 11px; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.phone-big { font-size: clamp(16px, 3vw, 20px); font-weight: 700; color: var(--red); }
.social-btn {
  width: 34px; height: 34px; background: rgba(255,255,255,.1); border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
  color: #fff; transition: background .2s; margin-right: 6px;
}
.social-btn:hover { background: var(--red); color: #fff; }
.footer-copy { font-size: 10px; color: rgba(255,255,255,.3); margin-top: 14px; }

/* ===== TOAST ===== */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.toast-msg {
  background: var(--black); color: #fff; padding: 12px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 500; box-shadow: 0 4px 20px rgba(0,0,0,.3);
  display: flex; align-items: center; gap: 10px; animation: toastIn .3s ease; margin-top: 8px;
}
.toast-msg .t-icon {
  width: 20px; height: 20px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 80px; right: 24px; width: 40px; height: 40px;
  background: var(--red); color: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  cursor: pointer; opacity: 0; transform: translateY(10px); transition: all .3s;
  z-index: 999; box-shadow: 0 2px 12px rgba(127,32,99,.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-up { opacity: 0; animation: fadeUp .55s ease both; }
.hero-title  { animation: fadeUp .5s ease both; }
.hero-sub    { animation: fadeUp .5s .1s ease both; }
.hero-form-row { animation: fadeUp .5s .2s ease both; }
.hero-consent  { animation: fadeUp .5s .3s ease both; }

/* Scroll reveal */
.reveal { transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none;}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .nav-links, .nav-right .btn-red, .nav-right span { display: none; }
  .programs-grid, .faculties-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .ratings-grid-wrap { grid-template-columns: repeat(2, 1fr); }
  .map-block { margin: 10px; }
}

@media (max-width: 767px) {
  
  .programs-grid, .faculties-grid { grid-template-columns: 1fr 1fr; }
  .formats-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid-wrap { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .ratings-grid-wrap { grid-template-columns: 1fr; }
  .hero-form-row { flex-wrap: wrap; }
  .cta-form-row input { min-width: 100%; flex: none; }
  .footer-logo-col { display: none; }
}

@media (max-width: 575px) {
  .programs-grid, .faculties-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .steps-grid-wrap { grid-template-columns: 1fr; }
  .subnav-inner a { padding: 0 10px; font-size: 11px; }
  .office-row { flex-direction: column; }
  .budget-dark-card, .budget-form-card { border-radius: 20px; }
}
