/* Body background and floating neon blobs */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #000;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  color: #ccc;
}

body::before,
body::after {
  content: '';
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  animation: floatBlob 16s ease-in-out infinite alternate, spinBlob 60s linear infinite;
}

body::before {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -150px;
  background: radial-gradient(circle at 40% 60%, #29b5db 0%, #6A49D3 80%);
}

body::after {
  width: 320px;
  height: 320px;
  bottom: -120px;
  right: -120px;
  background: radial-gradient(circle at 60% 40%, #29b5db 0%, #6A49D3 90%);
}

@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:hover {
  border-color: #29b5db;
  box-shadow: 0 0 40px rgba(0, 255, 153, 0.1), 0 0 80px rgba(187, 0, 255, 0.12);
}

.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;
  background: radial-gradient(circle at 60% 40%, #29b5db, #6A49D3);
  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); }
}

/* Heading */
h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #00fff7;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 2.4rem;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 12px rgba(0,255,153,0.25);
}

/* 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.2);
  box-shadow: 0 0 6px rgba(0,255,153,0.1);
  transition: box-shadow 0.3s;
}

.country-flag:hover {
  box-shadow: 0 0 10px rgba(0,255,153,0.2);
}

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: 2px solid #555;
    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: white;
}

#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;
    box-shadow: 0 0 0 2px rgba(0, 255, 102, 0.3);
    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;
  }
  h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  button {
    font-size: 1rem;
  }
  .country-select-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .country-flag {
    margin-bottom: 6px;
  }
}
