/* Body background and floating neon blobs */
/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo image */
.navbar img {
  height: 60px;
  margin-right: auto;
  cursor: pointer;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #ccc;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* Animate underline ONLY on links that are NOT contact button */
.nav-links a:not(.contact-btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, #00f2fe, #9b5de5);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: white;
}

.dropdown {
  position: relative; /* Required for absolute positioning of the submenu */
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* Aligns exactly below the parent */
  left: 0;
  background-color: #111;
  border-radius: 4px;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 180px;
  z-index: 9999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #ccc;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background-color: #222;
  color: #00f2fe;
}


.contact-btn {
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid transparent;
  border-radius: 999px;
  color: white;
  background: #000;
  background-clip: padding-box;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
}


/* Gradient border effect */
.contact-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(to right, #00f2fe, #9b5de5);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
  transition: all 0.3s ease;
  border: none;
}

.contact-btn:hover {
  background: linear-gradient(to right, #00f2fe, #4931C1);
  border: none;
  box-shadow: 0 0 10px 5px #0693BB, 0 0 10px 10px #4931C1;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  margin-left: 1rem;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #000;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 10;
  }

  #menu-toggle:checked ~ .nav-links {
    max-height: 500px;
    padding-bottom: 1rem;
  }

  .hamburger {
    display: block;
  }

  .dropdown-menu {
    position: static;
    background: #111;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #191919;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  color: #ccc;
}

.form-header {
    text-align: center;
    background: #111;
    padding: 70px;
    border-radius: 6px 6px 0 0;
}

.form-header h1 {
    font-size: 42px;
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-header h1 span {
  background: linear-gradient(20deg, #00AEEF 0%, #9b5de5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.form-header p {
  color: #ccc;
  font-size: 17px;
  margin: 0;
  line-height: 1.7;
}

.form-header a {
    color: #ccc;
    text-decoration: underline;
}

.form-header a:hover {
    color: #00AEEF;
}


@keyframes floatBlob {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.1) translateY(30px); }
}

@keyframes spinBlob {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1); }
}

/* Glassy dark container card */
.container {
  max-width: 1200px;
  margin: 64px auto;
  background: rgba(0, 0, 0, 0.7);
  border: 1.5px solid rgba(0, 255, 153, 0.15);
  border-radius: 24px;
  padding: 48px 32px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(0, 255, 153, 0.05), 0 0 60px rgba(187, 0, 255, 0.07);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}


.container::before,
.container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  z-index: 0;
  filter: blur(40px);
}

.container::before {
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  animation: float1 10s ease-in-out infinite alternate, spinBlob 50s linear infinite;
}

.container::after {
  bottom: -60px;
  left: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 40% 60%, #29b5db, #6A49D3);
  animation: float2 12s ease-in-out infinite alternate, spinBlob 70s linear infinite reverse;
}

@keyframes float1 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(16px) scale(1.08); }
}

@keyframes float2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-14px) scale(1.04); }
}



/* Labels */
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ccc;
  letter-spacing: 0.8px;
  font-size: 1.05rem;
}

/* Inputs and textarea */
input, textarea, select#country {
  width: 100%;
  padding: 13px;
  margin-bottom: 22px;
  border: 1.5px solid rgba(0,255,153,0.15);
  border-radius: 8px;
  font-size: 1.05rem;
  background: rgba(0,0,0,0.6);
  color: #eee;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s, transform 0.2s;
  font-family: inherit;
  box-shadow: inset 0 0 4px rgba(0,255,153,0.05);
}

input:hover, textarea:hover, select#country:hover {
  transform: scale(1.02);
}

input:focus, textarea:focus, select#country:focus {
  border-color: #00fff7;
  outline: none;
  background: rgba(0,0,0,0.8);
  box-shadow: 0 0 8px rgba(100, 213, 168, 0.3);
}

