/* ============================================================
   CAS Chelakkara — FootPro-Inspired Theme
   ============================================================ */

/* --- Root Variables --- */
:root {
  --primary:      #0d2b5e;
  --primary-dark: #081a3d;
  --accent:       #c8922a;
  --accent-dark:  #a07020;
  --white:        #ffffff;
  --bg-alt:       #f5f7fa;
  --text:         #2d2d2d;
  --text-light:   #6b7280;
  --border:       #e2e8f0;
  --shadow:       0 2px 12px rgba(13,43,94,0.10);
  --radius:       6px;
  --transition:   0.3s ease;
  --container:    1180px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); font-size: 16px; line-height: 1.65; background: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar a { color: rgba(255,255,255,0.85); transition: color var(--transition); }
.top-bar a:hover { color: var(--accent); }
.top-bar .tb-right { display: flex; gap: 16px; align-items: center; }
.top-bar .tb-right a {
  background: var(--accent);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.78rem;
}
.top-bar .tb-right a:hover { background: var(--accent-dark); }

/* ============================================================
   HEADER
   ============================================================ */
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow var(--transition);
}
header.scrolled { box-shadow: 0 4px 20px rgba(13,43,94,0.18); }

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

/* Logo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 52px; height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; letter-spacing: 1px;
  flex-shrink: 0;
}
.logo-text h1 { font-size: 1.05rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
.logo-text p  { font-size: 0.72rem; color: var(--text-light); line-height: 1.3; }


/* Nav */
nav ul { display: flex; align-items: center; gap: 4px; }
nav ul li { position: relative; }
nav ul li > a {
  display: block;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
nav ul li > a:hover,
nav ul li > a.active { background: var(--primary); color: var(--white); }

/* Dropdown */
nav ul li ul {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  min-width: 180px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
  display: none;
  flex-direction: column;
  z-index: 100;
  padding: 6px 0;
}
nav ul li:hover > ul { display: flex; }
nav ul li ul li a {
  padding: 9px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  border-radius: 0;
}
nav ul li ul li a:hover { background: var(--bg-alt); color: var(--accent); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.3rem;
  padding: 5px 10px;
  border-radius: var(--radius);
  cursor: pointer;
}

/* ============================================================
   NEWS TICKER
   ============================================================ */
.news-ticker {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--accent);
  overflow: hidden;
}
.news-ticker .container {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 0;
  padding-bottom: 0;
}
.news-label {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 9px 14px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.news-track {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.news-scroll {
  flex: 0 0 auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 9px 0;
  animation: news-marquee 32s linear infinite;
  will-change: transform;
}
.news-scroll a { white-space: nowrap; }
.news-scroll a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0 6px;
  transition: color var(--transition);
}
.news-scroll a:hover { color: var(--accent); text-decoration: underline; }
.news-sep { color: var(--accent); padding: 0 10px; font-weight: 700; }
.news-track:hover .news-scroll { animation-play-state: paused; }
@keyframes news-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============================================================
   HERO SLIDER  (FootPro style)
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 82vh;
  min-height: 500px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,26,61,0.82) 40%, rgba(8,26,61,0.35) 100%);
}
.slide-content {
  position: relative;
  z-index: 3;
  padding: 0 60px;
  max-width: 680px;
  color: var(--white);
}
.slide-content .tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.slide-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.slide-content p {
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 28px;
  line-height: 1.7;
}
.slide-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 8px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--accent); transform: scale(1.3); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }

/* ============================================================
   STATS BAR  (FootPro-style dark bar)
   ============================================================ */
.stats-bar {
  background: var(--primary);
  padding: 22px 0;
}
.stats-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.stat {
  text-align: center;
  color: var(--white);
}
.stat .num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat .label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-alt); }

.section-title { text-align: center; margin-bottom: 44px; }
.section-title h2 { font-size: 1.9rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.section-title p { color: var(--text-light); font-size: 1rem; max-width: 560px; margin: 0 auto 14px; }
.underline {
  display: block;
  width: 56px; height: 4px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* ============================================================
   WHY CAS — icon feature grid (FootPro "Why is it Special")
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(13,43,94,0.15); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.feature-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   PROGRAMME CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--primary);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(13,43,94,0.18); }
.card-icon {
  background: var(--primary);
  color: var(--white);
  font-size: 2.2rem;
  padding: 24px;
  text-align: center;
}
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.card-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 6px; }
.card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}
.card-link:hover { color: var(--accent-dark); }

/* ============================================================
   MILESTONES GRID
   ============================================================ */
.milestones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.milestone-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.milestone-item .icon { font-size: 1.5rem; flex-shrink: 0; }
.milestone-item p { font-size: 0.88rem; color: var(--text); line-height: 1.5; }

/* ============================================================
   TESTIMONIAL CAROUSEL  (FootPro style)
   ============================================================ */
.testimonial-section { background: var(--primary); padding: 70px 0; }
.testimonial-section .section-title h2 { color: var(--white); }
.testimonial-section .section-title p { color: rgba(255,255,255,0.7); }
.testimonial-section .underline { background: var(--accent); }

