/* =====================
   RESET & BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #0a3366;
  background: #f6f9ff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =====================
   HEADER
===================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5px;
}

.logo {
  font-size: 26px;
  font-weight: 700;
}

.logo img {
  max-height: 60px;
  width: auto;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #0a3366;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #f68e38;
}

nav .btn {
  padding: 10px 18px;
  background: #f68e38;
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

nav .btn:hover {
  background: #e67e28;
  transform: translateY(-2px);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0a3366;
  padding: 6px 8px;
}

@media (max-width: 992px) {
  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    width: 220px;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  nav.show {
    display: flex;
  }

  nav a {
    margin: 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* =====================
   PAGE BANNER (INNER PAGES)
   Mascot merged with background
===================== */
.page-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  background-image: url("../../images/banner1.png"), url("../../images/mascot.png");
  background-position: center center, right 40px center;
  background-size: cover, auto 75%;
  background-repeat: no-repeat, no-repeat;
  margin-top: 70px;
  overflow: hidden;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(253,245,232,0.96) 0%,
    rgba(253,245,232,0.90) 40%,
    rgba(253,245,232,0.70) 65%,
    rgba(253,245,232,0.35) 100%
  );
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-banner-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  color: #0a3366;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-banner-content p {
  font-size: 18px;
  color: #345b86;
}

@media (max-width: 768px) {
  .page-banner {
    min-height: 250px;
    background-position: center center, right 20px center;
    background-size: cover, auto 55%;
  }
  
  .page-banner-content h1 {
    font-size: 28px;
  }
}

/* =====================
   HERO / BANNER
===================== */
.hero-slider {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url("../../images/banner1.png") center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(253,245,232,0.96) 0%,
    rgba(253,245,232,0.90) 40%,
    rgba(253,245,232,0.70) 65%,
    rgba(253,245,232,0.35) 100%
  );
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-media img {
  max-width: 420px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-media {
    justify-content: center;
    margin-top: 30px;
  }

  .hero-media img {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .hero-media {
    display: none;
  }
}

.hero-content {
  max-width: 760px;
  animation: heroFadeUp 1.1s ease forwards;
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-meta {
  font-size: 18px;
  color: #345b86;
  margin-bottom: 25px;
}

/* Hero Countdown Timer - Professional Flip-Clock Style */
.hero-countdown {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 10px;
  justify-content: flex-start;
  margin-bottom: 32px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.countdown-unit:nth-child(2) {
  margin-left: 18px;
}

.countdown-flip {
  position: relative;
}

.countdown-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 10px 14px 12px;
  background: linear-gradient(180deg, #0a3366 0%, #0d3d70 50%, #082a52 100%);
  border-radius: 8px;
  box-shadow:
    0 4px 0 rgba(0,0,0,0.2),
    0 6px 12px rgba(10,51,102,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
  border: 1px solid rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.countdown-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  z-index: 1;
}

.countdown-digit {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.countdown-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #345b86;
  font-weight: 600;
}

.countdown-sep {
  font-size: 22px;
  font-weight: 700;
  color: #0a3366;
  opacity: 0.75;
  line-height: 1;
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  margin-top: -14px;
}


@media (max-width: 768px) {
  .hero-countdown {
    justify-content: center;
    gap: 10px 6px;
    margin-bottom: 28px;
  }

  .countdown-unit:nth-child(2) {
    margin-left: 14px;
  }

  .countdown-panel {
    min-width: 50px;
    padding: 8px 10px 10px;
  }

  .countdown-digit {
    font-size: 22px;
  }

  .countdown-label {
    font-size: 9px;
  }

  .countdown-sep {
    font-size: 18px;
    margin-top: -12px;
  }
}

@media (max-width: 480px) {
  .hero-countdown {
    gap: 8px 4px;
    margin-bottom: 24px;
  }

  .countdown-unit:nth-child(2) {
    margin-left: 10px;
  }

  .countdown-panel {
    min-width: 44px;
    padding: 6px 8px 8px;
  }

  .countdown-digit {
    font-size: 18px;
  }

  .countdown-label {
    font-size: 8px;
  }

  .countdown-sep {
    font-size: 14px;
    margin-top: -10px;
  }
}

.hero-content .cta {
  display: inline-block;
  padding: 16px 44px;
  background: #f68e38;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(246,142,56,0.35);
  transition: all 0.3s ease;
}

.hero-content .cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(246,142,56,0.45);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 85vh;
  }

  .hero-overlay {
    background: rgba(253,245,232,0.97);
  }

  .hero-content {
    text-align: center;
    margin: auto;
  }

  .hero-meta {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content {
    animation: none;
  }
}

/* =====================
   GENERIC SECTIONS
===================== */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #0a3366;
}

/* =====================
   ABOUT
===================== */
.about {
  background: #ffffff;
  padding: 50px 0;
}

.about-inner {
  display: grid;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #0a3366;
}

.about-content h4 {
  font-size: 18px;
  color: #f68e38;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content p {
  font-size: 16px;
  color: #5c6f92;
  margin-bottom: 25px;
}

.about-content ul {
  padding-left: 25px;
  margin-bottom: 25px;
}

.about-content ul li {
  font-size: 16px;
  color: #5c6f92;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
}

/* =====================
   TEAM CARD ENHANCEMENTS
===================== */
.team-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.15);
}