/* Neon-gradient animated button */
button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(270deg, #00ff99, #00fff7, #bb00ff, #00ff99);
  background-size: 400% 400%;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1.2px;
  box-shadow: 0 0 20px rgba(0,255,153,0.1);
  transition: transform 0.2s, box-shadow 0.3s;
  animation: neonGradient 8s ease infinite;
  position: relative;
  z-index: 1;
}

@keyframes neonGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 30px rgba(0,255,153,0.2), 0 0 60px rgba(187,0,255,0.2);
}

/* Contact info */
.contact-info {
  text-align: center;
  margin-bottom: 26px;
  color: #aaa;
  font-size: 1.07rem;
  opacity: 0.88;
  position: relative;
  z-index: 1;
}

.contact-info a {
  color: #00fff7;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #29b5db;
}

/* Country select wrapper - more creative */
.country-block {
  position: relative;
  margin-bottom: 24px;
  z-index: 2;
}

.country-select-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(44,83,100,0.25));
  border-radius: 10px;
  padding: 10px 16px;
  border: 1.5px solid rgba(0, 255, 153, 0.2);
  box-shadow: inset 0 0 8px rgba(0,255,153,0.08);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  backdrop-filter: blur(8px);
}

.country-select-wrapper:hover {
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(44,83,100,0.35));
}

.country-select-wrapper:focus-within {
  border-color: #29b5db;
  box-shadow: 0 0 10px #29b5db, 0 0 20px rgba(0,255,153,0.15);
}

.country-select-wrapper::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('data:image/svg+xml;utf8,<svg fill="%2329b5db" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat center;
  background-size: contain;
  margin-left: auto;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.country-select-wrapper:hover::after {
  transform: scale(1.15);
}

.country-flag {
  width: 30px;
  height: 20px;
  border-radius: 5px;
  object-fit: cover;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(0, 255, 153, 0.11);
  box-shadow: 0 0 6px rgba(0,255,153,0.1);
  transition: box-shadow 0.3s;
}

select#country {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1.07rem;
  font-family: inherit;
  padding: 8px 0;
  outline: none;
  color: #eee;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  transition: color 0.3s;
}

select#country:hover {
  color: #00fff7;
}

/* Optional block for "Other Country" input */
#other-country-block {
  margin-top: 10px;
  background: rgba(0,0,0,0.6);
  border-radius: 8px;
  padding: 10px 12px;
  border: 1.5px dashed #29b5db;
  box-shadow: inset 0 0 4px rgba(0,255,153,0.08);
  animation: fadeIn 0.5s;
}

.container .phonetext{
  position: relative;
  top: 20px;
}
#phone {
  margin-top: 25px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

label[for="meeting"] {
    display: block;
    margin-top: 20px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #ccc;
}
#meeting {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(0, 255, 153, 0.11);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background-color: #000;
    color: #ccc;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23ccc' height='24' viewBox='0 0 24 24' width='24'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

#meeting:hover,
#meeting:focus {
    border-color:#29b5db;
    box-shadow: 0 0 0 2px #29b5db;
    color: #29b5db;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2300ff66' height='24' viewBox='0 0 24 24' width='24'><path d='M7 10l5 5 5-5z'/></svg>");
    outline: none;
}

#meeting-details {
    padding: 12px;
    border: 2px solid #555;
    border-radius: 8px;
    background-color: #000;
    margin-top: 10px;
}

#meeting-details label {
  margin-top: 10px;
  display: block;
  font-weight: 500;
  color: rgb(125, 125, 125);
}

#meeting-details input {
    width: 100%;
    padding: 10px;
    border: 2px solid #555;
    border-radius: 6px;
    background-color: #000;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-top: 4px;
    margin-bottom: 10px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#meeting-details input:hover,
#meeting-details input:focus {
    border-color: #29b5db;
    color: #29b5db;
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 1300px) {
  .container {
    padding: 28px 12px;
    max-width: 80vw;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 28px 12px;
    max-width: 80vw;
  }
  .form-header h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  .form-header p {
    font-size: 0.9rem;
    letter-spacing: normal;
  }
  button {
    font-size: 1rem;
  }
  .country-select-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .country-flag {
    margin-bottom: 6px;
  }
}

