:root{
  --bg:#0a0a0f;
  --bg-2:#101019;
  --panel:#171722;
  --panel-2:#1d1d2a;
  --text:#f5f1e8;
  --muted:#c9c2b3;
  --gold:#c6a462;
  --gold-2:#b28c45;
  --gold-soft:rgba(198,164,98,.16);
  --border:rgba(198,164,98,.22);
  --white-soft:rgba(255,255,255,.08);
  --shadow:0 12px 34px rgba(0,0,0,.34);
  --radius:18px;
  --radius-sm:10px;
  --max-width:1200px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.6;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(198,164,98,.06), transparent 28%),
    linear-gradient(180deg, #08080c 0%, #0f1017 100%);
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:var(--gold);
  text-decoration:none;
  transition:all .2s ease;
}

a:hover{
  color:#e2c382;
}

p{
  color:var(--muted);
  margin:0 0 16px;
}

h1,h2,h3,h4{
  margin-top:0;
  margin-bottom:16px;
  line-height:1.2;
  color:#fff;
}

h1{
  font-size:48px;
}

h2{
  font-size:34px;
}

h3{
  font-size:22px;
}

ul{
  padding-left:20px;
}

.container{
  width:92%;
  max-width:var(--max-width);
  margin:0 auto;
}

/* Top bar */
.topbar{
  background:#050508;
  border-bottom:1px solid var(--border);
  color:var(--muted);
  padding:10px 0;
  font-size:14px;
}

.topbar a{
  color:#fff;
  font-weight:700;
}

/* Header / nav */
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(10,10,15,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 0;
}

.logo{
  color:#fff;
  font-size:24px;
  font-weight:700;
  letter-spacing:.5px;
}

.logo span{
  color:var(--gold);
}

.main-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:22px;
}

.main-nav a{
  color:var(--text);
  font-size:15px;
  font-weight:600;
}

.main-nav a:hover,
.main-nav a.active{
  color:var(--gold);
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  padding:110px 0 90px;
  border-bottom:1px solid var(--border);
  background:
    linear-gradient(rgba(7,7,10,.58), rgba(7,7,10,.8)),
    url('https://grandprixadventures.com/wp-content/uploads/2025/10/monacogp-2022-7-1.jpg') center/cover no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(198,164,98,.06), transparent 30%, transparent 70%, rgba(198,164,98,.05));
  pointer-events:none;
}

.hero-grid{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:40px;
}

.hero-text{
  flex:1 1 620px;
}

.hero-form{
  flex:1 1 340px;
  background:linear-gradient(180deg, rgba(23,23,34,.96), rgba(18,18,28,.98));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}

.lead{
  font-size:19px;
  color:var(--muted);
  max-width:760px;
  margin-bottom:24px;
}

.hero-points{
  list-style:none;
  padding:0;
  margin:0 0 28px;
}

.hero-points li{
  margin-bottom:10px;
  color:var(--text);
}

/* Sections */
section{
  padding:74px 0;
}

.section-dark{
  background:transparent;
}