.team-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}

.team-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,51,102,0.45),
    rgba(10,51,102,0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-img::after {
  opacity: 1;
}

.team-info {
  padding: 18px;
  transition: transform 0.35s ease;
}

.team-card:hover .team-info {
  transform: translateY(-6px);
}

.team-info h4 {
  color: #0a3366;
  margin-bottom: 4px;
}

.team-info .price strong {
  color: #f68e38;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .team-card,
  .team-img img,
  .team-info {
    transition: none !important;
  }
}

/* =====================
   TEAM / FACULTY SECTION
===================== */
.team {
  background: #fdf5e8;
  padding: 50px 0;
}

.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.team-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #0a3366;
}

.team-header p {
  font-size: 15px;
  color: #5c6f92;
  margin-bottom: 30px;
}

.team-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.team-filters button {
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid #0a3366;
  background: transparent;
  color: #0a3366;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.team-filters button:hover,
.team-filters button.active {
  background: #0a3366;
  color: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #f68e38;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}

.price {
  font-size: 14px;
  color: #f68e38;
}

.price del {
  color: #999;
  margin-left: 6px;
}

.card-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #0a3366;
}

.team-cta {
  margin-top: 50px;
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #f68e38;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.view-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(246,142,56,0.35);
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .team {
    padding: 70px 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-header h2 {
    font-size: 28px;
  }
}

/* =====================
   VENUE SECTION
===================== */
.venue {
  background: #ffffff;
  padding: 50px 0;
}

.venue-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.venue-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.venue-content h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f68e38;
  margin-bottom: 10px;
}

.venue-content h3 {
  font-size: 36px;
  color: #0a3366;
  margin-bottom: 20px;
}

.venue-content p {
  font-size: 16px;
  color: #5c6f92;
  margin-bottom: 18px;
  max-width: 520px;
}

.venue-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 34px;
  background: #f68e38;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.venue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(246,142,56,0.35);
}

@media (max-width: 992px) {
  .venue-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .venue-content p {
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .venue {
    padding: 70px 0;
  }

  .venue-content h3 {
    font-size: 28px;
  }
}

/* =====================
   HOW TO REACH SECTION
===================== */
.how-to-reach-section {
  background: #ffffff;
  padding: 60px 0;
}

.how-to-reach-section h2 {
  font-size: 38px;
  color: #0a3366;
  margin-bottom: 40px;
  text-align: center;
}

.reach-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.map-container {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.direction-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.direction-card {
  background: #ffffff;
  border: 2px solid #f0f4f9;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.direction-card:hover {
  border-color: #f68e38;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(246,142,56,0.15);
}

.direction-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f68e38 0%, #ff9f4d 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.direction-content h3 {
  font-size: 24px;
  color: #0a3366;
  margin-bottom: 12px;
  font-weight: 700;
}

.direction-content p {
  font-size: 15px;
  color: #5c6f92;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.direction-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: #0a3366;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  width: fit-content;
}

.direction-btn:hover {
  background: #f68e38;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(246,142,56,0.3);
}

@media (max-width: 992px) {
  .direction-cards {
    grid-template-columns: 1fr;
  }
  
  .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .how-to-reach-section {
    padding: 50px 0;
  }
  
  .how-to-reach-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .map-container iframe {
    height: 350px;
  }
  
  .direction-card {
    padding: 25px;
  }
  
  .direction-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .map-container iframe {
    height: 300px;
  }
  
  .direction-icon {
    width: 50px;
    height: 50px;
  }
  
  .direction-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* =====================
   EXPLORE CHENNAI
===================== */
.explore-chennai {
  background: #fdf5e8;
  padding: 60px 0;
}

.explore-intro {
  text-align: center;
  font-size: 17px;
  color: #5c6f92;
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.explore-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,51,102,0.12);
}

.explore-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef5;
}

