/* ===== HEADER & FOOTER CSS VARIABLES ===== */
:root {
  --primary: #0077cc;
  --accent: #33aaff;
  --background: #ffffff;
  --text: #1a1a1a;
}

/* ===== HEADER (Dark Neon Tech Theme) ===== */
.header {
  background: rgba(3,42,78,0.9);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 119, 204, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  min-height: 80px;
  max-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  height: 60px;
  overflow: visible;
}

.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Header logo - large scale */
header .logo-img {
  height: 100%;
  width: auto;
  transform: scale(3.0) translateY(15%);
  transform-origin: left center;
  filter: brightness(0) invert(1);
  display: block !important;
}

/* ===== NAVIGATION ===== */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #00e5ff;
  text-shadow: 0 0 8px #00e5ff;
}

.nav-menu > li > a {
  color: #e5f0ff;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  transition: all 0.3s;
}

/* ===== DROPDOWN MENU ===== */
.nav-menu ul {
  display: none;
  position: absolute;
  background: rgba(3,42,78,0.9);
  border-radius: 10px;
  padding: 0.5rem 0;
  top: 100%;
  left: 0;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(3,42,78,0.9);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
}

.nav-menu li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu ul li {
  padding: 0.5rem 1rem;
  width: 200px;
}

.nav-menu ul li a {
  color: #e5f0ff;
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  transition: background 0.3s, color 0.3s;
}

.nav-menu ul li a:hover {
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
}

/* ===== BOOK NOW BUTTON ===== */
.book-now-btn {
  background: linear-gradient(90deg, #00bcd4, #0077ff);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(3,42,78,0.9);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
}

.book-now-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(3,42,78,0.9);
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

/* Mobile Menu Toggle */
.navbar-toggler {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: none;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(3,42,78,0.9);
  padding: 3rem 2rem;
  color: #e5f0ff;
  border-top: 3px solid #0077cc;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 15px rgba(3,42,78,0.9);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-about .logo {
  height: auto;
  margin-bottom: 20px;
  overflow: visible;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
}

.footer-about .logo a {
  display: flex !important;
}

.footer-about .logo img {
  display: block !important;
  height: 150px !important;
  width: auto !important;
  transform: none !important;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

.footer-about p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #c0d9ff;
}

.footer-links-section,
.footer-contact {
  padding-top: 0;
}

.footer-links-section h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  margin-top: 0;
  color: #00e5ff;
  font-weight: 600;
}

.footer-logo {
  color: #00e5ff;
  font-weight: 600;
  text-shadow: 0 0 10px #33aaff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0.8rem 0;
}

.footer-links li a {
  color: #e5f0ff;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a:hover {
  color: #00e5ff;
  padding-left: 5px;
}

.footer-links li i {
  width: 20px;
  font-size: 1rem;
}

.social-icons {
  position: relative;
  z-index: 5;
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #e5f0ff;
  font-size: 1.2rem;
  margin: 0 10px 0 0;
  text-decoration: none;
  transition: all 0.3s;
}

.social-icons a:hover {
  color: #00e5ff;
  transform: scale(1.1);
}

.social-icons i {
  font-size: 20px;
  pointer-events: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  color: #a0c0ff;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 992px) {
  .navbar-toggler {
    display: block;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 0;
    width: 280px;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(3,42,78,0.9);
    transition: transform 0.4s ease, opacity 0.4s ease;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(100%);
    opacity: 0;
  }

  .nav-menu.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-menu > li > a {
    display: block;
    color: #333 !important;
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    text-shadow: none !important;
    position: relative;
  }

  .nav-menu > li > a i.fa-caret-down {
    float: right;
    transition: transform 0.3s ease;
  }

  .nav-menu > li.dropdown-open > a i.fa-caret-down {
    transform: rotate(180deg);
  }

  .nav-menu > li > a:hover {
    background: #f0f0f0 !important;
    color: #0077cc !important;
  }

  .nav-menu ul {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-menu li.dropdown-open > ul {
    display: block;
  }

  .nav-menu ul li {
    width: 100%;
    padding: 0;
  }

  .nav-menu ul li a {
    color: #555 !important;
    padding: 10px 20px;
    display: block;
  }

  .nav-menu ul li a:hover {
    background: #e0e0e0 !important;
    color: #0077cc !important;
  }

  .book-now-btn {
    background: #0077cc !important;
    color: white !important;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    display: block;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 790px) {
  .header-container {
    padding: 15px 15px;
    align-items: center;
    min-height: 70px;
  }

  .logo {
    height: 100%;
    margin: 0;
  }

  .header .logo-img {
    height: 50px !important;
    width: auto !important;
    margin: 0 !important;
  }

  .navbar-toggler {
    position: absolute;
    top: 12px;
    right: 10px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
  }

  .navbar-toggler span {
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
  }

  .navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

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

  .navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .nav-menu {
    top: 60px;
    width: 100%;
    max-width: 280px;
    transform: translateX(100%);
    opacity: 0;
  }
 
  .nav-menu.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: flex-start;
  }
  
  .footer-about {
    align-items: flex-start !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .footer-about .logo {
    display: flex !important;
    height: auto !important;
    width: auto !important;
    margin-bottom: 15px !important;
    overflow: visible !important;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-about .logo a {
    display: flex !important;
    flex-direction: column;
  }

  .footer-about .logo img {
    height: 70px !important;
    width: auto !important;
    margin-bottom: 8px;
  }

  .footer-about p {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .social-icons {
    margin-top: 15px;
  }

  .footer-links-section,
  .footer-contact {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-about .logo {
    margin-bottom: 15px !important;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-about .logo img {
    height: 60px !important;
    width: auto !important;
    margin-bottom: 8px;
  }

  .footer-about p {
    font-size: 0.85rem;
  }

  .footer-links-section h4,
  .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-links li a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    margin: 0 8px 0 0;
  }
}