:root{
  --navy:#122a44;
  --navy-dark:#0b1c30;
  --amber:#d98324;
  --amber-dark:#b9691a;
  --bg:#f7f6f3;
  --card:#ffffff;
  --text:#243140;
  --muted:#5a6b7b;
  --border:#e2e2de;
}

*{box-sizing:border-box;margin:0;padding:0;}

body{
  font-family:"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit;text-decoration:none;}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}

/* Header / nav */
header{
  background:var(--navy);
  color:#fff;
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
}

.nav-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:16px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}

.logo{
  font-size:1.3rem;
  font-weight:700;
  letter-spacing:.3px;
  display:flex;
  align-items:center;
  gap:10px;
}

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

.logo img{
  height:44px;
  width:auto;
  display:block;
  background:#fff;
  border-radius:6px;
  padding:3px 6px;
}

nav.tabs{
  display:flex;
  gap:4px;
  flex-wrap:wrap;
}

nav.tabs a{
  padding:10px 16px;
  border-radius:6px;
  font-weight:600;
  font-size:.95rem;
  color:#dbe4ee;
  transition:background .15s, color .15s;
}

nav.tabs a:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
}

nav.tabs a.active{
  background:var(--amber);
  color:#1a1a1a;
}

/* Hero */
.hero{
  position:relative;
  color:#fff;
  padding:64px 0 56px;
  overflow:hidden;
  background:var(--navy);
}

.hero.hero-sm{padding:48px 0;}

.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(11,28,48,.93) 0%, rgba(11,28,48,.82) 45%, rgba(11,28,48,.6) 100%);
}

.hero .container{position:relative;z-index:1;}

.hero h1{
  font-size:2.2rem;
  max-width:780px;
  margin-bottom:16px;
}

.hero p.lead{
  font-size:1.15rem;
  color:#cdd8e3;
  max-width:640px;
  margin-bottom:28px;
}

.hero-list{
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 32px;
  max-width:700px;
  margin-bottom:32px;
}

.hero-list li{
  padding-left:26px;
  position:relative;
  color:#e6ecf2;
}

.hero-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--amber);
  font-weight:700;
}

.cta-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:13px 26px;
  border-radius:6px;
  font-weight:700;
  font-size:.95rem;
  transition:transform .15s, background .15s;
}

.btn-primary{
  background:var(--amber);
  color:#1a1a1a;
}
.btn-primary:hover{background:var(--amber-dark);}

.btn-outline{
  border:2px solid rgba(255,255,255,.5);
  color:#fff;
}
.btn-outline:hover{border-color:#fff;}

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

section h2{
  font-size:1.7rem;
  margin-bottom:8px;
  color:var(--navy);
}

section .section-intro{
  color:var(--muted);
  max-width:640px;
  margin-bottom:32px;
}

/* Card grids */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:22px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:10px;
  padding:26px;
  display:block;
  transition:box-shadow .15s, transform .15s;
}

a.card:hover{
  box-shadow:0 6px 18px rgba(18,42,68,.12);
  transform:translateY(-3px);
}

.card .icon{
  font-size:1.6rem;
  width:48px;
  height:48px;
  border-radius:50%;
  background:#fbe9d2;
  color:var(--amber-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}

.card h3{
  font-size:1.1rem;
  margin-bottom:8px;
  color:var(--navy);
}

.card p{color:var(--muted);font-size:.95rem;}

.card-img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:8px;
  margin:-26px -26px 16px -26px;
  width:calc(100% + 52px);
  display:block;
}

.card-img-row{
  display:flex;
  gap:6px;
  margin:-26px -26px 16px -26px;
}

.card-img-row img{
  flex:1;
  height:150px;
  object-fit:cover;
  display:block;
}

.card-img-row img:first-child{border-radius:8px 0 0 0;}
.card-img-row img:last-child{border-radius:0 8px 0 0;}

/* Photo gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:14px;
}

.gallery img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:8px;
  display:block;
}

.photo-banner{
  width:100%;
  border-radius:10px;
  overflow:hidden;
  margin-bottom:24px;
}

.photo-banner img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

/* Alt background section */
.alt{
  background:#eef1ec;
}

/* Pricing table */
.price-table-wrap{
  overflow-x:auto;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:10px;
}

table.pricing{
  width:100%;
  border-collapse:collapse;
  min-width:640px;
}

table.pricing th, table.pricing td{
  padding:16px 20px;
  text-align:left;
  border-bottom:1px solid var(--border);
}

table.pricing th{
  background:var(--navy);
  color:#fff;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.4px;
}

table.pricing tr:last-child td{border-bottom:none;}

table.pricing tr:nth-child(even) td{background:#fafaf8;}

.price-note{
  margin-top:18px;
  color:var(--muted);
  font-size:.92rem;
}

/* Spec lists (trailer cards) */
.specs{
  list-style:none;
  margin:12px 0 14px;
}

.specs li{
  padding:5px 0;
  color:var(--muted);
  font-size:.92rem;
  border-bottom:1px dashed var(--border);
}

.specs li:last-child{border-bottom:none;}

.price-tag{
  font-size:1.15rem;
  font-weight:700;
  color:var(--navy);
  margin-top:6px;
}

.price-tag small{
  display:block;
  font-weight:500;
  color:var(--muted);
  font-size:.85rem;
}

.badge{
  display:inline-block;
  background:#fbe9d2;
  color:var(--amber-dark);
  font-size:.78rem;
  font-weight:700;
  padding:3px 10px;
  border-radius:20px;
  margin-bottom:10px;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:start;
}

.contact-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:10px;
  padding:28px;
}

.contact-card h3{
  color:var(--navy);
  margin-bottom:6px;
  font-size:1.05rem;
}

.contact-card p{margin-bottom:18px;color:var(--muted);}

iframe.map{
  width:100%;
  height:320px;
  border:0;
  border-radius:10px;
}

/* Footer */
footer{
  background:var(--navy-dark);
  color:#aab6c2;
  padding:32px 0;
  font-size:.9rem;
}

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

footer a{color:#dbe4ee;}
footer a:hover{color:var(--amber);}

@media (max-width:700px){
  .hero-list{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .hero h1{font-size:1.7rem;}
}