.explore-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.explore-card-content {
  padding: 24px;
}

.explore-card-content h3 {
  font-size: 22px;
  color: #0a3366;
  margin-bottom: 12px;
  font-weight: 700;
}

.explore-card-content p {
  font-size: 15px;
  color: #5c6f92;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .explore-chennai {
    padding: 50px 0;
  }
  
  .explore-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .explore-intro {
    font-size: 16px;
    margin-bottom: 36px;
  }
  
  .explore-card-content h3 {
    font-size: 20px;
  }
}

/* =====================
   REGISTER PAGE – PACKAGES
===================== */
.register-page {
  background: #fdf5e8;
  padding: 60px 0;
}

.register-intro {
  text-align: center;
  font-size: 17px;
  color: #5c6f92;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.package-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10,51,102,0.08);
  display: flex;
  flex-direction: column;
}

.package-card-header {
  background: linear-gradient(135deg, #0a3366 0%, #1a4a7a 100%);
  padding: 28px 30px;
  position: relative;
  min-height: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.package-card-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(246,142,56,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.package-card-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.package-card-header .package-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  margin: 8px 0 0 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.package-card-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-lead {
  font-size: 15px;
  color: #0a3366;
  font-weight: 600;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8eef5;
}

.package-inclusions {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
}

.package-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: #2d3e5f;
  line-height: 1.65;
  margin-bottom: 0;
  padding: 16px 18px;
  background: #f8fafc;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid #eef2f7;
}

.package-inclusions li:last-of-type {
  margin-bottom: 0;
}

.package-inclusions .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  background: #0a3366;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  position: relative;
}

.package-inclusions .check::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 11px;
  margin-left: -4px;
  margin-top: -7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.package-inclusions .inclusion-text {
  flex: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.package-inclusions .date-inline {
  white-space: nowrap;
  font-weight: 600;
  color: #0a3366;
}

.package-note {
  margin-top: auto;
  padding: 18px;
  background: #fdf5e8;
  border-radius: 10px;
  border-left: 4px solid #f68e38;
  font-size: 14px;
  color: #5c6f92;
  line-height: 1.65;
}

.package-note strong {
  color: #0a3366;
}

.package-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: #f68e38;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.package-btn:hover {
  background: #0a3366;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10,51,102,0.25);
}

.register-cta {
  text-align: center;
  margin-top: 50px;
  padding: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.register-cta p {
  margin: 0;
  font-size: 15px;
  color: #5c6f92;
}

.register-cta a {
  color: #f68e38;
  font-weight: 600;
  text-decoration: none;
}

.register-cta a:hover {
  text-decoration: underline;
}

/* =====================
   RESIDENTIAL FEE DETAILS PAGE
===================== */
.fee-details-page {
  background: #fdf5e8;
  padding: 60px 0 80px;
}

.container--wide {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (min-width: 1400px) {
  .container--wide {
    max-width: 1280px;
    padding: 0 40px;
  }
}

.fee-details-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(10,51,102,0.1);
  padding: 52px 56px;
  border: 1px solid rgba(10,51,102,0.06);
}

.fee-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #0a3366;
  margin: 0 0 24px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8eef5;
}

.fee-section-title .gst-note {
  font-size: 16px;
  font-weight: 600;
  color: #f68e38;
  margin-left: 6px;
}

.fee-table-wrap {
  overflow-x: auto;
  margin-bottom: 36px;
  border-radius: 12px;
  border: 1px solid #e8eef5;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 320px;
  table-layout: fixed;
}

@media (min-width: 768px) {
  .fee-table {
    table-layout: auto;
  }
}

.fee-table thead {
  background: linear-gradient(135deg, #0a3366 0%, #1a4a7a 100%);
  color: #ffffff;
}

.fee-table th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.fee-table th:first-child {
  width: 28%;
}

.fee-table th:nth-child(2),
.fee-table th:nth-child(3),
.fee-table th:nth-child(4),
.fee-table th:nth-child(5) {
  width: 18%;
}

.fee-table th:nth-child(2),
.fee-table th:nth-child(3),
.fee-table th:nth-child(4),
.fee-table th:nth-child(5) {
  text-align: center;
}

.fee-table tbody tr {
  border-bottom: 1px solid #eef2f7;
}

.fee-table tbody tr:last-child {
  border-bottom: none;
}

.fee-table td {
  padding: 18px 24px;
  color: #2d3e5f;
  background: #ffffff;
}

.fee-table tbody tr:nth-child(even) td {
  background: #f8fafc;
}

.fee-table td:nth-child(2),
.fee-table td:nth-child(3),
.fee-table td:nth-child(4),
.fee-table td:nth-child(5) {
  text-align: center;
  font-weight: 600;
  color: #0a3366;
}

.fee-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #0a3366;
  margin: 0 0 12px 0;
}

.fee-desc {
  font-size: 15px;
  color: #5c6f92;
  line-height: 1.65;
  margin: 0 0 32px 0;
}

.fee-inclusions {
  margin-bottom: 28px;
}

.fee-details-card .package-note {
  margin-top: 0;
}

.register-now-wrap {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e8eef5;
}

.btn-register-now {
  display: inline-block;
  padding: 16px 48px;
  background: #f68e38;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-register-now:hover {
  background: #0a3366;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10,51,102,0.3);
}

@media (max-width: 767px) {
  .fee-details-page {
    padding: 36px 0 56px;
  }
  
  .container--wide {
    padding: 0 16px;
  }
  
  .fee-details-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
  
  .fee-section-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .fee-table-wrap {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  
  .fee-table th,
  .fee-table td {
    padding: 14px 16px;
    font-size: 14px;
  }
  
  .fee-table th:first-child,
  .fee-table th:nth-child(2),
  .fee-table th:nth-child(3),
  .fee-table th:nth-child(4),
  .fee-table th:nth-child(5) {
    width: auto;
  }
  
  .fee-subtitle {
    font-size: 17px;
  }
  
  .fee-desc {
    margin-bottom: 28px;
  }
  
  .btn-register-now {
    padding: 14px 36px;
    font-size: 16px;
    width: 100%;
    max-width: 280px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container--wide {
    max-width: 100%;
    padding: 0 24px;
  }
  
  .fee-details-card {
    padding: 40px 36px;
  }
}

/* =====================
   REGISTRATION FORM & DETAILS & PAYMENT RESULT
===================== */
.registration-form-section {
  background: #fdf5e8;
  padding: 60px 0 80px;
}

.registration-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(10,51,102,0.1);
  padding: 48px 56px;
  border: 1px solid rgba(10,51,102,0.06);
}

.registration-form-title {
  font-size: 26px;
  font-weight: 700;
  color: #0a3366;
  text-align: center;
  margin: 0 0 36px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-errors {
  background: #fdf5e8;
  border-left: 4px solid #f68e38;
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 0 10px 10px 0;
}

.form-errors p {
  margin: 0 0 6px 0;
  font-size: 14px;
  color: #0a3366;
}

.form-errors p:last-child {
  margin-bottom: 0;
}

.form-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0a3366;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #2d3e5f;
  border: 1px solid #d0dae8;
  border-radius: 10px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0a3366;
}

.form-group .input-readonly {
  background: #f0f4f9;
  color: #5c6f92;
  cursor: not-allowed;
}

.form-accompanying {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #e8eef5;
}

.form-accompanying-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0a3366;
  margin-bottom: 14px;
}

.form-accompanying-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: flex-end;
}

