/* ===========================================
   PREMIUM TRANSPORT — MAIN STYLESHEET
   Palette: Navy #1A2B3C | Gold #D4AF37 | Cream #F9F7F2
   =========================================== */

/* --- Design Tokens --- */
:root {
  --navy:        #1A2B3C;
  --navy-dark:   #0D1820;
  --navy-light:  #243548;
  --gold:        #D4AF37;
  --gold-light:  #E5C65C;
  --gold-dark:   #B8961E;
  --cream:       #F9F7F2;
  --cream-dark:  #EDE8DC;
  --white:       #FFFFFF;
  --text-dark:   #0D1B2A;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --border:      rgba(212,175,55,0.2);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --shadow-sm:   0 2px 8px rgba(13,24,32,0.08);
  --shadow-md:   0 6px 20px rgba(13,24,32,0.12);
  --shadow-lg:   0 16px 40px rgba(13,24,32,0.16);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.35);
  --radius:      12px;
  --radius-lg:   20px;
  --nav-h:       80px;
  --ease:        cubic-bezier(.4,0,.2,1);
  --container:   1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--cream); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-eyebrow { font-family: var(--font-sans); font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.section-intro { font-size: 1.05rem; color: var(--text-mid); max-width: 640px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-intro { margin: 0 auto; }

/* --- Reveal Animations --- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeUp .8s var(--ease) forwards; }
.fade-in:nth-child(2) { animation-delay: .15s; }
.fade-in:nth-child(3) { animation-delay: .3s; }
.fade-in:nth-child(4) { animation-delay: .45s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-size: .95rem; font-weight: 600; letter-spacing: .02em; transition: all .25s var(--ease); }
.btn-gold { background: var(--gold); color: var(--navy-dark); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,175,55,.45); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ========================
   NAV
======================== */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); transition: background .3s var(--ease), box-shadow .3s var(--ease); }
.site-nav.scrolled { background: var(--navy); box-shadow: 0 2px 20px rgba(13,24,32,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-sans); }
.nav-logo-icon { color: var(--gold); font-size: 1.2rem; }
.nav-logo-text { font-size: .85rem; line-height: 1.2; letter-spacing: .03em; }
.nav-logo-text strong { display: block; font-size: 1rem; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,.88); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta { background: var(--gold); color: var(--navy-dark); padding: 10px 22px; border-radius: 50px; font-weight: 600; }
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--navy-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ========================
   HERO
======================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; transform: scale(1.05); transition: transform 8s ease; }
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,24,32,.85) 0%, rgba(26,43,60,.7) 60%, rgba(13,24,32,.5) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 120px 24px 80px; }
.hero-badge { display: inline-block; background: rgba(212,175,55,.2); border: 1px solid rgba(212,175,55,.5); color: var(--gold); font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 8px 20px; border-radius: 50px; margin-bottom: 28px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 700; line-height: 1.1; margin-bottom: 24px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero-title .gold { color: var(--gold); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.85); max-width: 580px; margin: 0 auto 40px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll span { display: block; width: 24px; height: 24px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); animation: bounce 2s infinite; }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: rotate(45deg) translateY(0); } 40% { transform: rotate(45deg) translateY(-8px); } 60% { transform: rotate(45deg) translateY(-4px); } }

/* ========================
   TRUST BAR
======================== */
.trust-bar { background: var(--navy); padding: 40px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 16px 40px; text-align: center; }
.trust-number { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.trust-number::after { content: '+'; }
.trust-icon { font-size: 2rem; color: var(--gold); }
.trust-label { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.75); letter-spacing: .04em; text-transform: uppercase; }
.trust-divider { width: 1px; height: 60px; background: rgba(212,175,55,.2); flex-shrink: 0; }

/* ========================
   ABOUT
======================== */
.about { padding: 100px 0; background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.about-image-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--navy-dark); padding: 20px 24px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-gold); }
.badge-number { display: block; font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.badge-label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.about-lead { font-size: 1.1rem; color: var(--text-dark); font-weight: 500; margin-bottom: 16px; }
.about p { color: var(--text-mid); margin-bottom: 16px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.highlight-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; color: var(--text-dark); }
.highlight-icon { color: var(--gold); font-size: .7rem; }

/* ========================
   SERVICES
======================== */
.services { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.service-card { background: var(--cream); border-radius: var(--radius-lg); padding: 40px 32px; position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease); border: 1px solid transparent; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--border); }

