/* ====== LET'S TALK POPUP ====== */
.talkWrapper {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.talkWrapper.show {
  opacity: 1;
  visibility: visible;
}

.talkBox {
  width: 380px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  box-shadow: 0 0 30px rgba(255, 150, 0, 0.3);
  color: #fff;
  position: relative;
  transform: scale(0.9);
  backdrop-filter: blur(10px);
  animation: fadeInPopup 0.4s ease forwards;
}

@keyframes fadeInPopup {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* CLOSE BUTTON */
.closeTalkForm {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}
.closeTalkForm:hover {
  color: #ffb300;
}
/* ===== Premium Header Styles ===== */
.premium-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.4s ease;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.premium-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.premium-header .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #ff9900, #ff5100);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #ffb300;
}

/* ===== Mobile Menu ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    width: 220px;
    padding: 30px 20px;
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }
}

/* HEADING */
.talkBox h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

/* TAB BUTTONS */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.tab {
  flex: 1;
  padding: 10px 0;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  animation: fadeSlideIn 1.8s ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.hero-content p {
  font-size: 1.1rem;
  margin-top: 15px;
  opacity: 0.85;
}

.highlight {
  color: #ff9900;
}

.btn-primary {
  background: linear-gradient(90deg, #ff9900, #ff6200);
  border: none;
  padding: 14px 34px;
  font-size: 1rem;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff6200, #ff9900);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

/* Animation */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .btn-primary {
    padding: 12px 28px;
  }
}


.tab.active {
  background: linear-gradient(90deg, #ffb300, #ff6600);
  box-shadow: 0 0 15px rgba(255, 120, 0, 0.4);
}

/* FORM */
.form {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.form.active {
  display: flex;
}

input,
select,
textarea {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
}

select,
textarea,
input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  width: 100%;
  transition: all 0.3s ease;
}

select:focus,
textarea:focus,
input:focus {
  border-color: #ffb300;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 10px rgba(255, 150, 0, 0.3);
}

/* Dropdown fix */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='14' viewBox='0 0 24 24' width='14' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  cursor: pointer;
}

option {
  background: #111;
  color: #fff;
}

::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* COUNTRY SELECT */
.phone-group {
  display: flex;
  gap: 6px;
}

.phone-group select {
  width: 30%;
  background: rgba(255, 255, 255, 0.2);
}

.phone-group input {
  width: 70%;
}

/* SUBMIT BUTTON */
.submit-btn {
  margin-top: 10px;
  background: linear-gradient(90deg, #ffb300, #ff6600);
  border: none;
  padding: 10px 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 150, 0, 0.5);
}

/* FLOATING BUTTON */
.letsTalkButton {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(90deg, #ffb300, #ff6600);
  padding: 14px 22px;
  border-radius: 40px;
  box-shadow: 0 0 20px rgba(255, 150, 0, 0.6);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1500;
  transition: all 0.3s ease;
}
.letsTalkButton:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 150, 0, 0.8);
}