.section-panel{
  background:linear-gradient(180deg, rgba(22,22,32,.88), rgba(14,14,22,.92));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.section-intro{
  max-width:900px;
  margin-bottom:28px;
}

/* Grid */
.grid{
  display:grid;
  gap:24px;
}

.grid-2{
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3{
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
}

.grid-4{
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
}

/* Cards */
.card,
.feature-box,
.faq-item,
.stat-box{
  background:linear-gradient(180deg, var(--panel), var(--panel-2));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.card p:last-child,
.feature-box p:last-child,
.faq-item p:last-child{
  margin-bottom:0;
}

.highlight{
  border-left:4px solid var(--gold);
  padding-left:18px;
  margin-top:10px;
  color:var(--muted);
}

/* Buttons */
.btn{
  display:inline-block;
  padding:14px 24px;
  background:linear-gradient(180deg, var(--gold), var(--gold-2));
  color:#111;
  border-radius:var(--radius-sm);
  font-weight:700;
  text-decoration:none;
  border:none;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(198,164,98,.22);
  transition:all .2s ease;
}

.btn:hover{
  color:#111;
  transform:translateY(-1px);
}

.btn-outline{
  display:inline-block;
  padding:13px 22px;
  border:1px solid var(--gold);
  color:var(--text);
  border-radius:var(--radius-sm);
  font-weight:700;
  background:transparent;
}

.btn-outline:hover{
  background:var(--gold-soft);
  color:#fff;
}

/* Forms */
form input,
form select,
form textarea{
  width:100%;
  padding:13px 14px;
  margin-bottom:14px;
  background:#0f1016;
  color:var(--text);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius-sm);
  font-size:15px;
  font-family:inherit;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}

form input::placeholder,
form textarea::placeholder{
  color:#9c9587;
}

form input:focus,
form select:focus,
form textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(198,164,98,.12);
}

    form button {
      width: 100%;
      padding: 14px;
      background: #c89b3c;
      color: #fff;
      border: 0;
      border-radius: 6px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
    }

/* Links block */
.links{
  margin-top:20px;
}

.links a{
  display:inline-block;
  margin:6px 14px 6px 0;
  font-weight:700;
}

/* CTA */
.cta{
  text-align:center;
  padding:80px 20px;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background:
    linear-gradient(rgba(9,9,14,.76), rgba(9,9,14,.92)),
    url('/images/cta-monaco.jpg') center/cover no-repeat;
}

.cta h2{
  margin-bottom:14px;
}

.cta p{
  max-width:760px;
  margin:0 auto 24px;
}

/* Footer */
.site-footer{
  background:#06060a;
  border-top:1px solid var(--border);
  padding:42px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:30px;
}

.footer-title{
  font-size:18px;
  color:#fff;
  margin-bottom:12px;
}

.site-footer ul{
  list-style:none;
  margin:0;
  padding:0;
}

.site-footer li{
  margin-bottom:8px;
}

.site-footer p,
.site-footer li,
.site-footer a{
  color:var(--muted);
}

.site-footer a:hover{
  color:var(--gold);
}

.copyright{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid var(--white-soft);
  color:#8f897d;
  font-size:14px;
}

/* Utility */
.text-center{
  text-align:center;
}

.mb-0{
  margin-bottom:0 !important;
}

.mb-10{
  margin-bottom:10px;
}

.mb-20{
  margin-bottom:20px;
}

.mb-30{
  margin-bottom:30px;
}

.mt-20{
  margin-top:20px;
}

.badge{
  display:inline-block;
  padding:8px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--gold);
  font-size:13px;
  font-weight:700;
  letter-spacing:.4px;
  text-transform:uppercase;
  background:rgba(198,164,98,.08);
  margin-bottom:16px;
}

.split-content{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}

.table-like{
  width:100%;
  border-collapse:collapse;
  border:1px solid var(--border);
  overflow:hidden;
  border-radius:16px;
}

.table-like th,
.table-like td{
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
}

.table-like th{
  background:rgba(198,164,98,.08);
  color:#fff;
}

.table-like td{
  color:var(--muted);
}

/* Responsive */
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns:1fr;
  }

  .split-content{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  h1{
    font-size:34px;
  }

  h2{
    font-size:28px;
  }

  h3{
    font-size:21px;
  }

  .hero{
    padding:80px 0 70px;
  }

  .nav-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .main-nav ul{
    gap:14px;
  }

  .hero-form{
    padding:22px;
  }

  section{
    padding:60px 0;
  }
}

@media (max-width: 520px){
  .btn,
  .btn-outline{
    width:100%;
    text-align:center;
    margin:0 0 12px;
  }

  .main-nav ul{
    flex-direction:column;
    align-items:flex-start;
  }
}

.mobile-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:0;
  cursor:pointer;
}

