/* Contact Us Page Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #f0f7ff;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header Styles */
header {
  background-color: #f0f7ff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #2e82ff;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 5px;
}

/* Contact Hero Section */
.contact-hero {
  padding: 120px 0 30px;
  background-color: #f0f7ff;
  position: relative;
}

.contact-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.breadcrumb {
  font-size: 14px;
  color: #888;
  text-align: right;
  margin-top: 10px;
}

.breadcrumb a {
  color: #2e82ff;
  text-decoration: none;
}

/* Contact Methods Section */
.contact-methods {
  padding: 30px 0 80px;
  background-color: #f0f7ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.contact-card {
  /* background-color: #fff; */
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  padding: 20px;
}

.contact-card-content {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.qr-code {
  width: 100%;
  height: 280px;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.qr-code img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Footer Styles */
.footer {
  background-color: #f9fbff;
  padding: 80px 0 0;
  border-top: 1px solid #e5e9f2;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-nav-column {
  flex: 1;
  min-width: 200px;
}

.footer-nav-column h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-nav-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #3e80ff;
}

.footer-nav-column ul {
  list-style: none;
}

.footer-nav-column li {
  margin-bottom: 12px;
}

.footer-nav-column a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-nav-column a:hover {
  color: #3e80ff;
}

.footer-bottom {
  border-top: 1px solid #e5e9f2;
  padding: 30px 0;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #999;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0f2f5;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #3e80ff;
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .contact-hero h1 {
    font-size: 3rem;
  }

  nav ul li {
    margin-left: 15px;
  }

  .footer {
    padding: 60px 0 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-logo {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }

  .logo img {
    height: 32px;
  }

  .logo-text {
    font-size: 20px;
  }

  nav ul li {
    margin-left: 10px;
  }

  nav ul li a {
    font-size: 14px;
  }

  .contact-hero {
    padding: 100px 0 20px;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-grid {
    gap: 15px;
  }

  .contact-card h2 {
    font-size: 1.4rem;
    padding: 15px;
  }

  .contact-card-content {
    padding: 15px;
    min-height: 250px;
  }

  .qr-code {
    height: 220px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 30px;
  }

  .footer-nav-column {
    width: 100%;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 20px;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-content {
    min-height: 220px;
  }

  .qr-code {
    height: 180px;
  }
}

@media (max-width: 480px) {
  header .container {
    flex-direction: column;
    text-align: center;
  }

  .header-left,
  .header-right {
    width: 100%;
    justify-content: center;
  }

  .header-right {
    margin-top: 10px;
  }

  nav ul {
    justify-content: center;
  }

  .contact-hero {
    padding: 160px 0 20px;
  }

  .contact-hero h1 {
    font-size: 2rem;
    text-align: center;
  }

  .breadcrumb {
    text-align: center;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-container {
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-nav {
    gap: 25px;
  }

  .footer-nav-column h3 {
    font-size: 1.1rem;
  }

  .footer-bottom {
    padding: 20px 0;
  }
}