
/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: #000000;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: relative;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar.shrink {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify: start;
}

.site-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.logo-img {
  max-height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.nav-links a {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px;
  color: white;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #b9982a;
}

.call-wrapper {
  justify: end;
}

.call-btn {
  background-color: #1c2a3a;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  justify-self: end;
}

.call-btn:hover {
  background-color: #16202c;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 280px;
  max-height: 420px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.hero > *:not(.hero-video) {
  position: relative;
  z-index: 2;
}
.btn-hero {
  background-color: gold; /* gold */
  color: #000; /* black text for contrast */
  padding: 12px 24px;
  margin:10px;
  display: inline-block;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  
}
.btn-hero:hover,
.call-btn:hover {
  background-color: #b9982a; /* darker gold on hover */
  color: #fff;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 100;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 100;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}




/* ==================== BUTTONS ==================== */
.btn-primary {
  background-color: #1c2a3a;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-decoration: none;
  margin: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background-color: #16202c;
  transform: translateY(-2px);
}

/* ==================== FEATURES ==================== */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background: #222222;
  color: white;
}

.feature {
  flex: 1 1 200px;
  max-width: 300px;
  margin: 10px;
  padding: 20px;
  background: #222222;
  color: white;
  border-radius: 8px;
}

.feature h2 {
  margin-bottom: 10px;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}

.how-title {
  text-align: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 40px;
}

.how-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.how-image {
  flex: 1 1 45%;
  padding: 20px;
  text-align: center;
}

.how-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

.how-steps {
  flex: 1 1 50%;
  padding: 20px;
}

.steps {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 250px;
  max-width: 300px;
  background: #111;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid white;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step img {
  max-width: 100%;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: white;
}

.step p {
  font-size: 0.95rem;
}

/* ==================== QUOTES ==================== */
.quotes {
  overflow: hidden;
  background-color: #000;
  padding: 30px 0;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.quotes-track {
  display: flex;
  animation: scroll-left 25s linear infinite;
  gap: 60px;
}

.quotes blockquote {
  font-size: 1.5rem;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ==================== RATES ==================== */
.rates {
  padding: 40px 20px;
  background: #111;
}

.rate-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.rate-card {
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  border-radius: 8px;
  background: #222;
}

/* ==================== CALL TO ACTION ==================== */
.call-to-action {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid #D4AF37;
  border-bottom: 2px solid #D4AF37;
}

.call-to-action h2 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: white;
  margin-bottom: 15px;
}

.call-to-action p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ccc;
}

/* ==================== FOOTER ==================== */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111111;
  color: #666666;
  font-size: 0.85rem;
  position: relative;
}

footer p {
  margin-bottom: 10px;
}

footer a {
  color: #D4AF37;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.8;
}

.byline {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 10px;
}

/* ==================== MOBILE RESPONSIVE ==================== */

/* Tablet and below */
@media (max-width: 1023px) {
  .navbar {
    grid-template-columns: 150px 1fr 150px;
    padding: 15px 20px;
  }

  .logo-img {
    max-height: 60px;
  }

  .hamburger {
    display: flex !important;
    position: absolute !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    top: 50% !important;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    z-index: 999;
    gap: 0;
  }

  .nav-links.show {
    display: flex !important;
  }

  .nav-links a {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
 .call-wrapper{
  grid-column:3 ;
  justify-self: end;
}

  .call-btn {
    display: inline-block !important;
    justify-self: end;
  }

  .how-title {
    font-size: 2rem;
  }

  .steps {
    flex-direction: column;
  }

  .step {
    max-width: 100%;
  }
}

/* Mobile phones */
@media (max-width: 767px) {
  .navbar {
    grid-template-columns: 120px 1fr 120px;
    padding: 12px 15px;
  }

  .logo-img {
    max-height: 50px;
  }

  .call-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .hero {
    height: 50vh;
    min-height: 300px;
  }

  .hero h1 {
    font-size: 1.8rem;
    padding: 0 15px;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .how-title {
    font-size: 1.8rem;
  }

  .how-wrapper {
    flex-direction: column;
  }

  .how-image,
  .how-steps {
    flex: 1 1 100%;
  }

  .call-to-action h2 {
    font-size: 2rem;
  }

  .call-to-action p {
    font-size: 1rem;
  }
}

/* Desktop - ensure nav is visible */
@media (min-width: 1024px) {
  .hamburger {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    max-width: 30%;
  }
}

