/* ======================================
GLOBAL STYLES (variables removed)
====================================== */

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Exo 2", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #0f172a url('../../assets/img/background/background.jpg') center center;
  background-size: cover; 
  color: #e6eef6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.55;
}

/* =========================
   Buttons (Unique Styles)
   ========================= */
   .btnx {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }
  
  /* Primary Button - Sky Blue */
  .btnx-p {
    background-color: #4FC3F7;
    color: #fff;
  }
  .btnx-p:hover {
    background-color: #039BE5;
  }
  
  /* Secondary Button - White with Blue Border */
  .btnx-s {
    background-color: #fff;
    color: #4FC3F7;
    border: 2px solid #4FC3F7;
  }
  .btnx-s:hover {
    background-color: #4FC3F7;
    color: #fff;
  }
  

/* ======================================
NAVIGATION STYLES
====================================== */
.nav-container {
  display: flex;
  justify-content: space-between;
  padding: 1rem 5%;
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
}
  
.logo-container {
  display: flex;
  gap: 0.8rem;
}
  
.logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}
  
.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #4FC3F7;
  font-size: 1.5rem;
}
  
.desktop-nav {
  display: flex;
  gap: 1.5rem;
}
  
.desktop-nav a {
  color: #fff;
  text-decoration: none;
}
  
.dropdown {
  position: relative;
}
  
.dropdown-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s;
}
  
.dropdown-toggle:hover {
  background-color: rgba(79, 195, 247, 0.2);
}
  
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 4px;
  padding: 0.5rem 0;
  min-width: 12.5rem;
  display: none;
  z-index: 1000;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
}
  
.dropdown-menu.show {
  display: block;
}
  
.dropdown-item {
  display: block;
  padding: 0.7rem 1.5rem;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}
  
.dropdown-item:hover {
  background-color: rgba(79, 195, 247, 0.3);
}
  
.nav-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  display: inline-block;
}
  
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
  
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 92%;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 1rem;
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
  z-index: 1000;
  overflow-x: hidden;
}
  
.mobile-nav.show {
  display: block;
}
  
.mobile-dropdown-toggle {
  width: 100%;
  text-align: left;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}
  
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 0 0.5rem 1.5rem;
}
  
.mobile-dropdown-menu a {
  padding: 0.7rem 0;
  color: #fff;
  text-decoration: none;
}
  
.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
  
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

/* ======================================
BUTTON STYLES (Log In, Sign Up, Contact)
====================================== */
.btn-login {
  background-color: transparent;
  border: 2px solid #4FC3F7;
  color: #4FC3F7;
}

.btn-login:hover {
  background-color: #4FC3F7;
  color: #0f172a;
}

.btn-signup {
  background-color: #4FC3F7;
  border: 2px solid #4FC3F7;
  color: #0f172a;
  font-weight: 600;
}

.btn-signup:hover {
  background-color: transparent;
  color: #4FC3F7;
}

.btn-contact {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-contact:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #4FC3F7;
}
/* ======================================
MAIN CONTENT STYLES
====================================== */
.page {
  max-width: 1100px;
  margin: 3.5rem auto;
  padding: 2rem;
  position:relative;
}

.panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(2,6,23,0.6);
  border: 1px solid rgba(79,195,247,0.06);
  overflow: hidden;
}

.header {
  text-align:center;
  margin-bottom: 1.25rem;
}
.header h1{
  font-family: 'Orbitron', sans-serif;
  color: #4FC3F7;
  font-size: 2rem;
  margin:0 0 .25rem;
  text-shadow: 0 0 10px rgba(79,195,247,0.15);
}
.header p{
  margin:0;
  color: #cbd5e1;
  font-size: 0.98rem;
  max-width: 70ch;
  margin-left:auto;
  margin-right:auto;
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media(min-width:900px){
  .layout{
    grid-template-columns: 1fr 360px;
    align-items:start;
  }
}

form.contact-form{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.row {
  display:grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media(min-width:640px){
  .row.cols-2{ grid-template-columns: 1fr 1fr; }
}

label{
  display:block;
  font-size:0.9rem;
  color:#cbd5e1;
  margin-bottom:0.375rem;
  font-weight:600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width:100%;
  padding: .85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(79,195,247,0.06);
  color: #eaf6ff;
  font-size: 0.98rem;
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease, transform .08s ease;
}
input:focus, select:focus, textarea:focus{
  box-shadow: 0 6px 20px rgba(79,195,247,0.08);
  border-color: #4FC3F7;
  transform: translateY(-1px);
}

textarea { min-height: 150px; resize: vertical; }

.form-footer{
  display:flex;
  gap:1rem;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.checkbox {
  display:flex;
  gap:.75rem;
  align-items:center;
  color:#cbd5e1;
  font-size:0.95rem;
}

.btn {
  background: linear-gradient(135deg, #4FC3F7 0%, #01579B 100%);
  color: white;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  border: none;
  font-weight:700;
  cursor:pointer;
  box-shadow: 0 8px 30px rgba(21,90,135,0.12);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover{ transform: translateY(-3px); box-shadow: 0 12px 40px rgba(21,90,135,0.18); }

.info { display:flex; flex-direction:column; gap:1rem; }

.contact-card {
  background: rgba(255,255,255,0.03);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(79,195,247,0.04);
}

.contact-row { display:flex; gap:0.75rem; align-items:flex-start; }
.contact-icon {
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:10px;
  background: linear-gradient(180deg, rgba(79,195,247,0.12), rgba(1,87,155,0.06));
  display:grid;
  place-items:center;
  color:#4FC3F7;
  font-size:1.05rem;
}
.contact-info { font-size:0.95rem; color:#cbd5e1; }
.contact-info strong{ display:block; color:#eaf6ff; font-weight:700; margin-bottom:0.25rem; }

.message {
  display:none;
  padding:.85rem 1rem;
  border-radius:8px;
  background: rgba(76,195,247,0.08);
  color: #e6fbff;
  border: 1px solid rgba(79,195,247,0.12);
  font-weight:600;
}
.message.show{ display:block; }

.muted { color:#cbd5e1; font-size:.9rem; }

/* ======================================
FOOTER STYLES
====================================== */
footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  padding: 4rem 5%;
  text-align: center;
  border-top: 1px solid rgba(79, 195, 247, 0.3);
  box-shadow: 0 -4px 15px rgba(79, 195, 247, 0.1);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
}

.footer-column h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  color: #4FC3F7;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
}

.footer-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(79, 195, 247, 0.3);
}

.footer-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #4FC3F7;
  font-size: 1.8rem;
  text-shadow: 0 0 5px rgba(79, 195, 247, 0.4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  font-size: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}

.footer-links a:hover {
  color: #4FC3F7;
  transform: translateX(5px);
  background: rgba(79, 195, 247, 0.1);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footer-social a {
  color: #e0e0e0;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
  padding: 0.5rem;
  border-radius: 50%;
}

.footer-social a:hover {
  color: #4FC3F7;
  transform: scale(1.2);
  background: rgba(79, 195, 247, 0.1);
}

.footer-copyright {
  font-size: 0.95rem;
  color: #b0b0b0;
  padding-top: 2rem;
  border-top: 1px solid rgba(79, 195, 247, 0.2);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 5%;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-column {
    width: 100%;
    align-items: flex-start;
  }

  .footer-logo-text {
    font-size: 1.5rem;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-social a {
    font-size: 1.5rem;
  }
}
