/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --secondary: #1d3557;
  --accent: #457b9d;
  --light: #f1faee;
  --dark: #0b1d33;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #333;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 42px;
  width: auto;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.logo-text span {
  color: var(--primary);
}

.navbar {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-radius: 0 0 12px 12px;
  z-index: 1000;
}

.navbar.active {
  display: flex;
}

.navbar a {
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  border-bottom: 1px solid var(--light);
}

.navbar a:last-child {
  border-bottom: none;
}

.navbar a:hover,
.navbar a.active {
  background: var(--primary);
  color: var(--white);
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 600px;
  margin-top: 62px;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(29,53,87,0.85) 0%, rgba(69,123,157,0.75) 100%);
  z-index: 1;
}

.slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.slider-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.slider-quote {
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.95;
  margin-bottom: 10px;
  border-left: 4px solid var(--primary);
  padding-left: 15px;
  text-align: left;
  display: inline-block;
}

.slider-sub {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 25px;
}

.slider-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.slider-arrow:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 15px; }
.slider-next { right: 15px; }

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

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255,255,255,0.8);
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
  padding: 50px 0;
  background: var(--white);
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.welcome-text h2 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.welcome-text .quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 15px;
  border-left: 4px solid var(--primary);
  padding-left: 15px;
  line-height: 1.6;
}

.welcome-text p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.welcome-image img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(230,57,70,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 50px 0;
}

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

.section-title h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 700px;
  margin: 15px auto 0;
}

/* ===== COMMITTEE SECTION ===== */
.committee {
  background: var(--light);
}

.committee-desc {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.member-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.member-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.member-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
  border: 3px solid var(--primary);
}

.member-card h4 {
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 3px;
  line-height: 1.3;
}

.member-card .role {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

.member-card .unit {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: linear-gradient(135deg, var(--secondary) 0%, #264673 100%);
  color: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-content h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.about-content p {
  opacity: 0.9;
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 0.9rem;
}

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

/* ===== FACILITIES SECTION ===== */
.facilities .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--light);
  border-radius: 10px;
  transition: var(--transition);
}

.amenity-item:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(5px);
}

.amenity-item i {
  font-size: 1.2rem;
  color: var(--primary);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.amenity-item:hover i {
  color: var(--white);
}

.amenity-item span {
  font-size: 0.85rem;
  font-weight: 500;
}

.facilities-image img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* ===== CCTV SECTION ===== */
.cctv {
  background: var(--light);
  text-align: center;
}

.cctv h2 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 25px;
  line-height: 1.5;
}

.cctv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.cctv-grid img {
  border-radius: 10px;
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: var(--transition);
}

.cctv-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

/* ===== EXPLORE SECTION ===== */
.explore {
  background: var(--white);
}

.explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.explore-card {
  background: var(--light);
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  transition: var(--transition);
}

.explore-card:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.explore-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.explore-card:hover i {
  color: var(--white);
}

.explore-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.explore-card:hover h3 {
  color: var(--white);
}

.explore-card p {
  color: var(--gray);
  font-size: 0.85rem;
}

.explore-card:hover p {
  color: rgba(255,255,255,0.85);
}

/* ===== GALLERY SECTION ===== */
.gallery {
  background: var(--light);
}

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

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  color: var(--white);
  font-size: 1.5rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 15px;
  transition: var(--transition);
  z-index: 2001;
}

.lightbox-nav:hover {
  color: var(--primary);
}

.lightbox-prev { left: 5px; }
.lightbox-next { right: 5px; }

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about img {
  height: 50px;
  margin-bottom: 12px;
}

.footer-about h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.footer-about p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links h3 {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.footer-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.footer-contact h3 {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.footer-contact-item i {
  color: var(--primary);
  width: 18px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--primary);
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  margin-top: 68px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.page-header p {
  opacity: 0.85;
  margin-top: 8px;
  font-size: 0.9rem;
}

/* ===== ABOUT PAGE ===== */
.about-page-content {
  padding: 40px 0;
}

.about-page-content .container {
  max-width: 900px;
}

.about-page-content h2 {
  color: var(--secondary);
  margin: 25px 0 12px;
  font-size: 1.3rem;
}

.about-page-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 40px 0;
}

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

.contact-info-card {
  background: var(--light);
  border-radius: 12px;
  padding: 25px 20px;
}

.contact-info-card h3 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-detail i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  color: var(--secondary);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.contact-detail span {
  color: var(--gray);
  font-size: 0.85rem;
}

.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--secondary);
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

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

/* ===== NOTIFICATION PAGE ===== */
.notification-list {
  padding: 30px 0;
}

.notification-item {
  background: var(--white);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.notification-item:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-hover);
}

.notification-date {
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  min-width: 70px;
  align-self: flex-start;
}