.service-card-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-dark); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; white-space: nowrap; }
.service-card-icon { font-size: 2.2rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.service-card p { color: var(--text-mid); font-size: .95rem; line-height: 1.7; margin-bottom: 20px; }
.service-features { margin-bottom: 24px; }
.service-features li { font-size: .88rem; color: var(--text-mid); padding: 5px 0; padding-left: 18px; position: relative; }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.service-link { font-size: .9rem; font-weight: 600; color: var(--navy); transition: color .2s; }
.service-link:hover { color: var(--gold); }
/* Featured (navy bg) card — must come AFTER base rules to win cascade */
.service-card--featured { background: var(--navy); color: var(--white); }
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,.85); }
.service-card--featured .service-features li { color: rgba(255,255,255,.75); }
.service-card--featured .service-features li::before { color: var(--gold); }
.service-card--featured .service-link { color: var(--gold); }

/* ========================
   APPROACH
======================== */
.approach { position: relative; padding: 100px 0; overflow: hidden; }
.approach-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.approach-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,24,32,.93) 0%, rgba(26,43,60,.88) 100%); }
.approach-inner { position: relative; z-index: 2; }
.approach-content { max-width: 680px; }
.section-eyebrow.light, .section-title.light { color: var(--white); }
.section-eyebrow.light { color: var(--gold); }
.approach-lead { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 48px; }
.approach-list { display: flex; flex-direction: column; gap: 28px; }
.approach-item { display: flex; gap: 24px; align-items: flex-start; }
.approach-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--gold); opacity: .5; line-height: 1; min-width: 40px; }
.approach-text strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.approach-text span { color: rgba(255,255,255,.72); font-size: .95rem; }

/* ========================
   REVIEWS
======================== */
.reviews { padding: 100px 0; background: var(--cream); }
.reviews-widget { max-width: 100%; }

/* ========================
   FAQ
======================== */
.faq { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-q { width: 100%; text-align: left; padding: 24px 0; font-size: 1rem; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; transition: background .2s, transform .3s; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold); border-radius: 2px; }
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after { width: 2px; height: 10px; transition: transform .3s, opacity .3s; }
.faq-q[aria-expanded="true"] .faq-icon { background: var(--gold); }
.faq-q[aria-expanded="true"] .faq-icon::before, .faq-q[aria-expanded="true"] .faq-icon::after { background: var(--navy); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s; }
.faq-a.open { max-height: 400px; padding-bottom: 24px; }
.faq-a p { color: var(--text-mid); line-height: 1.8; }
.faq-a a { color: var(--gold); font-weight: 600; }

/* ========================
   CONTACT
======================== */
.contact { padding: 100px 0; background: var(--cream); }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 700px; margin: 0 auto 60px; }
.contact-action-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; border: 1px solid transparent; transition: all .3s var(--ease); text-decoration: none; }
.contact-action-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.contact-action-icon { font-size: 2.5rem; margin-bottom: 16px; }
.contact-action-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-action-detail { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.contact-action-hint { font-size: .8rem; color: var(--gold); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.contact-location { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: center; }
.contact-location-info h3 { font-family: var(--font-serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.contact-location-info p { color: var(--text-mid); margin-bottom: 16px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-embed iframe { display: block; }

/* ========================
   FOOTER
======================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 48px; padding: 64px 24px; max-width: var(--container); margin: 0 auto; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { color: var(--gold); font-size: 1.3rem; }
.footer-logo-text { font-size: .85rem; line-height: 1.3; color: var(--white); letter-spacing: .03em; }
.footer-logo-text strong { font-size: 1rem; }
.footer-tagline { font-size: .92rem; color: rgba(255,255,255,.65); margin-bottom: 8px; line-height: 1.6; }
.footer-est { font-size: .8rem; color: var(--gold); opacity: .8; }
.footer-links h4, .footer-contact h4 { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image-badge { bottom: -16px; right: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--navy); flex-direction: column; gap: 0; padding: 20px 0; transform: translateY(-110%); transition: transform .35s var(--ease); box-shadow: var(--shadow-md); }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links a { display: block; padding: 14px 32px; }
  .nav-links .nav-cta { margin: 8px 32px; padding: 12px 24px; border-radius: 50px; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-location { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 0; }
  .trust-divider { width: 60px; height: 1px; }
  .trust-item { padding: 12px 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .about-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.6rem; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-divider { display: none; }
}
