/* 
   Premium-Themed CSS
   - Dark background for sophistication (#10192d)
   - Gold (#CDA968) for accent
   - Light text (#f8f9fa) for contrast
*/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");

/* Global Resets and Typography */
* {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

body {
  background-color: #10192d; 
  color: #f8f9fa;            
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

/* Scrollbar */
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: #2a2f3a;
}
html::-webkit-scrollbar-thumb {
  background: #CDA968; 
  border-radius: 5rem;
}

/* Section spacing */
section {
  padding: 5rem 10%;
}

/* Headings */
.heading {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3.6rem; 
  text-transform: capitalize;
  color: #f8f9fa;
}
.heading span {
  color: #CDA968; 
}

/* Reusable Button */
.btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 1rem 3rem;
  cursor: pointer;
  background: #CDA968;      
  font-size: 1.6rem; 
  text-transform: capitalize;
  color: #10192d;
  border: 0.2rem solid #CDA968;
}
.btn:hover {
  background: #f8f9fa;     
  color: #CDA968;          
  border-color: #f8f9fa;
}

/* Header - Optional Contact Info */
.header .contact-info {
  padding: 2rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #CDA968;
}
.header .contact-info p {
  font-size: 1.5rem;
  color: #10192d;
}
.header .contact-info p i {
  padding-right: .5rem;
  color: #ffeb3b;
}

/* Header - Navbar */
.header .navbar {
  padding: 2rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a2236;
  border-bottom: 0.2rem solid #CDA968;
  position: relative;
  z-index: 1000;
}
.header .navbar .logo {
  font-size: 2.4rem;
  text-transform: capitalize;
  color: #CDA968;
  font-weight: 600;
}
.header .navbar .links a {
  margin-left: 2rem;
  font-size: 1.9rem;
  color: #f8f9fa;
}
.header .navbar .links a:hover {
  text-decoration: underline;
  color: #CDA968;
}
.header #menu-btn {
  font-size: 2.6rem;
  cursor: pointer;
  color: #f8f9fa;
  display: none; 
}
.header .navbar .links.active {
  display: block !important;
}

/* ================================================================
   3. HERO SECTION (Keep as is, just remove underlines)
   ================================================================ */
