/* =============================================
   ÖZŞEN KOLEJİ - Component Styles
   ============================================= */

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
}

.topbar-contact a {
  color: rgba(255,255,255,0.7);
  margin-right: 20px;
  transition: var(--transition-fast);
}
.topbar-contact a:hover { color: var(--secondary); }
.topbar-contact i { margin-right: 5px; color: var(--secondary); }

.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  font-size: 0.7rem;
  margin-left: 6px;
  transition: var(--transition-fast);
}
.topbar-social a:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* ===== NAVBAR ===== */
.main-navbar {
  background: var(--white);
  height: var(--navbar-height);
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1040;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.main-navbar.scrolled {
  top: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.main-navbar .navbar-brand img {
  height: 56px;
  width: auto;
  transition: var(--transition);
}

.main-navbar.scrolled .navbar-brand img { height: 48px; }

.main-navbar .nav-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark) !important;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.65rem !important;
  transition: var(--transition-fast);
  position: relative;
}

.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--primary) !important;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { width: 60%; }

.main-navbar .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  margin-top: 8px;
  min-width: 200px;
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.main-navbar .dropdown-item {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.main-navbar .dropdown-item i {
  width: 18px;
  margin-right: 6px;
  color: var(--primary);
}

.main-navbar .dropdown-item:hover {
  background: var(--primary-50);
  color: var(--primary);
}

.navbar-btn {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 8px 18px !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  margin-left: 6px;
}
.navbar-btn:hover {
  background: var(--secondary) !important;
  color: var(--dark) !important;
}
.navbar-btn::after { display: none !important; }

.navbar-toggler {
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 5px 9px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B4D8E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel { position: relative; }

.hero-carousel .carousel-item {
  height: 92vh;
  min-height: 600px;
  max-height: 900px;
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel .carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 53, 0.85) 0%,
    rgba(27, 77, 142, 0.60) 50%,
    rgba(13, 27, 53, 0.40) 100%
  );
}

.hero-carousel .carousel-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 0 5%;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title span { color: var(--secondary); }

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-carousel .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: var(--transition);
}
.hero-carousel .carousel-indicators button.active {
  background: var(--secondary);
  width: 32px;
  border-radius: 4px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: var(--transition);
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next { opacity: 1; }

.carousel-control-prev { left: 24px; }
.carousel-control-next { right: 24px; }

.carousel-control-prev-icon,
.carousel-control-next-icon { width: 18px; height: 18px; }

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--white);
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--secondary);
  color: var(--dark);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-md);
}

.about-badge .badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge .badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--primary-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.feature-item h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== KADEME CARDS ===== */
.kademe-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.kademe-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.kademe-card-header {
  padding: 28px 24px 20px;
  position: relative;
}

.kademe-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--white);
}

.kademe-card .card-age {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 4px;
}

.kademe-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.kademe-card-body {
  padding: 20px 24px 24px;
  flex: 1;
}

.kademe-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.kademe-card-body ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.kademe-card-body ul li:last-child { border-bottom: none; }
.kademe-card-body ul li i { color: var(--primary); font-size: 0.75rem; }

.kademe-anaokulu .kademe-card-header { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.kademe-ilkokul  .kademe-card-header { background: linear-gradient(135deg, #4ECDC4, #44A8B3); }
.kademe-ortaokul .kademe-card-header { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.kademe-lise     .kademe-card-header { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }

/* ===== STATS (SAYILARLA BİZ) ===== */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 2;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

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

.stat-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-suffix {
  font-size: 1.8rem;
  color: var(--secondary);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ===== DUYURULAR ===== */
.news-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.news-date {
  min-width: 56px;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  font-family: var(--font-heading);
}

.news-date .day {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.news-date .month {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.news-content h5 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
  line-height: 1.4;
}

.news-content p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,53,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

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

/* ===== QUICK LINKS ===== */
.quick-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  cursor: pointer;
}

.quick-link-card:hover {
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quick-link-card:hover h5,
.quick-link-card:hover p { color: var(--white) !important; }

.quick-link-card:hover .ql-icon { background: rgba(255,255,255,0.15); color: var(--white); }

.ql-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 14px;
  transition: var(--transition);
}

.quick-link-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  transition: var(--transition-fast);
}

.quick-link-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
  transition: var(--transition-fast);
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}

.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; }

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

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

.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--secondary);
}

