/* Header Enhancement Styles */
/* Modern Header Design with Enhanced CTA Button */

/* Header Container */
.header-enhanced {
  position: relative;
  overflow: hidden;
}

.header-enhanced:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.3), transparent);
}

/* Header Top Enhancements */
.header-top {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 12px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.header-top:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  z-index: 1;
}

.header-top .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-info span {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-info span:hover {
  color: #3498db;
  transform: translateY(-1px);
}

.contact-info i {
  margin-right: 8px;
  color: #3498db;
  font-size: 1rem;
  transition: color 0.3s ease;
}

/* Enhanced Main Navigation */
.main-nav {
  background: rgba(255, 255, 255, 0.98);
  padding: 20px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Logo Enhancements */
.logo {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 10;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 65px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Enhanced Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 5;
}

.nav-links li {
  position: relative;
}

.nav-links li:not(.cta-button) a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-links li:not(.cta-button) a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(45deg, #3498db, #2ecc71);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links li:not(.cta-button) a:hover {
  color: #3498db;
  transform: translateY(-2px);
}

.nav-links li:not(.cta-button) a:hover:before {
  width: 100%;
}

/* Enhanced CTA Button */
.nav-links li.cta-button {
  margin-left: 1rem;
}

.nav-links li .btn {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links li .btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.nav-links li .btn:hover i {
  transform: scale(1.1);
}

.nav-links li .btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.nav-links li .btn:hover:before {
  left: 100%;
}

.nav-links li .btn:hover {
  background: linear-gradient(135deg, #2980b9 0%, #1f5f99 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.nav-links li .btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* CTA Button Pulse Animation */
@keyframes ctaPulse {
  0% {
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(52, 152, 219, 0.6), 0 0 0 0 rgba(52, 152, 219, 0.7);
  }
  100% {
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3), 0 0 0 10px rgba(52, 152, 219, 0);
  }
}

.nav-links li .btn.pulse {
  animation: ctaPulse 2s ease-in-out;
}

/* Mobile Menu Toggle Enhancement */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
  border: 2px solid transparent;
  position: relative;
  z-index: 10;
}

.mobile-menu-toggle:hover {
  background-color: rgba(52, 152, 219, 0.1);
  border-color: rgba(52, 152, 219, 0.2);
}

.mobile-menu-toggle i {
  font-size: 1.5rem;
  color: #2c3e50;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover i {
  color: #3498db;
  transform: scale(1.1);
}

/* Sticky Header Enhancements */
.main-nav-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 15px 0;
}

.main-nav-top .logo img {
  height: 55px;
}

/* Header Scroll Animation */
.header-top-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

/* Additional Visual Enhancements */
.nav-links li:not(.cta-button) a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #3498db;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-links li:not(.cta-button) a:hover::after {
  opacity: 1;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .header-top {
    padding: 8px 0;
    font-size: 0.85rem;
  }
  
  .header-top .container {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .contact-info {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-info span {
    font-size: 0.8rem;
  }
  
  .main-nav {
    padding: 15px 0;
  }
  
  .main-nav-top {
    padding: 10px 0;
  }
  
  .logo img {
    height: 50px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links li:not(.cta-button) a {
    display: block;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0;
  }
  
  .nav-links li:not(.cta-button) a:before,
  .nav-links li:not(.cta-button) a:after {
    display: none;
  }
  
  .nav-links li:not(.cta-button) a:hover {
    background-color: rgba(52, 152, 219, 0.1);
    transform: none;
    color: #3498db;
  }
  
  .nav-links li.cta-button {
    margin-left: 0;
    margin-top: 10px;
  }
  
  .nav-links li .btn {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
    padding: 15px 30px;
    font-size: 1rem;
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .weather-widget {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .nav-links {
    display: flex !important;
  }
}

/* Additional Animation for Page Load */
@keyframes slideInFromTop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-enhanced {
  animation: slideInFromTop 0.8s ease-out;
} 