.mobile-toggle span{
  width:26px;
  height:2px;
  background:#fff;
  display:block;
  transition:all .3s ease;
}

/* Mobile nav */
@media (max-width: 900px){

  .mobile-toggle{
    display:flex;
  }

  .main-nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:rgba(10,10,15,.98);
    border-bottom:1px solid var(--border);
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
  }

  .main-nav.open{
    max-height:420px;
  }

  .main-nav ul{
    flex-direction:column;
    padding:20px;
    gap:16px;
  }

  .main-nav a{
    font-size:16px;
    display:block;
  }

  .nav-wrap{
    position:relative;
  }
}

.mobile-toggle.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.mobile-toggle.active span:nth-child(2){
  opacity:0;
}

.mobile-toggle.active span:nth-child(3){
  transform:rotate(-45deg) translate(5px,-5px);
}

/*  call bar */

.mobile-call-bar{
  display:none;
}

@media (max-width: 768px){
  .mobile-call-bar{
    display:block;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:9999;
    background:linear-gradient(180deg, var(--gold), var(--gold-2));
    box-shadow:0 -6px 18px rgba(0,0,0,.28);
    border-top:1px solid rgba(255,255,255,.15);
  }

  .mobile-call-bar a{
    display:block;
    text-align:center;
    padding:15px 20px;
    font-size:18px;
    font-weight:700;
    color:#111;
    text-decoration:none;
  }

  body{
    padding-bottom:70px;
  }
}

/*  misc */
    .trust-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .trust-item {
      background: #333;
      padding: 20px;
      text-align: center;
      border-radius: 8px;
      box-shadow: 0 3px 12px rgba(0,0,0,0.06);
      font-weight: bold;
    }

/* Dropdown nav */
.has-dropdown{
  position:relative;
}

.dropdown-toggle{
  background:none;
  border:none;
  color:var(--text);
  font-size:15px;
  font-weight:600;
  font-family:inherit;
  cursor:pointer;
  padding:0;
}

.dropdown-toggle:hover{
  color:var(--gold);
}

.dropdown-menu{
  list-style:none;
  margin:0;
  padding:12px 0;
  position:absolute;
  top:calc(100% + 14px);
  left:0;
  min-width:240px;
  background:linear-gradient(180deg, var(--panel), var(--panel-2));
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:all .22s ease;
  z-index:1000;
}

.dropdown-menu li{
  margin:0;
}

.dropdown-menu a{
  display:block;
  padding:10px 18px;
  color:var(--text);
  font-size:15px;
  font-weight:600;
}

.dropdown-menu a:hover{
  background:rgba(198,164,98,.08);
  color:var(--gold);
}

.has-dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* Mobile dropdown */
@media (max-width: 900px){

  .main-nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:rgba(10,10,15,.98);
    border-bottom:1px solid var(--border);
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
  }

  .main-nav.open{
    max-height:700px;
  }

  .main-nav ul{
    flex-direction:column;
    padding:20px;
    gap:0;
  }

  .main-nav > ul > li{
    width:100%;
    border-bottom:1px solid rgba(255,255,255,.06);
    padding:12px 0;
  }

  .main-nav a,
  .dropdown-toggle{
    display:block;
    width:100%;
    text-align:left;
    font-size:16px;
  }

  .has-dropdown:hover .dropdown-menu{
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
  }

  .dropdown-menu{
    position:static;
    min-width:100%;
    margin-top:10px;
    padding:8px 0;
    border-radius:12px;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    box-shadow:none;
  }

  .has-dropdown.open .dropdown-menu{
    display:block;
  }

  .dropdown-menu a{
    padding:10px 14px;
    font-size:15px;
  }

  .dropdown-toggle{
    position:relative;
    padding-right:28px;
  }

  .dropdown-toggle::after{
    content:"+";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    color:var(--gold);
    font-size:20px;
    line-height:1;
  }

  .has-dropdown.open .dropdown-toggle::after{
    content:"−";
  }
}