.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
}

.footer-col {
    padding: 0 15px; /* Gutter space between columns */
}

/* --- Column 1: About Section --- */
.footer-col.about {
    flex: 2; /* Takes up more space */
    min-width: 250px;
}

.footer-col .logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-col .logo svg {
    width: 40px;
    height: auto;
    margin-right: 12px;
}

.footer-col .logo-text {
    font-size: 28px;
    font-weight: 600;
}

.footer-col .tagline {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

/* --- Column 2 & 3: Links and Connect --- */
.footer-col.links,
.footer-col.connect {
    flex: 1; /* Each takes up 1 part of the available space */
    min-width: 200px; /* Increased min-width to better fit the new icons */
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
    position: relative;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #a0a0a0;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* --- Social Icons --- */
.social-links a {
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    margin-right: 15px; 
    transition: color 0.3s ease;
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links a:hover {
    color: #a0a0a0;
}

/* Form status messages */
.form-status {
  position: relative;
  margin-top: 22px;
  padding: 18px 20px 18px 64px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: .35px;
  line-height: 1.5;
  background: rgba(12,12,12,0.75);
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 4px 18px -4px rgba(0,0,0,0.55), 0 0 24px -6px rgba(0,255,153,0.15);
  backdrop-filter: blur(10px) saturate(160%);
  overflow: hidden;
  animation: statusPop .55s cubic-bezier(.68,-0.55,.27,1.55);
}
.form-status::before { /* icon circle */
  content: '';
  position: absolute;
  left: 18px; top: 50%; transform: translateY(-50%);
  width: 34px; height:34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: radial-gradient(circle at 30% 30%,rgba(255,255,255,0.25),rgba(255,255,255,0));
  box-shadow: inset 0 0 6px 2px rgba(255,255,255,0.15),0 0 0 2px rgba(255,255,255,0.05);
}
.form-status.success { border-color: rgba(0,255,170,0.45); color: #e9fff8; background: linear-gradient(135deg, rgba(0,80,55,0.55), rgba(0,0,0,0.7)); }
.form-status.success::before { content: '✔'; color:#00ffbf; text-shadow:0 0 8px #00ffbf,0 0 16px #00a77a; }
.form-status.error { border-color: rgba(255,70,120,0.55); color: #ffe9ef; background: linear-gradient(135deg, rgba(90,0,25,0.55), rgba(0,0,0,0.72)); }
.form-status.error::before { content: '✖'; color:#ff4d7d; text-shadow:0 0 8px #ff4d7d,0 0 16px #a80032; }
.form-status .close-status { position:absolute; right:12px; top:10px; cursor:pointer; font-weight:600; color:inherit; opacity:.6; line-height:1; font-size:18px; }
.form-status .close-status:hover { opacity:1; transform: scale(1.15); }
.form-status .status-progress { position:absolute; left:0; bottom:0; height:3px; width:100%; background: linear-gradient(90deg,#00ffe0,#8b5cf6,#ff4d7d); background-size:200% 100%; animation: progressBar 6s linear forwards, sheen 3s linear infinite; opacity:.85; }

@keyframes statusPop { 0% { transform: translateY(14px) scale(.92); opacity:0; } 60%{ transform: translateY(-2px) scale(1.015); opacity:1;} 100%{ transform: translateY(0) scale(1);} }
@keyframes progressBar { 0% { width:100%; } 90% { width:10%; } 100% { width:0; opacity:0;} }
@keyframes sheen { 0% { background-position:0 0;} 100% { background-position:200% 0;} }

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    .footer-col {
        width: 100%;
        margin-bottom: 40px;
    }
    .footer-col:last-child {
        margin-bottom: 0;
    }
      .footer-col.connect {
        min-width: unset;
    }
}