.plc-hero {
  padding: 12rem 0 8rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.plc-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-info h1 {
  font-size: 4.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #ffffff;
}

.hero-info h1 .gold {
  color: #d4af37;
  display: block;
  font-size: 3.6rem;
}

.hero-lead {
  font-size: 1.8rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-info p {
  font-size: 1.6rem;
  color: #d0d0d0;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-list {
  list-style: none;
  margin-bottom: 3rem;
}

.hero-list li {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.hero-list li i {
  margin-right: 1rem;
  font-size: 1.8rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
}

/* ================================================================
   4. PREMIUM UTILITY CLASSES
   ================================================================ */
.gold {
  color: #d4af37;
}

.heading {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #ffffff;
  position: relative;
  font-weight: 700;
}

.heading::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #d4af37, #f4d03f);
  border-radius: 2px;
}

/* ================================================================
   5. PREMIUM BUTTON STYLES
   ================================================================ */
.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.gold-btn {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #000;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.gold-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.outline-btn {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.outline-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* ================================================================
   6. PREMIUM GRID & CARD SYSTEM
   ================================================================ */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.effect-card {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
}

.effect-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.effect-card:hover::before {
  opacity: 1;
}

.effect-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  color: #000;
  position: relative;
  overflow: hidden;
}

.card-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.effect-card h3 {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.effect-card p {
  font-size: 1.5rem;
  color: #b0b0b0;
  line-height: 1.7;
}

.effect-card ul {
  list-style: none;
  padding: 0;
}

.effect-card ul li {
  font-size: 1.5rem;
  color: #b0b0b0;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.effect-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* ================================================================
   7. SECTION BACKGROUNDS & LAYOUTS
   ================================================================ */
.dark-bg {
  background: linear-gradient(135deg, #10192d 0%, #10192d 100%);
  position: relative;
}

.dark-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* ================================================================
   8. PREMIUM FAQ SECTION
   ================================================================ */
.plc-faq {
  background: linear-gradient(135deg, #10192d 0%, #10192d 100%);
  padding: 8rem 0;
}

.faq-center-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-main-heading {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 5rem;
  color: #ffffff;
  position: relative;
}

.faq-main-heading::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(45deg, #d4af37, #f4d03f);
  border-radius: 2px;
}

.faq-list {
  list-style: none;
  padding: 0;
}

.faq-item {
  margin-bottom: 2rem;
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 2.5rem;
  text-align: left;
  font-size: 1.8rem;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.faq-q:hover {
  color: #d4af37;
}

.faq-icon {
  color: #d4af37;
  font-size: 2rem;
}

.faq-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-q.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(0, 0, 0, 0.3);
}

.faq-item.open .faq-a {
  max-height: 500px;
}

.faq-a p {
  padding: 2.5rem;
  font-size: 1.6rem;
  color: #b0b0b0;
  line-height: 1.7;
  margin: 0;
}

/* ================================================================
   9. PREMIUM CTA SECTION
   ================================================================ */
.plc-cta {
  background: linear-gradient(135deg, #10192d 0%, #10192d 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.plc-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #d4af37 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-box {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  font-size: 4.2rem;
  color: #000;
  margin-bottom: 2rem;
  font-weight: 700;
}

.cta-box p {
  font-size: 1.8rem;
  color: #020202;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn {
  margin: 0 1rem;
  background: #000;
  color: #d4af37;
  border: 2px solid #000;
}

.cta-box .btn:hover {
  background: transparent;
  color: #000;
  border-color: #000;
}

.cta-box .outline-btn {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.cta-box .outline-btn:hover {
  background: #000;
  color: #d4af37;
}

/* ================================================================
   10. CONTACT SECTION
   ================================================================ */
.contact {
  background: linear-gradient(135deg, #1a1a1a 0%, #10192d 100%);
  padding: 8rem 0;
}

.contact .heading {
  color: #ffffff;
  margin-bottom: 5rem;
}

.contact .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact .map {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  border: none;
  ;
  transition: filter 0.3s ease;

}

.contact form {
  background: linear-gradient(145deg, #2a2a2a, #3a3a3a);
  padding: 4rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact form h3 {
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.inputBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.6rem;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  color: #ffffff;
  transition: border-color 0.3s ease;
}

.contact form input:focus,
.contact form textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.contact form input::placeholder,
.contact form textarea::placeholder {
  color: #888;
  text-transform: capitalize;
}

.contact form textarea {
  resize: vertical;
  min-height: 150px;
  margin-bottom: 2rem;
}

.contact form .btn {
  width: 100%;
  font-size: 1.8rem;
  padding: 2rem;
}

/* ================================================================
   11. FOOTER SECTION
   ================================================================ */
.footer {
  background: #141a2f;
}
.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}
.footer .box-container .box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.footer .box-container .box .link {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.5rem;
  line-height: 2;
  color: #ccc;
}
.footer .box-container .box .link i {
  padding-right: 0.5rem;
  color: #CDA968;
}
.footer .box-container .box .link:hover {
  color: #f8f9fa;
}
.footer .box-container .box .link:hover i {
  padding-right: 2rem;
}
.footer .box-container .box p {
  padding: 0.5rem 0;
  font-size: 1.4rem;
  line-height: 2;
  color: #ccc;
}
.footer .box-container .box .email {
  width: 100%;
  border: 0.2rem solid #CDA968;
  padding: 1.4rem;
  font-size: 1.4rem;
  color: #ccc;
  background: #10192d;
  margin: 1rem 0;
}
.footer .box-container .box .share {
  margin-top: 2rem;
}
.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.7rem;
  background: #CDA968;
  color: #10192d;
  margin-right: 0.3rem;
  text-align: center;
}
.footer .box-container .box .share a:hover {
  background: #10192d;
  color: #CDA968;
}
.footer .credit {
  font-size: 1.6rem;
  color: #f8f9fa;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 0.2rem solid #CDA968;
  text-align: center;
}
.footer .credit span {
  color: #CDA968;
}
.footer {
  background: #141a2f;
  padding: 4rem 6rem; /* Top/Bottom 4rem, Left/Right 3rem */
}


/* Media Queries */
@media (max-width: 1200px) {
  .header .contact-info {
    padding: 2rem 5%;
  }
  .header .navbar {
    padding: 2rem 5%;
  }
  section {
    padding: 3rem 5%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }
  .header .contact-info {
    padding: 2rem;
  }
  .header .navbar {
    padding: 2rem;
  }
  section {
    padding: 3rem 2rem;
  }
}


/* ================================================================
   12. FLOATING WHATSAPP BUTTON
   ================================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #ffffff;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

/* ================================================================
   13. PREMIUM ANIMATIONS & EFFECTS
   ================================================================ */
.steps-note,
.docs-note {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 1.6rem;
  color: #e0e0e0;
}

.steps-note i,
.docs-note i {
  margin-right: 1rem;
  font-size: 2rem;
}

/* ================================================================
   14. RESPONSIVE DESIGN
   ================================================================ */
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }

  .navbar {
    padding: 1rem 5%;
  }

  .navbar .links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar .links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  #menu-btn {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-info h1 {
    font-size: 3.2rem;
  }

  .hero-info h1 .gold {
    font-size: 2.8rem;
  }

  .grid-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact .row {
    grid-template-columns: 1fr;
  }

  .inputBox {
    grid-template-columns: 1fr;
  }

  .footer .box-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-box .btn {
    display: block;
    margin: 1rem auto;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .plc-hero {
    padding: 10rem 0 6rem;
  }

  section {
    padding: 6rem 0;
  }

  .effect-card {
    padding: 2rem;
  }

  .contact form {
    padding: 2rem;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 2.2rem;
    bottom: 20px;
    right: 20px;
  }
}

/* ================================================================
   15. PRINT STYLES
   ================================================================ */
@media print {
  .header,
  .whatsapp-btn,
  .plc-cta,
  .contact {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .effect-card {
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}

/* ================================================================
   16. ACCESSIBILITY ENHANCEMENTS
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

/* ================================================================
   END OF PREMIUM UNIVERSAL CSS
   ================================================================ */
   /* ------------------------- Hero ------------------------- */
.plc-hero {
  background: linear-gradient(135deg, #11203a 0%, #0b1324 100%);
  overflow: hidden;
  padding-block: 10rem;
  position: relative;
}

/* Star field parallax */
.plc-hero::after {
  animation: stars 80s linear infinite;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='2' fill='%23FFFFFF'/%3E%3C/svg%3E") repeat;
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  opacity: .09;
  pointer-events: none;
  position: absolute;
}

@keyframes stars {
  from { background-position: 0 0; }
  to { background-position: -4000px 0; }
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  position: relative;
  z-index: 1;
}

.hero-info h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1.12;
}

.hero-info h1 span {
  background: var(--grad-45);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--copy);
  font-size: 1.8rem;
  margin: 2rem 0 2.6rem;
  max-width: 62ch;
}

.hero-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 3rem 0;
  padding-left: 0;
}

.hero-list li {
  align-items: flex-start;
  color: var(--copy);
  display: flex;
  font-size: 1.55rem;
  gap: 1rem;
}

.hero-list i {
  color: var(--gold);
  font-size: 1.8rem;
}

.hero-image {
  perspective: 1200px;
}

.hero-image img {
  transform: rotateX(10deg) rotateY(-16deg);
  transition: transform 8s var(--ease);
}

.hero-image:hover img {
  transform: rotateX(0) rotateY(0) scale(1.05);
}

/* Add these styles to your existing CSS file */

/* Hamburger menu button styling */
#menu-btn {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#menu-btn:hover {
    transform: scale(1.1);
}

/* Mobile menu styles */
@media (max-width: 768px) {
    /* Show hamburger button on mobile */
    #menu-btn {
        display: block;
    }
    
    /* Hide and position mobile menu */
    .navbar .links {
        position: fixed;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100%);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    /* Show mobile menu when active */
    .navbar .links.active {
        left: 0;
    }
    
    /* Style mobile menu links */
    .navbar .links a {
        display: block;
        margin: 1rem 0;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        color: #fff;
        text-transform: uppercase;
        font-weight: bold;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .navbar .links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffd700; /* Gold color to match your theme */
    }
    
    /* Hamburger animation */
    #menu-btn.active {
        transform: rotate(90deg);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Ensure header stays on top */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #333; /* Adjust to match your header background */
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 80px; /* Adjust based on your header height */
}

/* Smooth transitions for better UX */
.navbar .links a {
    transition: all 0.3s ease;
}

/* Optional: Add fade-in animation for menu items */
@media (max-width: 768px) {
    .navbar .links.active a {
        animation: fadeInUp 0.3s ease forwards;
    }
    
    .navbar .links.active a:nth-child(1) { animation-delay: 0.1s; }
    .navbar .links.active a:nth-child(2) { animation-delay: 0.2s; }
    .navbar .links.active a:nth-child(3) { animation-delay: 0.3s; }
    .navbar .links.active a:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-list i,
.hero-list i.gold {
  color: #d4af37 !important;
}
/* --- Hamburger / Mobile Navbar Menu (Lawful Journey Gold/Dark Theme) --- */
@media (max-width: 768px) {
  .header .navbar {
    position: relative;
  }
  .header .navbar .links {
    display: none; /* hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a2236; /* your header/nav color */
    border-top: 0.2rem solid #CDA968;
    border-bottom: 0.2rem solid #CDA968;
    padding: 2rem 0;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 12px 30px 0 rgba(16, 25, 45, 0.8);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .header .navbar .links.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header .navbar .links a {
    display: block;
    margin: 1.6rem 0;
    font-size: 2.1rem;
    color: #f8f9fa;
    background: none;
    border-radius: 0;
    text-align: center;
    transition: color 0.2s;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.06em;
  }
  .header .navbar .links a:hover,
  .header .navbar .links a:focus {
    color: #CDA968;
    background: rgba(205,169,104,0.05);
  }
  .header #menu-btn {
    display: inline-block !important;
    font-size: 2.8rem;
    color: #CDA968;
    cursor: pointer;
    margin-left: 1.5rem;
    background: none;
    border: none;
    transition: color 0.2s, transform 0.2s;
  }
  .header #menu-btn.active {
    color: #f8f9fa;
    transform: rotate(90deg) scale(1.18);
  }
  /* Remove header padding for tighter mobile look */
  .header .navbar {
    padding: 1.3rem 4vw;
  }
}

/* Optional: Prevent scrolling when menu is open */
body.menu-open {
  overflow: hidden;
}
