/* Contact Us Page Styles - Exact Replica */

body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, sans-serif;
  background: #f5f7fa;
  color: #1A1A2E;
}

.top-bar {
  background-color: #0B3D91;
  color: #FFD700;
  padding: 0.7rem 0;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-row-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2.4vw;
  border-bottom: 1px solid #eee;
  background: #FFFFFF;
}
.navbar-row-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem 3rem;
  background: #FFFFFF;
  width: 100vw;
  min-width: 100vw;
  box-sizing: border-box;
  padding-left: 2.4vw;
}
.logo {
  font-weight: 700;
  color: #0B3D91;
  font-size: 1.18rem;
  white-space: nowrap;
  margin-right: 1.2vw;
}
.nav-links {
  display: flex;
  gap: 1vw;
  font-size: 1rem;
  flex: 1;
  justify-content: center;
}
.nav-links li {
  list-style: none;
  position: relative;
}
.nav-links li a {
  transition: color 0.3s;
  white-space: nowrap;
  color: #555555;
  text-decoration: none;
  border: none;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: #0B3D91;
  border-bottom: 3px solid #0B3D91;
  padding-bottom: 4px;
}
.has-dropdown > .nav-arrow {
  margin-left: 0.3em;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  padding: 0.35rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 120;
}
.has-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li {
  padding: 0.5rem 1.2rem;
}
.dropdown-menu li a {
  color: #555;
  font-size: 0.98rem;
}
.dropdown-menu li a:hover {
  color: #0B3D91;
}
.dropdown-submenu {
  left: 100%;
  top: 0;
  margin-left: 0.2rem;
  min-width: 200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  padding: 0.35rem 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.2s, visibility 0.2s;
}
.has-submenu:hover > .dropdown-submenu {
  opacity: 1;
  visibility: visible;
}
.nav-links-secondary {
  display: flex;
  gap: 1.2vw;
  font-size: 0.98rem;
  list-style: none;
  width: auto;
  min-width: 0;
  box-sizing: border-box;
  justify-content: flex-start;
  padding-left: 0;
}
.nav-links-secondary li a {
  color: #555555;
  opacity: 1;
  text-decoration: none;
  border: none;
  transition: none;
}
.nav-links-secondary li a.active,
.nav-links-secondary li a:hover {
  color: #0B3D91;
  opacity: 1;
  text-decoration: none;
  border: none;
}

.contact-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../assets/Place.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 24, 52, 0.66), rgba(11, 61, 145, 0.72));
}
.contact-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 1.5rem 0;
}
.contact-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-breadcrumb {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}
.contact-breadcrumb a {
  color: #FFD700;
  text-decoration: underline;
}
.contact-main.section {
  background: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
.contact-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 2.5rem 2rem;
  margin: 2rem 0;
  max-width: 100vw;
  width: 100vw;
  text-align: left;
}
.contact-card h2 {
  color: #0B3D91;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.contact-line {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}
.contact-line span {
  font-weight: 600;
  margin-right: 0.5rem;
}
.contact-venue {
  color: #1A1A2E;
  font-size: 1.05rem;
  margin-top: 0.7rem;
}

.footer {
  background: #0B3D91;
  color: #F5F5F5;
  padding: 2rem 0 2rem 0;
  width: 100vw;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto 3rem auto;
  width: 100%;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}
.footer-dates { font-size: 1rem; color: #F5F5F5; margin-bottom: 0.1rem; }
.footer-venue { font-size: 0.9rem; color: #F5F5F5; line-height: 1.5; }
.footer-logos { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.2rem; }
.footer-logo { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,0.08); }
.footer-logo-site { width: auto; height: 55px; border-radius: 8px; padding: 4px 8px; background: rgba(255,255,255,0.9); }
.footer-heading { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.4rem; }
.footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links li a { opacity: 0.8; transition: opacity 0.3s; color: #F5F5F5; text-decoration: none; }
.footer-links li a:hover { opacity: 1; color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: 0.6rem; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.9rem; opacity: 0.7; max-width: 1300px; margin: 0 auto; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
  .contact-card { padding: 1.2rem 0.5rem; }
  .navbar-row-1, .navbar-row-2 { padding: 0.7rem 1rem; }
}