.notification-date .day {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.notification-date .month {
  font-size: 0.7rem;
  text-transform: uppercase;
}

.notification-content h3 {
  color: var(--secondary);
  margin-bottom: 5px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.notification-content p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== EVENTS PAGE ===== */
.events-section {
  padding: 30px 0;
}

.event-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: var(--transition);
}

.event-card:hover {
  box-shadow: var(--shadow-hover);
}

.event-card .event-image {
  height: 180px;
  overflow: hidden;
}

.event-card .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.event-card .event-info {
  padding: 18px 16px;
}

.event-card .event-info h3 {
  color: var(--secondary);
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.event-card .event-info p {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.85rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== DOCUMENTS PAGE ===== */
.doc-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: var(--transition);
}

.doc-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.doc-card-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.doc-card-image {
  height: 180px;
  overflow: hidden;
}

.doc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-card-content {
  padding: 20px 16px;
}

.doc-card-content .doc-date {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.doc-card-content h3 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.doc-card-content p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.doc-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.doc-download:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.doc-badge {
  display: inline-block;
  background: var(--light);
  color: var(--secondary);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (min-width: 576px) {
  .container {
    padding: 0 24px;
  }

  .hero-slider {
    height: 75vh;
    min-height: 450px;
  }

  .slider-content h1 {
    font-size: 2.5rem;
  }

  .slider-quote {
    font-size: 1.2rem;
  }

  .slider-sub {
    font-size: 1.1rem;
  }

  .slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .slider-prev { left: 20px; }
  .slider-next { right: 20px; }

  .welcome-text h2 {
    font-size: 1.8rem;
  }

  .welcome-text p {
    font-size: 0.95rem;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }

  .committee-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .member-card {
    padding: 25px 15px;
  }

  .member-card img {
    width: 80px;
    height: 80px;
  }

  .member-card h4 {
    font-size: 0.9rem;
  }

  .cctv-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cctv-grid img {
    height: 160px;
  }

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

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

  .notification-item {
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
  }

  .doc-card-inner {
    grid-template-columns: 250px 1fr;
  }

  .doc-card-image {
    height: 100%;
    min-height: 200px;
  }

  .event-card .event-image {
    height: 220px;
  }

  .footer-links ul {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE - DESKTOP ===== */
@media (min-width: 992px) {
  .container {
    padding: 0 32px;
  }

  .header .container {
    padding: 12px 32px;
  }

  .logo img {
    height: 50px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .navbar {
    display: flex;
    position: static;
    background: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    gap: 4px;
  }

  .navbar a {
    padding: 8px 18px;
    font-size: 0.95rem;
    border-bottom: none;
  }

  .hamburger {
    display: none;
  }

  .hero-slider {
    height: 80vh;
    min-height: 500px;
    max-height: 700px;
    margin-top: 74px;
  }

  .slider-content h1 {
    font-size: 3rem;
  }

  .slider-quote {
    font-size: 1.3rem;
  }

  .slider-sub {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .slider-arrow {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .slider-prev { left: 30px; }
  .slider-next { right: 30px; }

  .dot {
    width: 14px;
    height: 14px;
  }

  .welcome-section {
    padding: 70px 0;
  }

  .welcome-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .welcome-text h2 {
    font-size: 2rem;
  }

  .welcome-text .quote {
    font-size: 1.05rem;
  }

  .welcome-text p {
    font-size: 1rem;
  }

  .welcome-image img {
    max-height: 450px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .section-title p {
    font-size: 1.1rem;
  }

  .committee-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
  }

  .member-card {
    padding: 30px 20px;
  }

  .member-card img {
    width: 90px;
    height: 90px;
  }

  .member-card h4 {
    font-size: 1rem;
  }

  .member-card .role {
    font-size: 0.85rem;
  }

  .about .container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .facilities .container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .amenities-list {
    grid-template-columns: 1fr 1fr;
  }

  .amenity-item span {
    font-size: 0.92rem;
  }

  .cctv h2 {
    font-size: 1.8rem;
  }

  .cctv-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .cctv-grid img {
    height: 220px;
  }

  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .explore-card {
    padding: 40px 30px;
  }

  .explore-card i {
    font-size: 2.5rem;
  }

  .explore-card h3 {
    font-size: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .lightbox-nav {
    font-size: 2.5rem;
    padding: 20px;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

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

  .page-header {
    margin-top: 80px;
    padding: 60px 0;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }

  .about-page-content {
    padding: 60px 0;
  }

  .about-page-content h2 {
    font-size: 1.6rem;
  }

  .about-page-content p {
    font-size: 1rem;
  }

  .contact-section {
    padding: 60px 0;
  }

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

  .contact-info-card {
    padding: 35px;
  }

  .contact-info-card h3 {
    font-size: 1.3rem;
  }

  .contact-detail strong {
    font-size: 1rem;
  }

  .contact-detail span {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 35px;
  }

  .contact-form h3 {
    font-size: 1.3rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
  }

  .notification-list {
    padding: 60px 0;
  }

  .notification-item {
    padding: 25px 30px;
  }

  .notification-content h3 {
    font-size: 1.1rem;
  }

  .notification-content p {
    font-size: 0.95rem;
  }

  .events-section {
    padding: 60px 0;
  }

  .event-card .event-image {
    height: 250px;
  }

  .event-card .event-info {
    padding: 25px 30px;
  }

  .event-card .event-info h3 {
    font-size: 1.3rem;
  }

  .event-card .event-info p {
    font-size: 0.95rem;
  }

  .event-meta {
    font-size: 0.9rem;
  }

  .doc-card-inner {
    grid-template-columns: 300px 1fr;
  }

  .doc-card-image {
    min-height: 220px;
  }

  .doc-card-content {
    padding: 30px;
  }

  .doc-card-content h3 {
    font-size: 1.4rem;
  }

  .doc-card-content p {
    font-size: 0.95rem;
  }

  .doc-download {
    font-size: 0.95rem;
  }
}

/* ===== LARGE DESKTOP ===== */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
