:root {
  --primary-blue: #5865f2;
  --secondary-purple: #7289da;
  --gold: #ffd700;
  --dark: #1a1a2e;
  --light-bg: #f8f9fa;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: linear-gradient(135deg, #e8eaed 0%, #dfe1e5 100%) !important;
  min-height: 100vh;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #e8eaed 0%, #dfe1e5 100%) !important;
  min-height: 100vh;
}

/* Header Styles - Matching Your Design */
header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-bar {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  font-size: 0.9rem;
}

.top-bar .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 2rem;
  font-size: 1rem;
}

.wa-link {
  text-decoration: none;
  color: white !important;
  cursor: pointer;
  transition: color 0.3s ease;
}

.wa-link:hover {
  color: #ffd700 !important;
}

.social-links {
  display: flex;
  gap: 25px;
}

.social-links a {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-links a .fa-facebook-f:hover {
  color: #3b5998;
}

.social-links a .fa-instagram:hover {
  color: #c32aa3;
}

.social-links a .fa-youtube:hover {
  color: #ff0000;
}

.header-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon img {
  transform: scale(1.1);
}

.logo-text h1 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.logo-text p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Burger Menu Styles */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: relative;
}

.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.burger-menu:hover .burger-line {
  background-color: var(--gold);
}

/* Navigation Styles */
nav {
  display: flex;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 1rem 1.5rem;
  display: block;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover::after {
  width: 80%;
}

nav a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
}

.active-nav {
  color: #ffd700 !important;
  background: rgba(255, 215, 0, 0.1);
}

/* Main Content Container */
.main-container {
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 2rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding: 2rem 0;
}

.section-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--secondary-purple)
  );
  border-radius: 2px;
}

.section-header h1 {
  font-size: 2.8rem;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Enquiry Form Styles */
.enquiry-form-section {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(88, 101, 242, 0.15);
  border: 2px solid rgba(88, 101, 242, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.enquiry-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--secondary-purple)
  );
  background-size: 400% 100%;
  animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.form-title {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-title i {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.1rem;
}

.form-group label .required {
  color: var(--danger);
  margin-left: 4px;
}

.package-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

.form-control {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(88, 101, 242, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
  transform: translateY(-2px);
}

.form-control:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.7;
}

.form-control::placeholder {
  color: #999;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235865f2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 16px;
  padding-right: 3.5rem;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-blue);
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #666;
  cursor: pointer;
}

.checkbox-group a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-purple)
  );
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(88, 101, 242, 0.4);
  background: linear-gradient(
    135deg,
    var(--secondary-purple),
    var(--primary-blue)
  );
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  margin-top: 1.5rem;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(40, 167, 69, 0.1),
    rgba(32, 201, 151, 0.1)
  );
  border-radius: 15px;
  border: 2px solid rgba(40, 167, 69, 0.3);
  margin-top: 2rem;
}

.success-message i {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1.5rem;
}

.success-message h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.success-message p {
  color: #666;
  line-height: 1.8;
}

/* Contact Info Box */
.contact-info-box {
  background: linear-gradient(
    135deg,
    rgba(88, 101, 242, 0.1),
    rgba(114, 137, 218, 0.1)
  );
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
  border: 2px solid rgba(88, 101, 242, 0.2);
}

.contact-info-box h4 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-info-box h4 i {
  color: var(--primary-blue);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #666;
}

.contact-item i {
  color: var(--primary-blue);
  font-size: 1.2rem;
  width: 24px;
}

/* FAQ Section Styles */
.faq-section {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(88, 101, 242, 0.15);
  border: 2px solid rgba(88, 101, 242, 0.1);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--secondary-purple)
  );
  background-size: 400% 100%;
  animation: gradientFlow 8s ease infinite;
}

.faq-title {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
  justify-content: center;
}

.faq-title i {
  color: var(--primary-blue);
  font-size: 1.8rem;
}

.faq-container {
  max-height: none;
  overflow-y: visible;
  padding-right: 0;
}

.faq-search {
  margin-bottom: 3rem;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-search input {
  width: 100%;
  padding: 1.2rem 1.5rem 1.2rem 3.5rem;
  border: 2px solid rgba(88, 101, 242, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-search input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
}

.faq-search i {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border: 2px solid rgba(88, 101, 242, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2);
}

.faq-question {
  padding: 1.5rem;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(88, 101, 242, 0.05);
}

.faq-item.active .faq-question {
  background: linear-gradient(
    135deg,
    rgba(88, 101, 242, 0.1),
    rgba(114, 137, 218, 0.1)
  );
  color: var(--primary-blue);
}

.faq-question i {
  color: var(--primary-blue);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer ul li {
  padding: 0.3rem 0;
  color: #666;
  position: relative;
}

.faq-answer ul li::before {
  content: "•";
  color: var(--primary-blue);
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
}

/* Footer */
footer {
  margin-top: 6rem;
}

.footer-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.footer-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5865f2, #7289da, #ffd700);
}

.footer-section h3 {
  color: #ffd700;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #fff);
  border-radius: 3px;
}

.footer-section p {
  line-height: 1.8;
  color: #ddd;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffd700;
}

.active-footer-link {
  color: #ffd700 !important;
}

.footer-bottom {
  background: #16213e;
  color: #888;
  text-align: center;
  padding: 2.5rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #5865f2,
    #7289da,
    #5865f2,
    transparent
  );
}

/* Responsive Design */
@media (max-width: 1024px) {
  nav ul {
    gap: 0;
  }

  nav a {
    padding: 1rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .main-container {
    padding: 0 1rem;
    margin: 3rem auto;
  }

  .section-header h1 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .enquiry-form-section,
  .faq-section {
    padding: 2rem;
  }

  .form-title,
  .faq-title {
    font-size: 1.8rem;
  }

  .form-control {
    padding: 1rem 1.2rem;
  }

  .submit-btn {
    padding: 1.2rem;
    font-size: 1.1rem;
  }

  .header-main {
    padding: 3rem 1rem 1.5rem;
    flex-direction: row;
    gap: 1.5rem;
  }

  /* Burger Menu for Mobile */
  .burger-menu {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    transition: right 0.3s ease;
    z-index: 1001;
    padding-top: 80px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  nav li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav a {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 1.1rem;
  }

  nav a:hover {
    background: rgba(255, 215, 0, 0.15);
  }

  /* Overlay for mobile menu */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .menu-overlay.active {
    display: block;
  }

  .burger-menu.active {
    position: fixed;
    right: 1rem;
    top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-header h1 {
    font-size: 1.8rem;
  }

  .form-title,
  .faq-title {
    font-size: 1.5rem;
  }

  .enquiry-form-section,
  .faq-section {
    padding: 1.5rem;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .header-main {
    padding: 4rem 1rem 1rem;
  }
}
