/* Fix My Sliding Door - single page */
:root{
  --bg: #0b2136;
  --nav: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --soft: #f5f7fb;
  --card: #ffffff;
  --primary: #f59e0b;     /* orange */
  --primary2:#fbbf24;
  --ink: #0b2239;         /* deep blue */
  --ink2:#0f2e4c;
  --shadow: 0 18px 50px rgba(15,23,42,.12);
  --shadow2: 0 12px 30px rgba(2,6,23,.12);
  --radius: 16px;
  --radius2: 22px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
/* Header */
.header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,.9);
}
.header__inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{display:flex; align-items:center; gap:12px; font-weight:800}
.brand__logo{
  height:64px;          /* slightly smaller */
  width:auto;
  background: transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 2px 4px;     /* tiny breathing space */
}
.brand__logo img{
  height:60px;          /* logo itself a bit smaller */
  width:auto;
  max-width: 360px;
  object-fit: contain;
}
.brand__name{white-space:nowrap;}
.nav{display:flex; gap:26px; align-items:center}
.nav__link{
  color:#475569;
  font-weight:500;
  font-size:15px;
}
.nav__link:hover{color:#0f172a}
.header__cta{display:flex; gap:14px; align-items:center}
.phone{
  display:flex; gap:10px; align-items:center;
  color: var(--primary);
  font-weight:700;
  font-size:15px;
}
.phone__icon{
  width:34px; height:34px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(245,158,11,.16);
  color: var(--primary);
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight:800;
  font-size: 14px;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  background: linear-gradient(180deg, var(--primary2), var(--primary));
  color:#1f2937;
  box-shadow: 0 10px 24px rgba(245,158,11,.22);
}
.btn--primary:hover{box-shadow: 0 14px 32px rgba(245,158,11,.28)}
.btn--outline{
  background: rgba(255,255,255,.12);
  color:#fff;
  border-color: rgba(255,255,255,.28);
}
.btn--outline:hover{background: rgba(255,255,255,.16)}
.btn--ghost{
  background:#fff;
  border-color: var(--line);
  color:#0f172a;
}
.btn--full{width:100%}
.btn--lg{padding:14px 20px; border-radius: 16px; font-size:15px}
.btn--xl{padding:18px 22px; border-radius: 18px; font-size:16px}
.btn__icon{display:inline-grid; place-items:center}
.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:#fff;
  cursor:pointer;
  padding:10px;
}
.hamburger span{
  display:block;
  height:2px;
  background:#0f172a;
  margin:5px 0;
  border-radius: 2px;
}
.mobile{
  border-top: 1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.96);
}
.mobile__inner{padding:14px 20px 18px; display:grid; gap:10px}
.mobile__link{padding:10px 6px; color:#334155; font-weight:700}
.mobile__actions{display:flex; gap:12px; padding-top:10px}


.hero__bg{
  position:absolute; inset:0;
  /* faux-photo background using layered gradients (replace with real image if you want) */
  background:
    linear-gradient(90deg, rgba(11,33,54,.86) 0%, rgba(11,33,54,.72) 52%, rgba(11,33,54,.65) 100%),
    radial-gradient(1200px 520px at 65% 45%, rgba(255,255,255,.20) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(135deg, #1a3b5b 0%, #0b2136 65%);
  transform: scale(1.02);
}
.hero__inner{position:relative; padding: 84px 20px}
.hero__content{max-width: 680px}
.hero__trust{
  display:flex; align-items:center; gap:12px;
  color: rgba(255,255,255,.92);
  font-weight:700;
}
.stars{color: var(--primary); letter-spacing:2px}
.hero__title{
  margin: 18px 0 14px;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  color:#fff;
}
.hero__subtitle{
  margin:0 0 26px;
  color: rgba(226,232,240,.92);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
}
.hero__actions{
  display:flex;
  gap:14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero__badges{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.badge{
  display:flex; align-items:center; gap:10px;
  color: rgba(255,255,255,.92);
  font-weight:700;
}
.badge__icon{
  width:30px; height:30px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(245,158,11,.16);
  color: var(--primary);
}

/* Sections */
.section{padding: 92px 0}
.section--light{background: var(--soft)}
.section__header{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 42px;
}
.eyebrow{
  display:inline-block;
  color: var(--primary);
  font-weight:900;
  letter-spacing: 1.2px;
  font-size: 12px;
}
.section__title{
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.2vw, 44px);
  letter-spacing: -1px;
}
.section__title--left{text-align:left}
.section__subtitle{
  margin:0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.grid{
  display:grid;
  gap:22px;
}
.grid--3{grid-template-columns: repeat(3, 1fr)}
.card{
  background: var(--card);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  padding: 26px 26px 24px;
  border: 1px solid rgba(226,232,240,.9);
}
.card__icon{
  width:52px; height:52px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: #f1f5f9;
  color:#0b2239;
  margin-bottom: 14px;
}
.card h3{margin:0 0 8px; font-size: 18px; letter-spacing:-.2px}
.card p{margin:0; color: #64748b; line-height: 1.65}

/* About split */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items:start;
}
.split__left .lead{
  color:#475569;
  line-height:1.75;
  margin: 8px 0 22px;
  max-width: 640px;
}
.checks{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 22px;
  margin-top: 18px;
}
.check{
  display:flex; gap:12px;
  align-items:flex-start;
}
.check__icon{
  width:26px; height:26px;
  border-radius:999px;
  background: rgba(245,158,11,.16);
  color: var(--primary);
  display:grid; place-items:center;
  font-weight:900;
  flex: 0 0 auto;
  margin-top:2px;
}
.check__title{font-weight:900}
.check__text{color:#64748b; font-size: 14px; margin-top:2px; line-height:1.5}

.quoteCard{
  background: #0e2a46;
  color:#fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(2,6,23,.22);
  position: sticky;
  top: 92px;
}
.quoteCard h3{margin:0 0 8px; font-size: 24px; letter-spacing:-.5px}
.quoteCard p{margin:0 0 18px; color: rgba(226,232,240,.92); line-height:1.7}
.quoteCard__rows{display:grid; gap:12px; margin: 18px 0 20px}
.row{display:flex; gap:12px; align-items:center; color: rgba(255,255,255,.94); font-weight:700}
.row__icon{
  width:34px; height:34px;
  border-radius: 999px;
  background: rgba(245,158,11,.16);
  color: var(--primary);
  display:grid; place-items:center;
}

/* Pills */
.pills{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content:center;
  margin-top: 18px;
}
.pill{
  border: 1px solid rgba(226,232,240,.95);
  background: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight:800;
  color:#0f172a;
  cursor:pointer;
  transition: background .15s ease, border-color .15s ease, transform .08s ease;
}
.pill:active{transform: translateY(1px)}
.pill:hover{border-color: rgba(148,163,184,.8)}
.pill.is-activeAlt,
.pill--accent{
  background: rgba(245,158,11,.16);
  border-color: rgba(245,158,11,.38);
  color:#1f2937;
}
.callout{
  margin-top: 22px;
  text-align:center;
  color:#64748b;
  font-weight:600;
}
.callout a{color: var(--primary); font-weight:900}

/* Testimonials */
.tcard{
  background:#fff;
  border-radius: 22px;
  border: 1px solid rgba(226,232,240,.95);
  box-shadow: var(--shadow2);
  padding: 26px;
}
.tcard__stars{color: var(--primary); letter-spacing:2px; font-size: 16px}
.tcard blockquote{
  margin: 14px 0 18px;
  color:#0f172a;
  font-style: italic;
  line-height: 1.75;
}
.tcard__name{font-weight:900}
.tcard__loc{color:#64748b; margin-top:4px}

/* Form section */
.formSection{
  padding: 96px 0 110px;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(135deg, #143a5e 0%, #0b2136 65%);
}
.formSection__inner{display:grid; gap: 26px; justify-items:center}
.formSection__head{text-align:center; max-width: 760px}
.formSection__head h2{
  margin:0 0 10px;
  color:#fff;
  font-size: clamp(32px, 3.6vw, 46px);
  letter-spacing:-1px;
}
.formSection__head p{margin:0; color: rgba(226,232,240,.92); font-weight:600; line-height:1.7}
.formCard{
  width:min(820px, 100%);
  background:#fff;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(2,6,23,.28);
  padding: 26px;
}
.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field{display:grid; gap:8px}
.field--full{grid-column: 1 / -1}
.field span{font-weight:900; color:#0f172a; font-size: 13px}
input, textarea{
  width:100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(226,232,240,.98);
  outline:none;
  font: inherit;
  color:#0f172a;
  background:#fff;
  transition: box-shadow .15s ease, border-color .15s ease;
}
input:focus, textarea:focus{
  border-color: rgba(245,158,11,.55);
  box-shadow: 0 0 0 4px rgba(245,158,11,.18);
}
.fineprint{
  margin: 12px 0 0;
  text-align:center;
  color:#64748b;
  font-size: 12.5px;
  font-weight:600;
}

/* Footer */
.footer{
  background: #0c1b28;
  color: rgba(226,232,240,.92);
  padding: 60px 0 26px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr .9fr;
  gap: 28px;
  align-items:start;
}
.footer__logoRow{display:flex; gap:10px; align-items:center; font-weight:900; color:#fff}
.footer__logo{
  height:56px;
  width:auto;
  border-radius: 0;
  background: transparent;  /* NO white background */
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding: 0;
  box-shadow: none;
}
.footer__logo img{
  height:56px;
  width:auto;
  max-width: 320px;
  object-fit: contain;
}
.footer__logo img{
  height:50px;
  width:auto;
  max-width: 260px;
  object-fit: contain;
}
.footer__name{font-size:18px}
.footer__brand p{margin: 12px 0 14px; color: rgba(226,232,240,.86); line-height:1.7}
.footer__badge{
  display:flex; gap:10px; align-items:center;
  color: rgba(226,232,240,.92);
  font-weight:800;
}
.footer__col h4{margin: 6px 0 14px; color:#fff; letter-spacing:-.2px}
.footer__col a{
  display:block;
  padding: 6px 0;
  color: rgba(226,232,240,.86);
  font-weight:700;
}
.footer__col a:hover{color:#fff}
.footer__row{display:flex; gap:10px; align-items:center; padding: 6px 0; font-weight:700}
.footer__rowIcon{color: var(--primary)}
.footer__bottom{
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(148,163,184,.22);
  color: rgba(226,232,240,.70);
  text-align:center;
  font-weight:700;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .phone{display:none}
  /* hamburger */
  .hamburger{display:inline-block; display: none} 
  .split{grid-template-columns: 1fr}
  .quoteCard{position:relative; top:auto}
  .checks{grid-template-columns: 1fr}
  .grid--3{grid-template-columns: 1fr}
  /* Hero background image with overlay */

/* Hero background image ONLY (no navy color) */

/* Hero with REAL image – person clearly visible */
.hero{
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.08)),
    url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


}
@media (max-width: 560px){
  .header__inner{height:68px}
  .brand__name{
    white-space:nowrap;
    
    font-size: 12px;
    display: none; /* brand name */
  }
  /* yellow button*/
  .btn{padding: 11px 14px;width: 81%; font-size: 11px;}
  .btn--lg{width:100%}
  .hero__actions{gap:10px}
  .formGrid{grid-template-columns: 1fr}
  .footer{float: right;}
}


/* Footer logo contrast fix */
.footer__logo img{
  filter: brightness(2) contrast(2);
}

