* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}
.logo-img {
    margin-top: -46px;
    width: 140px;  /* Adjust width (Try 80px, 120px, etc.) */
    height: auto;  /* Keeps the aspect ratio */
    max-height: 150px; /* Ensures it doesn't exceed header height */
}
body {
  color: white;
  /* Option 1: Gradient background with auto styling industry feel */
  background: linear-gradient(135deg, #1a1a1a, #333333);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}

/* Add subtle pattern overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23FF8300' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

/* Header and Navigation */
header {
  position: relative;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.7);
}

.logo {
  height: 40px;
  z-index: 11;
}

.logo-link {
  text-decoration: none;
}

.logo-text {
  font-family: "Arial", cursive;
  font-weight: bold;
  font-style: italic;
  font-size: 24px;
  color: #ff8300;
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-right: 25px;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #ff8300;
}

.schedule-btn,
.schedule-link {
  background-color: transparent;
  color: #ff8300;
  border: 2px solid #ff8300;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.schedule-btn:hover,
.schedule-link:hover {
  background-color: #ff8300;
  color: white;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 11;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

.mobile-btn {
  display: none;
}

/* Contact Page Styling */
.page-container {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 40px 0;
  z-index: 1;
}

/* Add animated gradient accents */
.page-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at top left,
      rgba(255, 131, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(255, 131, 0, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}

.contact-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(30, 30, 30, 0.9),
    rgba(10, 10, 10, 0.9)
  );
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 131, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, #ff8300, transparent);
}

/* Contact Title */
.contact-title {
  font-size: 42px;
  font-weight: bold;
  color: #ff8300;
  margin-bottom: 30px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ff8300;
}

/* Contact Info */
.contact-info {
  font-size: 20px;
  margin: 40px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
}

/* Cool hover effect for contact items */
.contact-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 131, 0, 0.1), transparent);
  border-radius: 15px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
  transform: scale(0.9);
}

.contact-info-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* Cool animated contact cards */
.contact-card {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 25px;
  background: linear-gradient(145deg, #222, #1a1a1a);
  border-radius: 15px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3),
    -10px -10px 20px rgba(40, 40, 40, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(40, 40, 40, 0.5);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.4),
    -15px -15px 30px rgba(40, 40, 40, 0.1);
  border: 1px solid rgba(255, 131, 0, 0.3);
}

/* Glow effect on hover */
.contact-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 131, 0, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.contact-card:hover::after {
  opacity: 1;
}

.contact-icon {
  color: #ff8300;
  font-size: 28px;
  min-width: 60px;
  height: 60px;
  background: #2a2a2a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5),
    inset -2px -2px 5px rgba(60, 60, 60, 0.3);
  border: 1px solid rgba(255, 131, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Icon pulse animation */
.contact-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(255, 131, 0, 0.5) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover .contact-icon::before {
  opacity: 0.5;
}

.contact-text {
  text-align: left;
  flex-grow: 1;
  padding-left: 10px;
}

.contact-info strong {
  display: block;
  font-weight: bold;
  color: white;
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-size: 22px;
  color: #ff8300;
  font-weight: bold;
}

.contact-info a {
  color: #ff8300;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  position: relative;
}

/* Cool underline effect */
.contact-info a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff8300;
  transition: width 0.3s ease;
}

.contact-info a:hover::after {
  width: 100%;
}

.contact-info a:hover {
  text-shadow: 0 0 5px rgba(255, 131, 0, 0.5);
}

/* Map Section */
.map-section {
  margin-top: 40px;
  position: relative;
}

.map-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.map-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #ff8300;
}

.map-container {
  margin-top: 30px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 131, 0, 0.3);
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Get in touch CTA */
.cta-section {
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(
    to right,
    rgba(255, 131, 0, 0.1),
    rgba(255, 131, 0, 0.2),
    rgba(255, 131, 0, 0.1)
  );
  border-radius: 10px;
}

.cta-title {
  font-size: 24px;
  color: white;
  margin-bottom: 15px;
}

.cta-text {
  margin-bottom: 20px;
  color: #ddd;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ff8300;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background-color: white;
  color: #ff8300;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 131, 0, 0.4);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  header {
    padding: 15px 5%;
  }

  .hamburger {
    display: block;
  }

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

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    z-index: 10;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 20px 0;
  }

  .nav-menu li a {
    font-size: 20px;
  }

  .desktop-btn {
    display: none;
  }

  .mobile-btn {
    display: block;
    margin-top: 20px;
  }

  .contact-container {
    width: 90%;
    padding: 30px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-info {
    font-size: 16px;
  }

  .contact-card {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .contact-text {
    text-align: center;
    padding-left: 0;
  }

  .contact-value {
    font-size: 18px;
  }

  iframe {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .contact-container {
    padding: 20px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-icon {
    font-size: 24px;
    min-width: 50px;
    height: 50px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}
