/* Reset and base styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #001c33;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main Header Navigation */
.main-header {
    position: fixed;
    top: 0; /* below top-bar */
    width: 100%;
    z-index: 9999;
    height: 80px;
    background: transparent; /* transparent as requested */
    padding: 20px 0;
    transition: background-color 0.3s ease;
}

.main-header.scrolled {
    background-color: #001c33; /* Dark blue */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.main-header .container {
    flex-wrap: wrap;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 38px;
    margin-right: 10px;
}

.navbar {
    display: flex;
    gap: 20px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.navbar a:hover {
    color: #ffc107;
}

.navbar .highlight {
    color: #ffc107;
    font-weight: bold;
}

.btn-account {
    background-color: #ffc107;
    color: #001c33;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-account:hover {
    background-color: #e0a800;
}

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    white-space: nowrap;
  }
  
  .btn-login {
    padding: 10px 18px;
    border: 2px solid #ffc107;
    background-color: transparent;
    color: #ffc107;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .btn-login:hover {
    background-color: #ffc107;
    color: #001c33;
  }
  
  .btn-account {
    padding: 10px 18px;
    background-color: #ffc107;
    color: #001c33;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn-account:hover {
    background-color: #e6b800;
  }

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('../images/vault-bg.jpg') center/cover no-repeat;
    padding: 150px 20px 100px;
    text-align: center;
    color: #fff;
    padding-top: 160px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.4;
    margin: 0;
}

.hero .underline {
    border-bottom: 4px solid #ffc107;
    display: inline-block;
}

.hero p {
    font-size: 18px;
    margin-top: 20px;
    color: #ddd;
}

.sell-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1100px;
  margin: auto;
}

.sell-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.sell-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.option-card {
  background: #fff;
  padding: 30px 20px;
  width: 350px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  position: relative;
  text-align: left;
}

.option-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.option-card ul {
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.option-card .cta-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #063e87;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
}

.option-card .cta-btn span {
  font-size: 18px;
}

.step-number {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 40px;
  color: #ffc107;
  font-weight: bold;
  opacity: 0.2;
}

.sub-header {
  font-size: 24px;
  margin-bottom: 40px;
}
.sub-header .highlight {
  color: #063e87;
  position: relative;
}
.sub-header .highlight::after {
  content: "";
  width: 100%;
  height: 4px;
  background: #ffc107;
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 2px;
}

.step-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.step {
  max-width: 200px;
  text-align: center;
}
.step img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
.step h4 {
  font-size: 16px;
  color: #001c33;
  margin-bottom: 5px;
}
.step p {
  font-size: 14px;
  color: #333;
}

/* CTA Section */
.cta-section {
    background-color: #e9f2fb;
    padding: 80px 20px;
    text-align: center;
}

.cta-container h2 {
    font-size: 32px;
    color: #001c33;
    margin-bottom: 15px;
}

.cta-container .highlight {
    color: #063e87;
    position: relative;
}

.cta-container .highlight::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: #ffc107;
    left: 0;
    bottom: -5px;
    border-radius: 3px;
}

.cta-container p {
    font-size: 16px;
    color: #001c33;
    margin-bottom: 30px;
}

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

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-btn span {
    font-size: 18px;
}

.cta-btn.primary {
    background-color: #063e87;
    color: #fff;
}

.cta-btn.primary:hover {
    background-color: #052e6b;
}

.cta-btn.secondary {
    background-color: #fff;
    border: 2px solid #063e87;
    color: #063e87;
}

.cta-btn.secondary:hover {
    background-color: #063e87;
    color: #fff;
}

.site-footer {
    background: #001c33;
    color: #fff;
    padding-top: 60px;
    position: relative;
    font-size: 14px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
}

.footer-heading h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}
.footer-heading .highlight {
    color: #ffc107;
    position: relative;
}
.footer-heading .highlight::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #ffc107;
    bottom: -5px;
    left: 0;
}

.subscribe-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.subscribe-form input {
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    width: 250px;
}
.subscribe-form button {
    background: #ffc107;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    color: #001c33;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0;
    border-bottom: 1px solid #444;
}

.footer-logo img {
    height: 40px;
}
.footer-logo h3 {
    font-size: 22px;
    margin-top: 10px;
    color: #fff;
}
.social-icons a img {
    width: 22px;
    margin-right: 10px;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-links .column h4 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
}
.footer-links .column ul {
    list-style: none;
    padding: 0;
}
.footer-links .column ul li {
    margin-bottom: 8px;
}
.footer-links .column ul li a {
    color: #fff;
    text-decoration: none;
}
.footer-links .column ul li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    padding: 20px 0;
    font-size: 12px;
    text-align: center;
    color: #ccc;
}
.footer-disclaimer a {
    color: #ffc107;
    text-decoration: underline;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.policy-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 15px;
}
.policy-links a:hover {
    color: #ffc107;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ffc107;
    color: #001c33;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
