/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}

/* Top Bar */
.top-bar {
  background: transparent;
  padding: 12px 40px;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.top-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end; /* Align to right */
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-right: 20px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-icon {
  height: 18px;
  width: 18px;
  filter: brightness(0) invert(1);
}

.top-cta {
  display: flex;
  align-items: center;
}

.btn.join-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn.join-btn:hover {
  background: #fcb53b;
  color: #000;
}



/* Navbar */
.navbar {
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 14px 60px; /* Thinner */
  position: absolute;
  width: 100%;
  top: 58px;
  z-index: 998;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 220px; /* More room for oversized logo */
}

.logo {
  position: absolute;
  top: -50px; /* adjust downward as needed */
  left: 150px; /* you can tune this too */
  z-index: 999;
}

.logo img {
  height: 190px;
}


/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #f9f9f9;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffb347;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('img/hero-image.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-privacy {
  height: 100vh;
  background: url('img/privacy-hero.svg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-terms {
  height: 100vh;
  background: url('img/terms-hero.svg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-book {
  height: 100vh;
  background: url('img/hero-book.svg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay-book {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  color: #fff;
}

.hero-badge {
  background-color: #dfe2ff;
  color: #00054d;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fcb53b;
}

.hero-title span {
  color: #fff;
}

.hero-subtext {
  font-size: 19px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 8px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.highlight img {
  width: 24px;
  height: 24px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff6600;
  color: white;
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.6);
}

.btn-primary:hover {
  background-color: #e85c00;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fcb53b;
}

.btn-outline:hover {
  background-color: #fcb53b;
  color: #111;
}

.btn.pulse-green {
  background-color: #00cc66;
  color: white;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(0, 204, 102, 0.6);
  animation: pulse 2s infinite;
  transition: background 0.3s ease;
}

.btn.pulse-green:hover {
  background-color: #00b359;
}

@keyframes pulse {
  0% { box-shadow: 0 0 12px rgba(0, 204, 102, 0.6); }
  50% { box-shadow: 0 0 20px rgba(0, 204, 102, 0.9); }
  100% { box-shadow: 0 0 12px rgba(0, 204, 102, 0.6); }
}

/* feature section */

.features-section {
  background-color: #f7f8fc;
  padding: 80px 20px 60px;
  color: #111;
  text-align: center;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.features-text {
  flex: 1 1 450px;
  text-align: left;
}

.features-text h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #00054d;
}

.features-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333;
}

.features-image {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.features-grid {
  flex: 1 1 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: #fff;
  padding: 20px 18px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  text-align: left;
}

.feature-card img {
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  /* REMOVE filter for full-colour icons */
  filter: none;
}


.feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #00054d;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #333;
}


.features-cta {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.features-cta .btn {
  font-size: 18px;
  padding: 14px 32px;
  font-weight: 700;
}

.features-cta .cta-phone {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* Services Section */
.services-section {
  background-color: #f8f9ff;
  padding: 80px 20px;
  text-align: center;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-intro .section-tag {
  background-color: #ffeccc;
  color: #ff6600;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 12px;
}

.services-intro h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #111;
}

.services-intro p {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.service-card img {
  height: 80px;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 14px;
}

.learn-link {
  color: #0044cc;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.learn-link:hover {
  text-decoration: underline;
}

/* CTA Buttons */
.services-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.services-cta .btn-primary {
  background-color: #ff6600;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.6);
  transition: background 0.3s ease;
}

.services-cta .btn-primary:hover {
  background-color: #e85c00;
}

.services-cta .phone-link {
  font-size: 17px;
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

/* Footer */
.site-footer {
  background-color: #0b0c22;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 14px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 30px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footer-column ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.footer-gallery img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.footer-bottom .footer-links a {
  color: #aaa;
  margin: 0 10px;
  text-decoration: none;
}

.footer-bottom .footer-links a:hover {
  color: #fff;
}

.footer-bottom p a {
  color: #aaa;
  text-decoration: none;
}

.footer-bottom p a:hover {
  color: #fff;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 928px) {
  /* Hide top bar */
  .top-bar {
    display: none;
  }

  /* Adjust nav layout */
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 20px;
  }

  /* Centered logo */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo img {
    height: 130px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  /* Show hamburger */
  .hamburger {
    position: absolute;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
  }

  .hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    border-radius: 2px;
    display: block;
  }

  /* Nav menu hidden by default */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 320px;
    background-color: #111;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeInDropdown 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Show when active */
  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: color 0.2s ease;
    text-align: center;
    width: 100%;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a:hover {
    color: #ff7d00;
  }

  .nav-links .btn-primary {
    margin-top: 15px;
    background-color: #ff7d00;
    color: #fff;
    padding: 14px 0;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 125, 0, 0.3);
    transition: background-color 0.2s ease;
  }

  .nav-links .btn-primary:hover {
    background-color: #e96b00;
  }

  @keyframes fadeInDropdown {
    from {
      opacity: 0;
      transform: translate(-50%, -10px);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtext {
    font-size: 15px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  .phone-link {
    font-size: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .logo img {
    max-width: 120px;
  }
}

/* Contact Section */
.contact {
  background-color: #111119;
  color: #fff;
  padding: 80px 20px;
}

.contact h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Layout wrapper */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Main box */
.contact-box {
  display: flex;
  flex-direction: column;
  background-color: #1a1d23;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  padding: 50px;
  width: 100%;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-box {
    flex-direction: row;
  }

  .contact-left,
  .contact-right {
    width: 50%;
  }
}

.contact-left,
.contact-right {
  flex: 1;
  min-width: 280px;
}

/* Form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
  min-width: 140px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #2b2f38;
  border-radius: 10px;
  font-size: 16px;
  background: #111119;
  color: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6600;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Button styling */
.send-btn-wrapper {
  display: flex;
  justify-content: flex-end;
}

.send-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 16px hsl(24, 100%, 0.5%);
  transition: background 0.2s ease, box-shadow 0.3s ease;
}

.send-btn:hover {
  background-color: #ff6600;
  box-shadow: 0 0 24px hsl(24, 100%, 50%);
}

/* Right side info */
.contact-right {
  background-color: #111119;
  padding: 30px 35px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #ff6600;
  color: #fff;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right h3 {
  margin-bottom: 25px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.contact-right p {
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.6;
}

.contact-right img.contact-icon {
  height: 22px;
  width: 22px;
  flex-shrink: 0;
}

.contact-right a,
.contact-right span {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.contact-right a:hover {
  text-decoration: underline;
}

/* Success Message */
.form-wrapper {
  position: relative;
  min-height: 300px;
}

.form-success-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f1a12;
  border: 2px solid #00cc66;
  border-radius: 8px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  animation: fadeInUp 0.4s ease-in-out;
  z-index: 10;
}

.form-success-message h3 {
  color: #00cc66;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.form-success-message p {
  font-size: 1rem;
  max-width: 320px;
  line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .contact-box {
    flex-direction: column;
    padding: 30px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 14px;
  }

  .send-btn-wrapper {
    justify-content: center;
  }

  .send-btn {
    width: 100%;
  }

  .contact-right {
    padding: 25px 20px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Legal Page Styling */
.legal-page.terms {
  background-color: #111119;
  color: #f2f2f2;
  padding: 80px 20px;
  line-height: 1.7;
}

.legal-page .container {
  max-width: 960px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.legal-page h2 {
  font-size: 1.6rem;
  color: #ff6600;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

.legal-page p,
.legal-page li {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #e1e1e1;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.legal-page li {
  margin-bottom: 10px;
  list-style: disc;
}

.legal-page a {
  color: #ffa733;
  text-decoration: underline;
}

.legal-page a:hover {
  color: #ffcf87;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .legal-page h1 {
    font-size: 2rem;
  }

  .legal-page h2 {
    font-size: 1.3rem;
  }

  .legal-page {
    padding: 60px 15px;
  }
}

.hero.legal-hero .hero-badge {
  font-size: 16px;
  background: #FFA500;
  color: #000;
  padding: 6px 12px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero.legal-hero .hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero.legal-hero .hero-title span {
  font-size: 24px;
  font-weight: 400;
  display: block;
  margin-top: 10px;
}

.hero.legal-hero .hero-subtext {
  font-size: 18px;
  margin-top: 20px;
  color: #ccc;
}

.legal-page {
  padding: 80px 20px;
  background-color: #111119;
  color: #ffffff;
  line-height: 1.7;
  font-size: 16px;
}

.legal-page h1 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #ffcc00;
  font-weight: 600;
}

.legal-page p,
.legal-page li {
  color: #dddddd;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-page a {
  color: #ffcc00;
  text-decoration: underline;
}

.legal-page a:hover {
  text-decoration: none;
}

.legal-page .container {
  max-width: 960px;
  margin: 0 auto;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .legal-page {
    padding: 50px 16px;
  }

  .legal-page h1 {
    font-size: 2rem;
  }

  .legal-page h2 {
    font-size: 1.2rem;
  }
}

.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #222;
  text-align: center;
}

.about-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1d1d1d;
}

.about-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-trust {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  border-left: 4px solid #007acc;
  padding: 20px;
  text-align: left;
}

.cta-phone {
  display: inline-block;
  background-color: #ff6600;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
  transition: background-color 0.3s ease;
}

.cta-phone:hover {
  background-color: #e85c00;
}