.form-accompanying-cell {
  flex: 1;
  min-width: 140px;
}

.form-accompanying-cell select,
.form-accompanying-cell input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid #d0dae8;
  border-radius: 10px;
  box-sizing: border-box;
}

.form-accompanying-cell label:not(.sr-only) {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0a3366;
  margin-bottom: 6px;
}

label.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-submit-wrap {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #e8eef5;
}

.btn-submit-registration {
  display: inline-block;
  padding: 16px 48px;
  background: #f68e38;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-registration:hover {
  background: #0a3366;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,51,102,0.25);
}

/* Details page */
.registration-details-section {
  background: #fdf5e8;
  padding: 60px 0 80px;
}

.details-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(10,51,102,0.1);
  padding: 48px 56px;
  border: 1px solid rgba(10,51,102,0.06);
}

.details-page-title {
  font-size: 26px;
  font-weight: 700;
  color: #0a3366;
  margin: 0 0 28px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.details-register-no-wrap {
  display: inline-block;
  background: linear-gradient(135deg, #0a3366 0%, #196a6e 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(10, 51, 102, 0.3);
}

.details-register-no-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-right: 10px;
}

.details-register-no-value {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.details-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  margin-bottom: 40px;
}

.details-col p {
  margin: 0 0 18px 0;
  font-size: 15px;
  color: #2d3e5f;
}

.details-col strong {
  color: #0a3366;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fee-breakdown-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a3366;
  margin: 0 0 20px 0;
}

.fee-breakdown-table-wrap {
  overflow-x: auto;
  margin-bottom: 36px;
  border: 1px solid #e8eef5;
  border-radius: 12px;
}

.fee-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.fee-breakdown-table thead {
  background: #0a3366;
  color: #fff;
}

.fee-breakdown-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
}

