* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    gap: 8px;
}

.logo img {    
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
}

.help {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-circle {
    background-color: #e6e9fd;
    padding: 10px;
    border-radius: 50%;
}

.icon-circle img {
    width: 20px;
    height: 20px;
}

.contact-info span {
    display: block;
    font-size: 12px;
    color: #666;
}

.contact-info strong {
    font-size: 14px;
}

.discover-btn {
    border: 1px solid #1d1d1f;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #1d1d1f;
    font-weight: bold;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1a1a1a;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: white;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        display: none;
        flex-direction: column;
        gap: 15px;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        height: 100vh;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
        color: #1a1a1a;
        font-weight: 500;
    }
    
    .nav-links a:hover {
        background-color: #f8f9fa;
        color: #377dff;
    }
    
    .help {
        display: none;
    }
    
    .discover-btn {
        display: none;
    }
}

/* Add overlay when menu is open */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Contact Section Styles */
.contact-section {
    background-color: #edf6fd;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    max-width: 700px;
    width: 100%;
    background-color: #edf6fd;
    border-radius: 10px;
    text-align: left;
}

.contact-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-container p {
    font-size: 15px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

form input,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-size: 14px;
}

form textarea {
    resize: vertical;
}

form button {
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056c7;
}

/* Info Section Styles */
.info-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 60px 40px;
    background-color: #ffffff;
    flex-wrap: wrap;
    position: relative;
    min-height: 500px;
}

.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.85;
}

.info-box {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 25px 30px;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    background-color: #ffffff;
}

.icon {
    background-color: #007bff;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    transition: all 0.3s ease;
}

.icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.info-box:hover .icon {
    background-color: #0056b3;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1a1a1a;
}

.info-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .info-section {
        padding: 50px 30px;
        gap: 25px;
    }
    
    .info-box {
        min-width: 260px;
        max-width: 300px;
        padding: 22px 25px;
    }

}

@media (max-width: 768px) {
    .info-section {
        padding: 40px 20px;
        gap: 20px;
    }
    
    .info-box {
        min-width: 100%;
        max-width: 100%;
        padding: 20px 25px;
    }
    
    .icon {
        width: 50px;
        height: 50px;
        padding: 12px;
    }
    
    .icon img {
        width: 23px;
        height: 23px;
    }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  color: #fff;
  padding: 60px 20px 30px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer .logo img {  
  height: 24px;
}

.footer .logo h3 {
  font-size: 18px;
  font-weight: 600;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 14px;
  background: #1a1a1a;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #377dff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #377dff;
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 15px;
}

.subscribe-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  width: 200px;
  height: 45px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.subscribe-form button {
  background-color: #377dff;
  border: none;
  color: white;
  padding: 0;
  width: 45px;
  height: 45px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  margin-top: -10px;
  position: relative;
  top: -2px;
}

.subscribe-form button i {
  font-size: 14px;
  margin-top: -5px;
  position: relative;
  left: 1px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.footer-links a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #377dff;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: white;
  color: #377dff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #f8f9fa;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-col {
    width: 100%;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  
  .footer-col .subscribe-form input[type="email"] {
    width: 100%;
    margin-bottom: 8px;
  }
} 