* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
header {
  background: white;
  padding: 20px 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  text-decoration: none;
  color: #022c3b;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #ff7a00;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #022c3b;
  cursor: pointer;
}

/* Contact Section Styles */
.contact-section {
  background: linear-gradient(135deg, #eaf8fb, #f1f9fb);
  padding: 80px 20px;
  text-align: center;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
}

.form-card,
.contact-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.form-card h3,
.contact-card h3 {
  color: #022c3b;
  font-size: 24px;
  margin-bottom: 20px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 14px;
  transition: border 0.3s ease;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #ff7a00;
  outline: none;
  background: white;
}

form button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #022c3b, #034a5a);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 44, 59, 0.3);
}

.contact-card p {
  margin-bottom: 15px;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
}

.contact-card strong {
  color: #022c3b;
}

/* Modern Map Section */
.map-section {
  background: linear-gradient(135deg, #022c3b 0%, #034a5a 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.map-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.map-header {
  text-align: center;
  margin-bottom: 60px;
  color: white;
}

.map-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.map-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.location-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 40px;
  color: white;
}

.location-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ff7a00;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 122, 0, 0.1);
  transform: translateX(10px);
}

.info-item i {
  font-size: 20px;
  color: #ff7a00;
  margin-right: 15px;
  margin-top: 2px;
  min-width: 25px;
}

.info-item div h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ff7a00;
}

.info-item div p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.map-frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  background: white;
  padding: 8px;
}

.map-frame iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 20px;
  filter: contrast(1.1) saturate(1.2);
}

.map-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 122, 0, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
}

/* Directions Button */
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff7a00, #ff9533);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
}

.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 122, 0, 0.4);
  background: linear-gradient(135deg, #e56b00, #ff7a00);
}

.directions-btn i {
  font-size: 18px;
}

/* Footer */
.site-footer {
  background: #022c3b;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-branding img {
  height: 60px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff7a00;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .desktop-nav {
    display: none;
  }

  header {
    padding: 15px 20px;
  }

  .contact-section {
    padding: 60px 15px;
  }

  .contact-container {
    padding: 40px 25px;
  }

  .map-section {
    padding: 60px 15px;
  }

  .map-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-info {
    padding: 30px;
    order: 2;
  }

  .map-frame {
    order: 1;
  }

  .map-frame iframe {
    height: 400px;
  }

  .info-item {
    padding: 12px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-frame iframe {
    height: 350px;
  }

  .location-info {
    padding: 25px;
  }
}

/* Sidebar styles (basic - you can expand based on your existing sidebar) */
.sidebar-overlay,
.sidebar {
  display: none;
}