/* Belle Menti Montessori School - Lake Highland Prep Inspired Design */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary-green: #5c6b1f;
  --dark-green: #3d4815;
  --accent-gold: #8b6914;
  --light-gold: #c4a35a;
  --cream: #f5f5f0;
  --white: #ffffff;
  --off-white: #fafaf8;
  --light-gray: #e8e8e8;
  --medium-gray: #888888;
  --text-dark: #2a2a2a;
  --text-light: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary-green);
}

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

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.logo-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  color: var(--light-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.header.scrolled .logo-name {
  color: var(--primary-green);
}

.header.scrolled .logo-circle {
  background: var(--white);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  gap: 35px;
  list-style: none;
  position: relative;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  list-style: none;
  padding: 15px 0;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 25px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--primary-green);
  padding-left: 30px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-gold);
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--light-gold);
}

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

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--primary-green);
}

.header.scrolled .nav-link::after {
  background: var(--primary-green);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 50%, #2d4a1f 100%);
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-welcome {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 42px;
  color: var(--white);
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
}

.explore-button {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
  cursor: pointer;
}

.explore-text {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.explore-arrow {
  width: 24px;
  height: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PROGRAMS OVERVIEW SECTION
   ============================================ */
.programs-overview-section {
  text-align: center;
  background: var(--off-white);
  padding: 80px 60px;
}

.programs-overview-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 50px;
}

.programs-overview-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 700px;
  margin: 0 auto;
}

.programs-overview-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--primary-green);
  position: relative;
}

.programs-overview-item::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--light-gold);
  margin: 20px auto 0;
}

.programs-overview-item:last-child::after {
  display: none;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 100px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.location-pin {
  width: 40px;
  height: 40px;
  fill: var(--text-dark);
}

.section-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: var(--medium-gray);
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 8px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 25px;
}

.section-title-alt {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 48px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.section-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.divider-line {
  width: 1px;
  height: 60px;
  background: var(--light-gray);
  margin: 0 auto 40px;
}

/* ============================================
   PROGRAMS SECTION (Like LHP Schools Section)
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.program-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.program-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.program-line {
  flex: 1;
  height: 1px;
  background: var(--light-gray);
}

.program-image-container {
  position: relative;
  height: 320px;
  overflow: hidden;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--primary-green) 0%, transparent 50%, var(--primary-green) 100%) 1;
}

.program-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, #e8e4d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
  font-size: 14px;
}

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

.program-info {
  padding: 20px 0;
}

.program-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.program-ages {
  font-size: 14px;
  color: var(--text-light);
}

/* ============================================
   ABOUT/HISTORY SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-image-container {
  position: relative;
}

.about-image {
  width: 100%;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--primary-green) 0%, transparent 50%, var(--primary-green) 100%) 1;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--cream) 0%, #e8e4d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
  font-size: 14px;
  border: 3px solid transparent;
  border-image: linear-gradient(135deg, var(--primary-green) 0%, transparent 50%, var(--primary-green) 100%) 1;
}

/* ============================================
   VALUES/MISSION CARDS
   ============================================ */
.values-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  position: relative;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 400px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'%3E%3Cpath d='M50 200V100M50 100C30 80 20 60 30 40C40 20 60 20 70 40C80 60 70 80 50 100' stroke='%23e8e8e8' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center;
  opacity: 0.5;
  pointer-events: none;
}

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

.value-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.value-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 100%);
  transition: transform 0.5s ease;
}

.value-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 107, 31, 0.45) 0%, rgba(61, 72, 21, 0.65) 100%);
  pointer-events: none;
}

.value-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}

.value-card:hover .value-card-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.value-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.value-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 15px;
}

.value-card-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.value-card:hover .value-card-btn {
  opacity: 1;
  transform: translateY(0);
}

.value-card-btn:hover {
  background: var(--white);
  color: var(--text-dark);
}

/* ============================================
   QUOTE/TESTIMONIAL SECTION
   ============================================ */
.quote-section {
  background: var(--primary-green);
  padding: 80px 60px;
  text-align: center;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.quote-author {
  font-size: 14px;
  color: var(--light-gold);
  letter-spacing: 2px;
}

/* ============================================
   HIGHLIGHTS/STATS SECTION
   ============================================ */
.highlights-section {
  background: var(--off-white);
  padding: 80px 60px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.highlight-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 10px;
}

.highlight-number sup {
  font-size: 28px;
  vertical-align: super;
}

.highlight-label {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   TEAM PAGE
   ============================================ */
.page-hero {
  background: var(--primary-green);
  padding: 160px 60px 80px;
  text-align: center;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: center;
}

.team-member {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.team-member-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.team-member-photo-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--cream) 0%, #e8e4d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
  font-size: 14px;
}

.team-member-info {
  padding: 25px;
  text-align: center;
}

.team-member-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.team-member-title {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CURRICULUM PAGE
   ============================================ */
.curriculum-content {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.schedule-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.schedule-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 40px;
}

.schedule-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--primary-green);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-gray);
}