.fee-breakdown-table th:nth-child(2),
.fee-breakdown-table th:nth-child(3),
.fee-breakdown-table th:nth-child(4) {
  text-align: right;
}

.fee-breakdown-table td {
  position: relative;
  padding: 14px 20px;
  border-bottom: 1px solid #eef2f7;
  color: #2d3e5f;
}

.acc-remove-link {
  display: inline-block;
  margin-left: 12px;
  font-size: 13px;
  color: #c53030;
  text-decoration: none;
  font-weight: 600;
}

.acc-remove-link:hover {
  text-decoration: underline;
  color: #9b2c2c;
}

/* Custom Confirmation Modal */
.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-modal.custom-modal-show {
  display: block;
  opacity: 1;
  visibility: visible;
}

.custom-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 51, 102, 0.7);
  backdrop-filter: blur(4px);
}

.custom-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10, 51, 102, 0.3);
  width: 90%;
  max-width: 480px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.custom-modal.custom-modal-show .custom-modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.custom-modal-header {
  background: linear-gradient(135deg, #0a3366 0%, #196a6e 100%);
  color: #fff;
  padding: 24px 32px;
  text-align: center;
}

.custom-modal-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.custom-modal-body {
  padding: 32px;
  text-align: center;
}

.custom-modal-body p {
  margin: 0;
  font-size: 16px;
  color: #2d3e5f;
  line-height: 1.6;
}

.custom-modal-footer {
  padding: 20px 32px 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.custom-modal-btn {
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
}

.custom-modal-btn-cancel {
  background: #e8eef5;
  color: #2d3e5f;
}

.custom-modal-btn-cancel:hover {
  background: #d0dae8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-modal-btn-ok {
  background: linear-gradient(135deg, #0a3366 0%, #196a6e 100%);
  color: #fff;
}

.custom-modal-btn-ok:hover {
  background: linear-gradient(135deg, #196a6e 0%, #0a3366 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10, 51, 102, 0.4);
}

.custom-modal-btn:active {
  transform: translateY(0);
}


.fee-breakdown-table td:nth-child(2),
.fee-breakdown-table td:nth-child(3),
.fee-breakdown-table td:nth-child(4) {
  text-align: right;
}

.fee-breakdown-table .total-row td {
  font-size: 17px;
  padding: 18px 20px;
  border-bottom: none;
  background: #f8fafc;
}

.pay-now-wrap {
  text-align: right;
}

.btn-pay-now {
  display: inline-block;
  padding: 16px 48px;
  background: #0a3366;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pay-now:hover {
  background: #f68e38;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246,142,56,0.35);
}

.btn-pay-now:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

/* Payment result (success / failure) */
.payment-result-section {
  background: #fdf5e8;
  padding: 80px 0 100px;
}

.payment-result-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(10,51,102,0.1);
  padding: 56px 48px;
  text-align: center;
  border: 1px solid rgba(10,51,102,0.06);
}

.payment-result-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}

.payment-result--success .payment-result-icon {
  background: #0a3366;
}

.payment-result--failure .payment-result-icon {
  background: #c0392b;
}

.payment-result-card h2 {
  font-size: 28px;
  color: #0a3366;
  margin: 0 0 16px 0;
}

.payment-result-card p {
  font-size: 16px;
  color: #5c6f92;
  line-height: 1.7;
  margin: 0 0 14px 0;
}

.payment-result-card .btn-back-home {
  display: inline-block;
  margin-top: 28px;
  margin-right: 12px;
  padding: 14px 36px;
  background: #f68e38;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.payment-result-card .btn-back-home:hover {
  background: #0a3366;
  transform: translateY(-2px);
}

.payment-result-card .btn-outline {
  background: transparent;
  color: #0a3366;
  border: 2px solid #0a3366;
}

.payment-result-card .btn-outline:hover {
  background: #0a3366;
  color: #fff;
}

@media (max-width: 768px) {
  .form-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .registration-form-card,
  .details-card {
    padding: 28px 24px;
  }
  .details-two-col {
    grid-template-columns: 1fr;
  }
  .pay-now-wrap {
    text-align: center;
  }
  .btn-pay-now {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .register-page {
    padding: 50px 0;
  }
  
  .register-intro {
    font-size: 16px;
    margin-bottom: 36px;
  }
  
  .package-card-header,
  .package-card-body {
    padding: 24px;
  }
  
  .package-card-header {
    height: 110px;
    min-height: 110px;
  }
  
  .package-card-header h2 {
    font-size: 20px;
  }
  
  .package-inclusions li {
    font-size: 14px;
    padding: 14px 16px;
    gap: 14px;
  }
  
  .package-inclusions .check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
  }
  
  .package-note {
    font-size: 13px;
  }
}

/* =====================
   SPONSORS
===================== */
.sponsors {
  background: #fdf5e8;
  padding: 50px 0;
}

.sponsor-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.sponsor-header h2 {
  font-size: 38px;
  color: #0a3366;
  margin-bottom: 12px;
}

.sponsor-header p {
  font-size: 15px;
  color: #5c6f92;
}

.sponsor-slider {
  overflow: hidden;
  position: relative;
}

.sponsor-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scrollSponsors 30s linear infinite;
}

.sponsor-item {
  min-width: 180px;
  height: 90px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.sponsor-item img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.sponsor-item img:hover {
  opacity: 1;
}

@keyframes scrollSponsors {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .sponsor-track {
    gap: 30px;
    animation-duration: 22s;
  }

  .sponsor-item {
    min-width: 140px;
    height: 80px;
  }
}

/* =====================
   CONTACT FORM
===================== */
.contact-section {
  background: #ffffff;
  padding: 80px 0;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #0a3366;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #0a3366;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #f68e38;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: inline-block;
  padding: 16px 44px;
  background: #f68e38;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background: #e67e28;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(246,142,56,0.35);
}

.alert {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* =====================
   CONTENT PAGES
===================== */
.content-page {
  background: #ffffff;
  padding: 50px 0;
}

.content-page h2 {
  font-size: 32px;
  color: #0a3366;
  margin-bottom: 20px;
}

.content-page h3 {
  font-size: 24px;
  color: #0a3366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-page p {
  font-size: 16px;
  color: #5c6f92;
  margin-bottom: 20px;
  line-height: 1.8;
}

.content-page ul,
.content-page ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

.content-page ul li,
.content-page ol li {
  font-size: 16px;
  color: #5c6f92;
  margin-bottom: 10px;
  line-height: 1.8;
}

/* =====================
   COMING SOON PAGE
===================== */
.coming-soon {
  background: #fdf5e8;
  padding: 100px 0;
  text-align: center;
}

.coming-soon h1 {
  font-size: 48px;
  color: #0a3366;
  margin-bottom: 20px;
}

.coming-soon p {
  font-size: 18px;
  color: #5c6f92;
  margin-bottom: 30px;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background: radial-gradient(circle at top, #1a2a3a, #0b1622);
  color: #cfd8e3;
}

.footer-head {
  padding: 30px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-head-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-size: 22px;
  color: #fff;
}

.footer-logo span {
  color: #ff7a00;
}

.btn-outline {
  padding: 10px 18px;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #0a3366;
}

.btn-fill {
  padding: 10px 20px;
  background: #fff;
  color: #ff7a00;
  border-radius: 10px;
  text-decoration: none;
}

.footer-main {
  padding: 20px 20px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr repeat(3,1fr);
  gap: 40px;
}

.footer-col h5,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cfd8e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ff7a00;
}

.newsletter-box {
  display: flex;
  background: #0f1f2e;
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-box input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  background: transparent;
  color: #fff;
}

.newsletter-box button {
  padding: 0 22px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

.footer-contact {
  max-width: 1200px;
  margin: 40px auto;
  background: #0a1a2a;
  border-radius: 20px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-item span {
  font-size: 26px;
  color: #ff7a00;
}

.footer-bottom {
  padding: 15px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cards span {
  background: #fff;
  color: #000;
  padding: 4px 8px;
  border-radius: 6px;
  margin-left: 8px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================
   ANIMATIONS
===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatImage {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* REDUCE MOTION */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