.footer-links a:hover { color: var(--secondary); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
}

.footer-contact-item i {
  color: var(--secondary);
  margin-top: 3px;
  min-width: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-radius: 50%;
  font-size: 0.95rem;
  margin-right: 8px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: var(--transition);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
  background: #20b858;
  color: var(--white);
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* ===== KVKK COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

.cookie-banner a { color: var(--secondary); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: none;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--secondary); color: var(--dark); transform: translateY(-3px); }

/* ===== STAFF CARDS ===== */
.staff-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

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

.staff-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.staff-card-body { padding: 18px 16px; }

.staff-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.staff-card .branch {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.staff-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== EVENT CARD ===== */
.event-card {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.event-date-box {
  min-width: 80px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  font-family: var(--font-heading);
}

.event-date-box .day   { font-size: 2rem; font-weight: 900; line-height: 1; }
.event-date-box .month { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.event-date-box .year  { font-size: 0.65rem; opacity: 0.7; }

.event-body {
  padding: 16px 18px;
  flex: 1;
}

.event-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.event-body .event-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-body .event-meta i { color: var(--primary); margin-right: 3px; }

/* ===== ACCORDION (FAQ) ===== */
.custom-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  padding: 16px 20px;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-50);
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  filter: none;
}

.custom-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  padding: 16px 20px;
}

/* ===== BADGES ===== */
.badge-primary   { background: rgba(27, 77, 142, 0.1); color: var(--primary); }
.badge-secondary { background: rgba(245, 166, 35, 0.1); color: var(--secondary-dark); }
.badge-success   { background: rgba(46, 204, 113, 0.1); color: var(--accent-dark); }
.badge-danger    { background: rgba(231, 76, 60, 0.1);  color: #c0392b; }

/* ===== CONTACT FORM ===== */
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  background: var(--bg);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 77, 142, 0.1);
  background: var(--white);
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  transition: var(--transition);
}

.contact-info-item:hover { box-shadow: var(--shadow-sm); border-color: var(--primary); }

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--primary-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-info-item h6 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
}

/* ===== ACHIEVEMENT CARD ===== */
.achievement-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.achievement-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
  transform: translateY(-4px);
}

.achievement-card .trophy {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.achievement-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.achievement-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== CALENDAR ===== */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-header { background: var(--primary); color: var(--white); text-align: center; padding: 8px 4px; font-size: 0.78rem; font-weight: 700; border-radius: 4px; }
.cal-day { text-align: center; padding: 8px 4px; font-size: 0.85rem; border-radius: 6px; cursor: pointer; transition: var(--transition-fast); }
.cal-day:hover { background: var(--primary-50); }
.cal-day.today { background: var(--primary); color: var(--white); font-weight: 700; }
.cal-day.has-event { position: relative; font-weight: 600; color: var(--primary); }
.cal-day.has-event::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--secondary); border-radius: 50%; }
.cal-day.empty { opacity: 0; pointer-events: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .main-navbar { top: 0; }
  .topbar { display: none; }
  body.has-topbar { padding-top: var(--navbar-height); }

  .hero-carousel .carousel-item { height: 70vh; min-height: 500px; }
  .hero-carousel .carousel-caption { padding: 0 24px; }

  .stats-section .stat-item::after { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-grid .gallery-item.large { grid-row: span 1; }
}

@media (max-width: 768px) {
  .hero-carousel .carousel-item { height: 85vh; min-height: 480px; }

  .hero-title { font-size: 1.8rem; }
  .hero-desc { font-size: 0.9rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .about-badge { right: 10px; bottom: 16px; }

  .stat-item { padding: 20px 10px; }
  .stat-number { font-size: 2rem; }
}

@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .whatsapp-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .back-to-top { bottom: 84px; right: 20px; }
}
