/* ═══════════════════════════════════════════════════════════════
   iAutoGlass — Global Stylesheet
   Shared across ALL pages. Page-specific overrides in page-specific
   <style> blocks only where truly unavoidable.
═══════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --yellow:       #FFD600;
  --black:        #000000;
  --dark:         #111111;
  --dark-grad:    linear-gradient(120deg, #000000, #2a2a2a);
  --dark9:        #202020;
  --gray:         #1e1e1e;
  --mid:          #2a2a2a;
  --light-gray:   #888888;
  --white:        #ffffff;
  --radius:       50px;
  --trans:        all .25s ease;
  --transition:   all .25s ease;
  --primary:      #7b7b7b;
  --primary-dark: #FFD600;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.65; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
p     { font-size: 16px; color: #afafaf; line-height: 1.85; margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center !important; }

/* ── TOP BAR ── */
.topbar { background: var(--yellow); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; }
.topbar-contact { display: flex; gap: 28px; }
.topbar-contact a { font-size: 13px; font-weight: 600; color: var(--black); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.topbar-contact a:hover { opacity: 0.75; }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a { width: 28px; height: 28px; background: var(--black); border-radius: 5px; display: grid; place-items: center; color: var(--white); text-decoration: none; font-size: 13px; transition: background .2s; }
.topbar-social a:hover { background: #333; }

/* ── NAVIGATION ── */
nav { background: var(--black); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #1a1a1a; }
nav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 0; padding-bottom: 0; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; padding: 14px 0; }
.logo-img { height: 110px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: block; padding: 28px 16px; color: var(--white); text-decoration: none; font-size: 14px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; transition: color .2s; white-space: nowrap; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--yellow); }
.dropdown { position: absolute; top: calc(100% + 0px); left: 50%; background: #141414; border: 1px solid #222; border-top: 3px solid var(--yellow); min-width: 280px; border-radius: 0 0 10px 10px; padding: 10px 0; opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(10px); transition: opacity .2s, transform .2s; z-index: 999; }
.nav-links > li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 22px; color: #ccc; text-decoration: none; font-size: 13.5px; font-weight: 500; transition: color .15s, padding-left .15s; border-left: 3px solid transparent; }
.dropdown a:hover, .dropdown a.current { color: var(--yellow); border-left-color: var(--yellow); padding-left: 28px; background: #1a1a1a; }
.btn-quote { padding: 11px 26px; background: transparent; border: 2px solid var(--white); border-radius: var(--radius); color: var(--white); font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .5px; cursor: pointer; text-decoration: none; transition: background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn-quote:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

/* ── HAMBURGER ── */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; z-index: 1100; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s, background .3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── OFFCANVAS ── */
.oc-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 1998; opacity: 0; pointer-events: none; transition: opacity .3s; }
.oc-overlay.active { opacity: 1; pointer-events: all; }
.offcanvas { position: fixed; top: 0; right: -340px; width: 320px; height: 100%; background: #111; z-index: 1999; transition: right .35s ease; overflow-y: auto; border-left: 1px solid #222; }
.offcanvas.open { right: 0; }
.oc-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #222; }
.oc-close { background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }
.oc-nav { list-style: none; padding: 16px 0; }
.oc-nav > li > a { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; color: #ccc; font-size: 15px; font-weight: 600; border-bottom: 1px solid #1a1a1a; text-transform: uppercase; }
.oc-nav > li > a:hover { color: var(--yellow); }
.oc-sub { list-style: none; background: #1a1a1a; display: none; }
.oc-nav > li.expanded .oc-sub { display: block; }
.oc-sub li a { display: block; padding: 11px 36px; color: #aaa; font-size: 14px; border-bottom: 1px solid #242424; }
.oc-sub li a:hover { color: var(--yellow); }
.oc-foot { padding: 24px; }
.oc-foot a { display: block; text-align: center; padding: 14px; background: var(--yellow); color: var(--black); border-radius: var(--radius); font-weight: 700; }

/* ── SECTION COMMONS ── */
section { padding: 80px 0; }
.section-tag, .s-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--yellow); margin-bottom: 14px; }
.section-title, .s-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(34px, 4.5vw, 62px); line-height: 1; letter-spacing: 1px; margin-bottom: 18px; }
.section-sub, .s-sub { font-size: 16px; color: var(--light-gray); max-width: 540px; line-height: 1.7; }
h3.s-title{
	font-size:50px;
}
@media(max-width:768px){
	h3.s-title{
	font-size:34px;
 }
}
/* ── BREADCRUMB ── */
.breadcrumb { background: #0d0d0d; border-bottom: 1px solid #1a1a1a; }
.breadcrumb .container { display: flex; align-items: center; gap: 8px; padding-top: 13px; padding-bottom: 13px; font-size: 13px; color: #666; flex-wrap: wrap; }
.breadcrumb a { color: #666; transition: color .2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .bc-cur { color: var(--yellow); font-weight: 600; }
.breadcrumb i { font-size: 10px; }

/* ── BANNER / PAGE HERO ── */
.banner { position: relative; min-height: 420px; background: center/cover no-repeat; display: flex; align-items: center; overflow: hidden; }
.banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.25) 100%); }
.banner-content { position: relative; z-index: 2; max-width: 640px; animation: bannerUp .9s ease both; }
@keyframes bannerUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.banner-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--black); padding: 7px 18px; border-radius: var(--radius); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.banner h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(40px, 6vw, 72px); font-weight: 800; text-transform: uppercase; line-height: 1.05; margin-bottom: 14px; color: #fff; }
.banner h1 em { color: var(--yellow); font-style: normal; }
.banner-sub { font-size: 18px !important; color: rgba(255,255,255,.82) !important; margin-bottom: 28px; line-height: 1.6 !important; max-width: 520px; }
.banner-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-y { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--yellow); color: var(--black); border: none; border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.btn-y:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,214,0,.35); }
.btn-w { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s, border-color .2s; }
.btn-w:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: var(--black); color: var(--white); border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700; transition: background .2s, transform .2s; }
.btn-dark:hover { background: #222; transform: translateY(-2px); }
.btn-od { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: transparent; color: var(--black); border: 2px solid rgba(0,0,0,.35); border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700; transition: background .2s, transform .2s; }
.btn-od:hover { background: rgba(0,0,0,.08); transform: translateY(-2px); }
.btn-primary { padding: 14px 32px; background: var(--yellow); color: var(--black); border: none; border-radius: 50px; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; transition: transform .2s, box-shadow .2s; display: inline-block; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,214,0,.3); }
.btn-outline { padding: 14px 32px; background: var(--white); color: var(--black); border: none; border-radius: 50px; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; transition: transform .2s, box-shadow .2s; display: inline-block; }
.btn-outline:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,255,255,.3); }
.btn-submit { padding: 16px 44px; background: var(--yellow); color: var(--black); border: none; border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,214,0,.3); }
.btn-faq-primary { padding: 14px 32px; background: var(--yellow); color: var(--black); border: none; border-radius: 50px; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; transition: transform .2s, box-shadow .2s; display: inline-block; }
.btn-faq-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,214,0,.3); }
.btn-faq-ghost { padding: 14px 32px; background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.25); border-radius: 50px; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; transition: border-color .2s, color .2s; display: inline-block; }
.btn-faq-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── QUOTE FORM (shared across pages) ── */
.form-section { background: #111; padding: 64px 0; border-bottom: 1px solid #1a1a1a; }
.form-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 0; background: #1a1a1a; border-radius: 16px; overflow: hidden; border: 1px solid #2a2a2a; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.form-contact-side { background: linear-gradient(160deg, #1c1c00 0%, #2a2300 50%, #1a1a1a 100%); border-right: 1px solid #2a2a2a; padding: 48px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.form-contact-side::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 200px 200px at 50% 40%, rgba(255,214,0,.08) 0%, transparent 70%); pointer-events: none; }
.fcs-phone-icon { width: 64px; height: 64px; background: var(--yellow); border-radius: 50%; display: grid; place-items: center; font-size: 26px; color: var(--black); margin: 0 auto 20px; box-shadow: 0 6px 24px rgba(255,214,0,.3); animation: iconPulse 2.4s infinite; }

@keyframes iconPulse { 0%,100% { box-shadow: 0 6px 24px rgba(255,214,0,.3); } 50% { box-shadow: 0 6px 40px rgba(255,214,0,.6); } }
.fcs-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 10px; }
.fcs-number { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--yellow); letter-spacing: 1px; margin-bottom: 4px; line-height: 1; }
.fcs-number a { color: inherit; }
.fcs-cta-text { font-size: 13px !important; color: #888 !important; margin-bottom: 24px !important; }
.fcs-btn { display: block; width: 100%; padding: 13px; background: var(--yellow); color: var(--black); border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; text-align: center; transition: transform .2s, box-shadow .2s; }
.fcs-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,214,0,.35); }
.fcs-divider { width: 40px; height: 2px; background: rgba(255,214,0,.25); margin: 24px auto; }
.fcs-alt { font-size: 12px !important; color: #555 !important; margin: 0 !important; }
.form-right { padding: 48px 44px;background:#4f4f4f; }
.form-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; text-transform: uppercase; margin-bottom: 28px; color: var(--white); }
.form-title span { color: var(--yellow); }
.hf-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.hf-row-2 {display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px;}
.hf-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.hf-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.hf-group input, .hf-group textarea { background: #111; border: 1px solid #2a2a2a; border-radius: 8px; padding: 13px 16px; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 14px; outline: none; transition: border-color .2s, background .2s; resize: none; }
.hf-group input::placeholder, .hf-group textarea::placeholder { color: #f4f4f4ba; }
.hf-group input:focus, .hf-group textarea:focus { border-color: var(--yellow); background: #141414; }
.hf-group textarea { height: 100px; }
.captcha-row { background: #111; border: 1px solid #2a2a2a; border-radius: 8px; padding: 14px 16px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; height:100px; }
.captcha-row p { font-size: 13px !important; color: #f4f4f4ba !important; margin: 0 !important; }
.captcha-icons { display: flex; gap: 14px; }
.captcha-icons span { font-size: 22px; cursor: pointer; opacity: .5; transition: opacity .2s, transform .2s; user-select: none; padding: 4px; border-radius: 6px; }
.captcha-icons span:hover { opacity: 1; transform: scale(1.15); }
.captcha-icons span.selected { opacity: 1; background: rgba(255,214,0,.15); border: 1px solid rgba(255,214,0,.4); }
.captcha-icons span.wrong { animation: shake .3s ease; }
@keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.form-submit { width: 20%; padding: 15px; background: var(--yellow); color: var(--black); border: none; border-radius: var(--radius); font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,214,0,.35); }

@media(max-width:768px){
.hf-row   { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
.hf-row-2 {display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px;}
.hf-row-3 { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
}

/* ── ABOUT ── */
#about { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-img { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.85); }
.about-img::after { content: ''; position: absolute; inset: 0; border: 3px solid var(--yellow); border-radius: 12px; transform: translate(12px, 12px); pointer-events: none; }
.about-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1; margin-bottom: 22px; }
.about-text h2 em { color: var(--yellow); font-style: normal; }
.about-text p { color: #aaa; line-height: 1.8; margin-bottom: 20px; }
.about-checks { list-style: none; margin: 28px 0; }
.about-checks li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: #ccc; font-weight: 500; border-bottom: 1px solid #1e1e1e; }
.about-checks li::before { content: '✓'; width: 22px; height: 22px; background: var(--yellow); color: var(--black); border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }

/* ── SERVICES ── */
#services { background: var(--dark-grad); padding: 80px 0; text-align: center; }
#services .section-tag { text-align: center; }
.services-subtitle { color: var(--light-gray); font-size: 15px; line-height: 1.7; max-width: 620px; margin: 0 auto 48px; text-align: center; }
.services-toggle-btn { display: inline-flex; align-items: center; gap: 8px; margin: 0 auto 48px; padding: 12px 28px; background: transparent; border: 2px solid rgba(255,214,0,.45); border-radius: 50px; color: var(--yellow); font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .5px; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.services-toggle-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.services-toggle-btn .toggle-arrow { font-size: 12px; transition: transform .35s; }
.services-toggle-btn.expanded .toggle-arrow { transform: rotate(180deg); }
.services-showcase { position: relative; display: grid; grid-template-columns: 280px 1fr 280px; gap: 0; align-items: center; margin-bottom: 24px; }
.services-left, .services-right { display: flex; flex-direction: column; gap: 16px; }
.services-center { display: flex; justify-content: center; align-items: center; padding: 0 20px; }
.services-center img { width: 100%; max-width: 480px; filter: drop-shadow(0 20px 60px rgba(255,214,0,.18)); animation: carfloat 4s ease-in-out infinite alternate; }
@keyframes carfloat { from { transform: translateY(0px); } to { transform: translateY(-14px); } }
.services-bottom-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 0; overflow: hidden; max-height: 0; opacity: 0; transition: max-height .5s ease, opacity .4s ease, margin-top .4s ease; }
.services-bottom-row.visible { max-height: 600px; opacity: 1; margin-top: 16px; }
.svc-card { background: #161616; border: 1px solid #222; border-radius: 12px; overflow: hidden; text-align: left; transition: border-color .3s, transform .3s; cursor: pointer; }
.svc-card:hover { border-color: rgba(255,214,0,.4); transform: translateY(-4px); }
.svc-card-img { width: 100%; height: 140px; object-fit: cover; display: block; filter: brightness(.7) saturate(.6); transition: filter .4s; }
.svc-card:hover .svc-card-img { filter: brightness(.85) saturate(.9); }
.svc-card-body { padding: 16px 18px 20px; }
.svc-card-arrow { width: 34px; height: 34px; background: var(--yellow); border-radius: 50%; display: grid; place-items: center; font-size: 16px; color: var(--black); margin-bottom: 12px; margin-top: -28px; position: relative; z-index: 2; box-shadow: 0 4px 14px rgba(255,214,0,.35); transition: transform .2s; }
.svc-card:hover .svc-card-arrow { transform: scale(1.1); }
.svc-card h3 { font-family: 'Barlow', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; transition: color .2s; }
.svc-card:hover h3 { color: var(--yellow); }
.svc-card p { color: #777; font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.svc-card-link { font-size: 13px; font-weight: 700; color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.svc-card:hover .svc-card-link { color: var(--yellow); border-color: var(--yellow); }

/* ── GALLERY (home) ── */
#gallery { background: var(--dark-grad); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; gap: 8px; margin-top: 60px; }
.gallery-item { overflow: hidden; border-radius: 6px; position: relative; cursor: pointer; }
.gallery-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .4s; filter: brightness(.75) saturate(.7); }
.gallery-item:hover img { transform: scale(1.07); filter: brightness(.9) saturate(1); }
.gallery-overlay { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; background: rgba(255,214,0,.15); transition: opacity .3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 32px; color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,.5); }

/* ── GALLERY (gallery page) ── */
.gallery-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal-item { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.68) saturate(.6); transition: filter .45s, transform .45s; }
.gal-item:hover img { filter: brightness(.88) saturate(1); transform: scale(1.05); }
.gal-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%); opacity: 0; transition: opacity .35s; }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label { font-size: 14px; font-weight: 600; color: #fff; }
.gal-zoom { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: var(--yellow); border-radius: 50%; display: grid; place-items: center; font-size: 14px; color: var(--black); opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s; }
.gal-item:hover .gal-zoom { opacity: 1; transform: scale(1); }

/* ── LIGHTBOX ── */
.lightbox-overlay { position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(6px); }
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 88vh; }
.lightbox-inner img { display: block; max-width: 90vw; max-height: 80vh; border-radius: 10px; box-shadow: 0 24px 80px rgba(0,0,0,.7); object-fit: contain; }
.lightbox-close { position: absolute; top: -48px; right: 0; width: 40px; height: 40px; background: var(--yellow); color: var(--black); border: none; border-radius: 50%; font-size: 20px; font-weight: 700; cursor: pointer; display: grid; place-items: center; transition: transform .2s, background .2s; }
.lightbox-close:hover { transform: scale(1.12); background: #fff; }
.lightbox-caption { text-align: center; margin-top: 16px; color: #bbb; font-size: 14px; letter-spacing: .5px; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(255,214,0,.85); color: var(--black); border: none; border-radius: 50%; font-size: 18px; font-weight: 700; cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .2s; }
.lightbox-nav:hover { background: var(--yellow); transform: translateY(-50%) scale(1.1); }
.lightbox-nav.prev { left: -58px; }
.lightbox-nav.next { right: -58px; }

/* ── TESTIMONIALS ── */
.testimonials-slider-wrap { position: relative; margin-top: 60px; overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1); will-change: transform; }
.testimonial-card { background: var(--gray); border-radius: 12px; padding: 36px 32px; position: relative; border: 1px solid #222; transition: border-color .3s, transform .3s; flex: 0 0 calc(33.333% - 16px); min-width: 0; }
.testimonial-card:hover { border-color: rgba(255,214,0,.3); transform: translateY(-4px); }
.stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; margin-bottom: 18px; }
.testimonial-text { font-size: 15px; line-height: 1.75; color: #bbb; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; background: var(--yellow); border-radius: 50%; display: grid; place-items: center; font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--black); flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 15px; }
.author-loc { font-size: 12px; color: #666; margin-top: 2px; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
#testimonials .slider-btn { width: 46px; height: 46px; border-radius: 50%; border: 2px solid rgba(255,214,0,.4); background: transparent; color: var(--yellow); font-size: 18px; cursor: pointer; display: grid; place-items: center; transition: background .2s, border-color .2s, color .2s; }
#testimonials .slider-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: #333; border: none; cursor: pointer; transition: background .3s, transform .3s; padding: 0; }
.slider-dot.active { background: var(--yellow); transform: scale(1.3); }

/* ── HERO SLIDER (home) ── */
.hero-slider { position: relative; height: 700px; min-height: 600px; max-height: 900px; overflow: hidden; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; }
.slide-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.slide-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; max-width: 700px; padding: 0 80px 0 260px; animation: slideUp 0.8s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.slide-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: #000; padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 24px; width: fit-content; letter-spacing: 0.5px; }
.slide-content h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 72px; font-weight: 800; color: #fff; line-height: 1.05; margin-bottom: 20px; text-transform: uppercase; }
.slide-content h1 span { color: var(--yellow); }
.slide-content p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.7; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
#heroSlider .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.4); color: #fff; width: 56px; height: 56px; border-radius: 50%; font-size: 18px; cursor: pointer; transition: var(--transition); backdrop-filter: blur(8px); }
#heroSlider .slider-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
#heroSlider .slider-btn.prev { left: 30px; }
#heroSlider .slider-btn.next { right: 30px; }
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: var(--transition); border: 2px solid rgba(255,255,255,.4); }
.dot.active { background: var(--yellow); border-color: var(--yellow); width: 30px; border-radius: 5px; }
.hero-form-box { position: absolute; right: 250px; top: 50%; transform: translateY(-50%); background: #4f4f4f; backdrop-filter: blur(12px); padding: 30px; border-radius: 16px; width: 380px; border: 1px solid rgba(255,255,255,0.1); z-index: 5; }
.hero-form-box h3 { margin-bottom: 20px; font-size: 28px; text-align: center; }
.hero-form .form-group { margin-bottom: 14px; }
.hero-form input, .hero-form textarea { width: 100%; padding: 12px 14px; border-radius: 8px; border: 1px solid #333; background: #111; color: #fff; font-size: 14px; }
.hero-form textarea { height: 100px; resize: none; }
.hero-form input:focus, .hero-form textarea:focus { border-color: var(--yellow); outline: none; }

/* ── WHY CHOOSE US ── */
#why { position: relative; padding: 80px 0; text-align: center; background: url('../images/black-car.jpg') center/cover no-repeat; background-attachment: fixed; z-index: 1; color: #fff; }
#why::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.85); z-index: -1; }
#why .container { position: relative; z-index: 2; }
.why-grid { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }
.why-left-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; filter: brightness(.75) saturate(.6); margin-bottom: 28px; }
.why-stat { font-family: 'Bebas Neue', sans-serif; font-size: 80px; color: var(--yellow); line-height: 1; margin-bottom: 12px; }
.why-stat-text { font-size: 14px; color: #888; line-height: 1.65; max-width: 220px; }
.why-right-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; margin-bottom: 48px; flex-wrap: wrap; }
.why-right-header h2 { font-family: 'Barlow', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 800; line-height: 1.15; max-width: 260px; }
.why-right-header p { color: #888; font-size: 14px; line-height: 1.75; max-width: 340px; flex: 1; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.why-feature { padding: 28px 28px 28px 0; border-bottom: 1px solid #222; }
.why-feature:nth-child(odd) { border-right: 1px solid #222; padding-right: 36px; }
.why-feature:nth-child(even) { padding-left: 36px; }
.why-feature:nth-last-child(-n+2) { border-bottom: none; }
.why-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--yellow); margin-bottom: 10px; letter-spacing: 1px; }
.why-feature h4 { font-size: 19px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.why-feature p { color: #888; font-size: 14px; line-height: 1.7; }

/* ── FAQ ── */
.faq-section { background: var(--dark-grad); padding: 80px 0; font-family: 'Barlow', sans-serif; color: var(--white); }
.faq-container { max-width: 1200px; margin: 0 auto; padding:0px 30px; }
.faq-left { position: sticky; top: 24px; }
.faq-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--yellow); margin-bottom: 14px; }
.faq-heading em { color: var(--yellow); font-style: normal; }
.faq-sub { color: var(--light-gray); font-size: 15px; line-height: 1.75; margin-bottom: 36px; max-width: 400px; }
.faq-img-wrap { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.faq-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75) saturate(.7); transition: filter .5s ease; }
.faq-img-wrap:hover img { filter: brightness(.9) saturate(1); }
.faq-img-wrap::after { content: ''; position: absolute; inset: 0; border: 3px solid var(--yellow); border-radius: 12px; transform: translate(10px, 10px); pointer-events: none; z-index: 0; }
.faq-badge { position: absolute; bottom: 20px; left: 20px; z-index: 2; background: var(--yellow); color: var(--black); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 7px 18px; border-radius: 50px; }
.faq-right { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; cursor: pointer; user-select: none; font-size: 19px; font-weight: 600; color: var(--white); transition: color .2s; }
.faq-question:hover { color: var(--yellow); }
.faq-item.open .faq-question { color: var(--yellow); }
.faq-icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; transition: background .25s, border-color .25s, transform .35s; font-size: 18px; line-height: 1; color: var(--white); }
.faq-item.open .faq-icon { background: var(--yellow); border-color: var(--yellow); color: var(--black); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 0 22px; }
.faq-answer p { color: #aaa; font-size: 15px; line-height: 1.8; }
.faq-cta { margin-top: 36px; display: flex; gap: 14px; align-items: center; }

/* ── CONTACT ── */
#contact { background: linear-gradient(120deg, #000000, #2a2a2a); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; margin-top: 60px; align-items: start; }
.contact-info h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--yellow); margin-bottom: 8px; margin-top: 32px; }
.contact-info h3:first-of-type { margin-top: 0; }
.contact-info p { color: #999; font-size: 15px; line-height: 1.7; }
.contact-info h4{font-size:22px;  }
.contact-form {     display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
    background: #323232;
    border-radius: 7px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #888; }
.form-group input, .form-group select, .form-group textarea { background: var(--mid); border: 1px solid #2e2e2e; border-radius: 8px; padding: 14px 18px; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 15px; outline: none; transition: border-color .2s; resize: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--yellow); }
.form-group select option { background: var(--gray); }
.form-group textarea { height: 130px; }

/* ── INTRO (inner pages) ── */
#intro { background: var(--black); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;}
.intro-text h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; text-transform: uppercase; color: #fff; margin: 28px 0 14px; padding-left: 14px; border-left: 3px solid var(--yellow); }
.intro-checks { list-style: none; margin: 20px 0 28px; }
.intro-checks li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; color: #ccc; font-size: 15px; border-bottom: 1px solid #141414; }
.intro-checks li:last-child { border-bottom: none; }
.ic-dot { width: 22px; height: 22px; background: var(--yellow); color: var(--black); border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.intro-img-wrap { position: relative; border-radius: 14px; overflow: visible; }
.intro-img-wrap img { width: 100%; border-radius: 14px; filter: brightness(.82) saturate(.75); transition: filter .4s; }
.intro-img-wrap:hover img { filter: brightness(.96) saturate(1); }
.intro-img-wrap::after { content: ''; position: absolute; inset: 0; border: 3px solid var(--yellow); border-radius: 14px; transform: translate(12px, 12px); pointer-events: none; }
.img-badge { position: absolute; bottom: -16px; left: -16px; z-index: 3; background: var(--yellow); color: var(--black); padding: 14px 20px; border-radius: 12px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; line-height: 1.35; box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.img-badge strong { display: block; font-size: 26px; }

/* ── PROCESS STEPS ── */
#process { background: #0a0a0a; }
.proc-header { max-width: 700px; margin-bottom: 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card { background: #111; padding: 42px 32px; border: 1px solid #1c1c1c; position: relative; overflow: hidden; transition: border-color .3s, transform .3s; }
.step-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.step-card:hover { border-color: #2e2e2e; transform: translateY(-4px); }
.step-card:hover::before { transform: scaleX(1); }
.step-bg-num { font-family: 'Bebas Neue', sans-serif; font-size: 80px; line-height: 1; color: rgba(255,214,0,.06); position: absolute; top: 12px; right: 20px; letter-spacing: -2px; transition: color .3s; }
.step-card:hover .step-bg-num { color: rgba(255,214,0,.12); }
.step-icon-wrap { width: 52px; height: 52px; background: var(--yellow); color: var(--black); border-radius: 12px; display: grid; place-items: center; font-size: 20px; margin-bottom: 22px; box-shadow: 0 6px 18px rgba(255,214,0,.22); }
.step-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; line-height: 1.2; transition: color .2s; }
.step-card:hover h3 { color: var(--yellow); }
.step-card p { font-size: 14px !important; color: #666 !important; line-height: 1.75 !important; margin: 0 !important; }

/* suburb process */
.proc-header { max-width: 1000px; margin-bottom: 30px; }
#process.suburbframe2 {
	background:#141414;
}
/* ── HELP / SUPPORTING SECTION ── */
#help { background: var(--black); }
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-top: 52px; }
.help-img-wrap { position: relative; border-radius: 14px; overflow: visible; order: -1; }
.help-img-wrap img { width: 100%; border-radius: 14px; filter: brightness(.78) saturate(.7); transition: filter .4s; }
.help-img-wrap:hover img { filter: brightness(.94) saturate(1); }
.help-img-wrap::after { content: ''; position: absolute; inset: 0; border: 3px solid var(--yellow); border-radius: 14px; transform: translate(-12px, 12px); pointer-events: none; height:365px; }
.help-points { list-style: none; margin: 24px 0; }
.help-points li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid #141414; }
.help-points li:last-child { border-bottom: none; }
.hp-icon { width: 42px; height: 42px; background: rgba(255,214,0,.1); border-radius: 10px; display: grid; place-items: center; font-size: 18px; color: var(--yellow); flex-shrink: 0; transition: background .3s; }
.help-points li:hover .hp-icon { background: var(--yellow); color: var(--black); }
.hp-text strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hp-text p { font-size: 13px !important; color: #777 !important; margin: 0 !important; }
.contact-strip { background: #111; border: 1px solid #1e1e1e; border-radius: 12px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.cs-icon { width: 46px; height: 46px; background: var(--yellow); border-radius: 10px; display: grid; place-items: center; font-size: 18px; color: var(--black); flex-shrink: 0; }
.cs-text strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #666; margin-bottom: 2px; }
.cs-text a { font-size: 16px; font-weight: 700; color: #fff; transition: color .2s; }
.cs-text a:hover { color: var(--yellow); }
.cs-sep { width: 1px; height: 40px; background: #2a2a2a; flex-shrink: 0; }

@media(max-width:768px){
	.help-img-wrap::after { content: ''; position: absolute; inset: 0; border: 3px solid var(--yellow); border-radius: 14px; transform: translate(-12px, 12px); pointer-events: none; height:auto; }
	
}
/* ── CTA BANNER ── */
.cta-section { background: var(--yellow); padding: 72px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 300px at 80% 50%, rgba(255,255,255,.08) 0%, transparent 70%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 4vw, 50px); color: var(--black); line-height: 1; margin-bottom: 10px; }
.cta-text p { font-size: 16px !important; color: #333 !important; max-width: 480px; margin: 0 !important; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── MARQUEE ── */
.marquee-wrapper { width: 100%; overflow: hidden; background: #111; padding: 0; cursor: pointer; position: relative; }
.marquee-track-outer { overflow: hidden; background: #f5c518; padding: 0; transition: background 0.2s ease; }
.marquee-track { display: flex; width: max-content; animation: scroll-left 38s linear infinite; }
.marquee-track-outer:hover .marquee-track { animation-play-state: paused; }
.marquee-track-outer:hover { background: #111; }
.marquee-track-outer:hover .item-tag { color: #f5c518; border-color: #f5c518; }
.marquee-track-outer:hover .divider { color: #f5c518; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-inner { display: flex; align-items: center; padding: 18px 0; white-space: nowrap; }
.item-tag { font-size: clamp(13px, 2vw, 16px); font-weight: 500; color: #111; padding: 6px 20px; border: 1.5px solid #111; border-radius: 40px; margin: 0 10px; transition: color 0.2s, border-color 0.2s; letter-spacing: 0.02em; flex-shrink: 0; }
.divider { font-size: 22px; color: #111; opacity: 0.4; margin: 0 4px; flex-shrink: 0; transition: color 0.2s; }

/* ── FAB BUTTONS ── */
.fab-container { position: fixed; right: 24px; bottom: 40px; display: flex; flex-direction: column; gap: 14px; z-index: 9999; }
.fab-item { display: flex; align-items: center; justify-content: flex-end; gap: 12px; cursor: pointer; text-decoration: none; }
.fab-label { background: #111; color: #f5c518; font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 20px; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none; letter-spacing: 0.03em; border: 1.5px solid #f5c518; }
.fab-btn { width: 54px; height: 54px; border-radius: 50%; background: #f5c518; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.25); transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; flex-shrink: 0; }
.fab-btn i { font-size: 20px; color: #111; transition: color 0.2s ease; }
.fab-item:hover .fab-label { opacity: 1; transform: translateX(0); }
.fab-item:hover .fab-btn { background: #111; transform: scale(1.1); box-shadow: 0 6px 24px rgba(245,197,24,.4); }
.fab-item:hover .fab-btn i { color: #f5c518; }
.fab-pulse { position: relative; }
.fab-pulse::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #f5c518; opacity: 0; animation: pulse-ring 2s ease-out infinite; }
@keyframes pulse-ring { 0% { opacity: 0.7; transform: scale(1); } 100% { opacity: 0; transform: scale(1.5); } }

/* ── SCROLL TOP ── */
.scroll-top { position: fixed; bottom: 28px; left: 28px; z-index: 999; width: 44px; height: 44px; border-radius: 50%; background: #1c1c1c; color: #fff; font-size: 15px; border: none; cursor: pointer; display: none; align-items: center; justify-content: center; transition: background .2s; box-shadow: 0 4px 14px rgba(0,0,0,.4); }
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--yellow); color: var(--black); }

/* ── FOOTER ── */
footer { background: #080808; border-top: 1px solid #1a1a1a; }
footer .container { padding-top: 60px; padding-bottom: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 48px; }
.footer-brand p { color: #afafaf; font-size: 14px !important; line-height: 1.7 !important; margin: 16px 0 24px !important; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: #1a1a1a; border-radius: 6px; display: grid; place-items: center; color: #888; text-decoration: none; transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--yellow); color: var(--black); }
.footer-social a i { font-size: 18px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--yellow); margin-bottom: 18px; }
.footer-col h4 i { margin-right: 8px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #afafaf !important; text-decoration: none; font-size: 14px; transition: color .2s; display: inline-flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--white) !important; }
.footer-col ul li a i { margin-right: 0; }
.footer-col ul li.plain { color: #afafaf; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 24px; display: flex; justify-content: center; align-items: center; color: #afafaf; font-size: 13px; }
a.yellow-text { color: var(--yellow); }
img.logo-img95 { width: 100%; padding-bottom: 40px; }

/* ── TESTIMONIALS BG (home) ── */
#testimonials { position: relative; padding: 80px 0; text-align: center; background: url('../images/bg67.jpg') center top/cover no-repeat; z-index: 1; color: #fff; overflow: hidden; }
#testimonials::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: -1; }
#testimonials .container { position: relative; z-index: 2; }

/* ── HERO BANNER + FORM (inner pages) ── */
.hero-banner-form { position: relative; background: url('../images/slide_n1.jpg') center/cover no-repeat; padding: 120px 0; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(0,0,0,0.85), rgba(0,0,0,0.6)); }
.hero-flex { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 60px; z-index: 2; }
.hero-left { max-width: 550px; }
.hero-badge { display: inline-block; background: #FFD600; color: #000; padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; margin-bottom: 20px; }
.hero-left h1 { font-size: 58px; line-height: 1.1; margin-bottom: 20px; }
.hero-left h1 span { color: #FFD600; }
.hero-left p { color: #ccc; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1199px) { .hero-form-box { display: none; } }
@media (max-width: 1100px) {
  .services-showcase { grid-template-columns: 1fr; }
  .services-center { order: -1; margin-bottom: 20px; }
  .services-left, .services-right { display: grid; grid-template-columns: 1fr 1fr; }
  .services-bottom-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .intro-grid, .help-grid { grid-template-columns: 1fr; gap: 40px; }
  .help-img-wrap { order: 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .form-wrap { grid-template-columns: 1fr; }
  .form-contact-side { padding: 36px; flex-direction: row; flex-wrap: wrap; justify-content: space-around; border-right: none; border-bottom: 1px solid #2a2a2a; }
  .faq-container { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
}
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  section { padding: 70px 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-card { flex: 0 0 calc(100% - 0px); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: 1/3; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none !important; }
  .btn-quote { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-left { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
  .why-left-img { width: 160px; margin-bottom: 0; }
  .why-stat { font-size: 56px; }
  .slide-content { padding: 0 40px; }
  .slide-content h1 { font-size: 52px; }
  .topbar-contact a:nth-child(2) { display: none; }
  .banner { min-height: 360px; }
  .gallery-grid3 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .hf-row, .hf-row-4 { grid-template-columns: 1fr; }
  .hero-flex { flex-direction: column; }
  .lightbox-nav.prev { left: -36px; }
  .lightbox-nav.next { right: -36px; }
}
@media (max-width: 768px) {
  .btn-quote { margin-top: 12px; text-align: center; justify-content: center; }
  .slide-content h1 { font-size: 40px; }
  .slide-content { padding: 0 24px; }
  .hero-slider { height: 85vh; }
}
@media (max-width: 600px) {
  #services { padding: 60px 20px; }
  .services-left, .services-right { grid-template-columns: 1fr; }
  .services-bottom-row { grid-template-columns: 1fr; }
  .banner h1 { font-size: 38px; }
  .banner-btns { flex-direction: column; }
  .gallery-grid3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-strip { flex-direction: column; align-items: flex-start; }
  .cs-sep { display: none; }
  .form-right { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .slide-content h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { text-align: center; justify-content: center; }
  .why-features { grid-template-columns: 1fr; }
  .why-feature:nth-child(odd) { border-right: none; padding-right: 0; }
  .why-feature:nth-child(even) { padding-left: 0; }
  .why-feature { border-bottom: 1px solid #222 !important; }
  .why-feature:last-child { border-bottom: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .lightbox-nav { display: none; }
  .fab-container { right: 14px; bottom: 24px; gap: 10px; }
  .fab-btn { width: 46px; height: 46px; }
  .fab-btn i { font-size: 17px; }
  .fab-label { font-size: 12px; padding: 5px 11px; }
  .hero-left h1 { font-size: 38px; }
}