.schedule-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
}

.schedule-time {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 14px;
}

.schedule-activity {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.schedule-note {
  margin-top: 30px;
  padding: 25px;
  background: var(--off-white);
  border-left: 4px solid var(--primary-green);
}

.schedule-note p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   ADMISSIONS PAGE
   ============================================ */
.admissions-content {
  padding: 80px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.admissions-intro {
  text-align: center;
  margin-bottom: 60px;
}

.admissions-intro p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}

.admissions-steps {
  counter-reset: step-counter;
}

.admission-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--light-gray);
}

.admission-step:last-child {
  border-bottom: none;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
}

.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.step-content ul {
  list-style: none;
  padding-left: 0;
}

.step-content ul li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}

.step-content ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--primary-green);
}

/* ============================================
   CALENDAR PAGE
   ============================================ */
.calendar-content {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.calendar-container {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 40px;
  text-align: center;
}

.calendar-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.calendar-image {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.calendar-placeholder {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  color: var(--medium-gray);
}

.calendar-placeholder-text {
  font-size: 18px;
  margin-bottom: 10px;
}

.calendar-placeholder-note {
  font-size: 14px;
  color: var(--text-light);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.contact-info-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.contact-item-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-item-content p,
.contact-item-content a {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.6;
}

.contact-item-content a:hover {
  color: var(--primary-green);
}

.contact-hours {
  margin-top: 40px;
  padding: 30px;
  background: var(--off-white);
}

.contact-hours h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
  color: var(--text-light);
}

.hours-list li:last-child {
  border-bottom: none;
}

/* Contact Form */
.contact-form-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--light-gray);
}

.contact-form-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 25px;
}

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

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

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(92, 107, 31, 0.1);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-submit-btn {
  padding: 16px 40px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

.form-submit-btn:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.contact-map {
  height: 100%;
  min-height: 500px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
  border: 1px solid var(--light-gray);
}

.contact-map-container {
  position: relative;
  height: 100%;
  min-height: 500px;
  border: 1px solid var(--light-gray);
  overflow: hidden;
}

.contact-map-container iframe {
  display: block;
}

.map-apple-link {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text-dark);
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.map-apple-link:hover {
  background: var(--primary-green);
  color: var(--white);
}

.map-apple-link:hover svg {
  stroke: var(--white);
}

/* ============================================
   TUITION PAGE
   ============================================ */
.tuition-content {
  padding: 80px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.tuition-section {
  background: var(--white);
}

.tuition-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
}

.tuition-note-box {
  background: var(--off-white);
  padding: 25px 30px;
  margin-bottom: 40px;
  border-left: 4px solid var(--primary-green);
}

.tuition-note-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

.tuition-programs {
  margin-bottom: 50px;
}

.tuition-program-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}

.tuition-program-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.tuition-program-item p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

.tuition-program-subitem {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--light-gray);
}

.tuition-program-subitem p {
  font-size: 15px;
  color: var(--text-light);
}

.tuition-program-item.special {
  background: var(--off-white);
  padding: 20px;
  border-left: 3px solid var(--accent-gold);
}

.tuition-important {
  background: var(--primary-green);
  color: var(--white);
  padding: 20px 30px;
  text-align: center;
  margin: 30px 0;
  border-radius: 4px;
}

.tuition-important p {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.tuition-reservation {
  background: var(--off-white);
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 4px;
}

.tuition-reservation h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.tuition-reservation p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

.tuition-additional {
  margin-bottom: 50px;
}

.tuition-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
}

.tuition-item p {
  font-size: 16px;
  color: var(--text-dark);
}

.tuition-contact {
  padding: 25px 0;
  text-align: center;
}

.tuition-contact p {
  font-size: 18px;
  color: var(--text-light);
  font-style: italic;
}

.tuition-special-programs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

.special-program-link {
  display: block;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.special-program-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.special-program-link h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 60px 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-brand .logo-circle {
  width: 60px;
  height: 60px;
}

.footer .logo-circle {
  background: transparent;
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 18px;
}

.footer-description {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--light-gold);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 80px 40px;
  }
  
  .hero-title {
    font-size: 56px;
  }
  
  .hero-welcome {
    font-size: 32px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .programs-overview-section {
    padding: 60px 20px;
  }
  
  .programs-overview-title {
    font-size: 28px;
    margin-bottom: 35px;
  }
  
  .programs-overview-item {
    font-size: 20px;
  }
  
  .programs-overview-list {
    gap: 20px;
  }
  
  .header-inner {
    padding: 15px 20px;
  }
  
  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  }
  
  .nav-container.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 25px;
  }
  
  .nav-link {
    color: var(--text-dark);
    font-size: 16px;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-welcome {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 32px;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card {
    height: 300px;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 40px 20px;
  }
  
  .page-hero {
    padding: 140px 20px 60px;
  }
  
  .page-hero-title {
    font-size: 40px;
  }
  
  .admission-step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-welcome {
    font-size: 20px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .schedule-item {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  
  .admission-step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto 15px;
  }
}