.testimonial-carousel { position: relative; overflow: hidden; max-width: 800px; margin: 0 auto; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { flex: 0 0 100%; padding: 0 16px; }
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 32px 36px;
  text-align: center;
  color: var(--white);
}
.testimonial-card .quote { font-size: 2.5rem; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.testimonial-card p { font-size: 1rem; opacity: 0.9; line-height: 1.75; font-style: italic; }
.testimonial-card .author { margin-top: 20px; font-weight: 700; font-size: 0.9rem; color: var(--accent); }
.testimonial-card .role { font-size: 0.8rem; opacity: 0.65; }

.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--transition);
}
.testi-dot.active { background: var(--accent); }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition), opacity var(--transition);
}
.gallery-grid img:hover { transform: scale(1.03); opacity: 0.9; }

/* ============================================================
   ADMISSION CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { font-size: 2rem; margin-bottom: 12px; }
.cta-band p { opacity: 0.88; max-width: 580px; margin: 0 auto 28px; }
.cta-band .btn-group { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   PAGE BANNER  (inner pages)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 50px 0 40px;
}
.page-banner h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.breadcrumb { font-size: 0.85rem; opacity: 0.75; }
.breadcrumb a { opacity: 0.75; }
.breadcrumb a:hover { opacity: 1; color: var(--accent); }

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.info-box h3 { color: var(--primary); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.info-box p, .info-box ul { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.info-box ul { padding-left: 16px; list-style: disc; }
.info-box ul li { margin-bottom: 5px; }

/* ============================================================
   TWO COLUMN
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ============================================================
   TABLES
   ============================================================ */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 32px;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.styled-table thead { background: var(--primary); color: var(--white); }
.styled-table th, .styled-table td { padding: 12px 16px; text-align: left; }
.styled-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.styled-table tfoot { background: var(--primary); color: var(--white); font-weight: 700; }
.styled-table tbody tr:hover { background: #e8f0fe; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item .icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 0.88rem; color: var(--text-light); }
.contact-item a:hover { color: var(--accent); }

.contact-form { background: var(--white); border-radius: 8px; box-shadow: var(--shadow); padding: 32px; }
.contact-form h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; border-left: 4px solid var(--accent); padding-left: 12px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--primary); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem; color: var(--text);
  transition: border-color var(--transition);
  background: #fafbfd;
  font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea { min-height: 100px; resize: vertical; }

/* ============================================================
   ORGANOGRAM
   ============================================================ */
.organogram { display: flex; flex-direction: column; gap: 10px; }
.org-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.org-box {
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 0.85rem;
  text-align: center;
  background: var(--white);
  min-width: 140px;
}
.org-box.head { background: var(--primary); color: var(--white); }
.org-connector { text-align: center; color: var(--primary); font-size: 1.2rem; }

/* ============================================================
   MAP
   ============================================================ */
.map-wrapper { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); margin-top: 32px; }
.map-wrapper iframe { width: 100%; height: 320px; border: none; display: block; }

/* ============================================================
   CONTENT BLOCK
   ============================================================ */
.content-block h2 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin: 28px 0 12px; border-left: 4px solid var(--accent); padding-left: 12px; }
.content-block h2:first-child { margin-top: 0; }
.content-block p { color: var(--text-light); margin-bottom: 14px; font-size: 0.95rem; line-height: 1.75; }

/* ============================================================
   DEPT CARDS (academics page)
   ============================================================ */
.dept-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 36px;
}
.dept-card-header {
  background: var(--primary);
  color: var(--white);
  padding: 22px 28px;
  display: flex; align-items: center; gap: 16px;
}
.dept-card-header .d-icon { font-size: 2rem; }
.dept-card-header h2 { font-size: 1.15rem; font-weight: 700; }
.dept-card-body { padding: 24px 28px; }
.dept-card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.prog-list { display: flex; flex-wrap: wrap; gap: 10px; }
.prog-badge {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  color: var(--primary);
  border-radius: 4px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-full {
  columns: 3;
  column-gap: 12px;
}
.gallery-full img {
  width: 100%;
  margin-bottom: 12px;
  border-radius: var(--radius);
  break-inside: avoid;
  transition: opacity var(--transition);
}
.gallery-full img:hover { opacity: 0.85; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
footer h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
footer p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 6px; }
footer ul { display: flex; flex-direction: column; gap: 8px; }
footer ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
footer ul li a:hover { color: var(--accent); }
footer ul li a::before { content: '›  '; color: var(--accent); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,0.1); display: none; border-top: 3px solid var(--accent); }
  nav.open { display: block; }
  nav ul { flex-direction: column; padding: 12px 0; gap: 0; }
  nav ul li > a { border-radius: 0; padding: 12px 20px; }
  nav ul li ul { position: static; box-shadow: none; border: none; background: var(--bg-alt); display: none; padding: 0; }
  nav ul li ul.open { display: flex; }
  .slide-content { padding: 0 28px; }
  .slide-content h2 { font-size: 1.6rem; }
  .hero-slider { height: 70vh; }
  .gallery-full { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .logo-text p { font-size: 0.42rem; }
  .gallery-full { columns: 1; }
  .slide-btns { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .stats-bar .container { justify-content: center; gap: 24px; }
  .stat { min-width: 100px; }
}
