/* ============================================
   AUTOPLUS WA - Modern Redesign
   Brand: #00ABED (sky blue), #1a1a1b (dark), white
   ============================================ */

:root {
  --blue: #00abed;
  --blue-dark: #0090cc;
  --blue-light: #e8f7fd;
  --dark: #1a1a1b;
  --dark-2: #2c2c2e;
  --mid: #555;
  --light: #f5f7fa;
  --white: #fff;
  --border: #e2e8f0;
  --font-head: 'Barlow', 'Arial', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
  --trans: all .25s ease;
  --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-body); color: var(--dark); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }

/* UTILITIES */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: .95rem; letter-spacing: .3px; transition: var(--trans); cursor: pointer; border: none; text-align: center; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,171,237,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-outline-blue { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-light { background: var(--light); }
.section-blue { background: var(--blue); color: var(--white); }
.text-center { text-align: center; }
.section-label { text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; font-weight: 700; color: var(--blue); display: block; margin-bottom: 10px; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 20px; }
.section-title.white { color: var(--white); }
.section-subtitle { font-size: 1.1rem; color: var(--mid); max-width: 640px; margin: 0 auto 48px; }
.section-subtitle.white { color: rgba(255,255,255,.8); }
.divider { width: 60px; height: 4px; background: var(--blue); border-radius: 2px; margin: 16px auto 32px; }
.divider.left { margin-left: 0; }

/* GRID */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

/* CARD */
.card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--trans); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 28px; }
.card-title { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); }
.card-text { color: var(--mid); font-size: .95rem; line-height: 1.7; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.header-top { background: var(--dark); padding: 8px 0; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top-left { display: flex; gap: 24px; align-items: center; }
.header-top a { color: rgba(255,255,255,.85); font-size: .85rem; display: flex; align-items: center; gap: 6px; }
.header-top a:hover { color: var(--blue); }
.header-top-right { display: flex; align-items: center; gap: 16px; }
.social-links { display: flex; gap: 8px; }
.social-links a { color: rgba(255,255,255,.7); font-size: 1rem; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1); transition: var(--trans); }
.social-links a:hover { background: var(--blue); color: var(--white); }
.header-review-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: .8rem; }
.stars-display { color: #f5a623; font-size: 1rem; letter-spacing: 1px; }

.header-main { padding: 10px 0; }
.header-main .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: auto; width: 220px; max-width: 220px; display: block; }

/* NAV */
.main-nav { flex-shrink: 0; }
.main-nav > ul { display: flex; gap: 2px; align-items: center; list-style: none; padding: 0; margin: 0; flex-wrap: nowrap; }
.main-nav > ul > li { position: relative; list-style: none; }
.main-nav > ul > li > a { display: block; padding: 9px 12px; font-size: .85rem; font-weight: 600; color: var(--dark-2); border-radius: var(--radius); transition: var(--trans); text-transform: uppercase; letter-spacing: .3px; white-space: nowrap; }
.main-nav > ul > li > a:hover, .main-nav > ul > li.active > a { color: var(--blue); background: var(--blue-light); }
.main-nav > ul > li > a.btn-primary { color: var(--white) !important; background: var(--blue); padding: 9px 16px; border-radius: 50px; }
.main-nav > ul > li > a.btn-primary:hover { background: var(--blue-dark); color: var(--white) !important; }

/* DROPDOWN */
.dropdown { display: none; position: absolute; top: 100%; left: 0; min-width: 210px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border); z-index: 500; padding: 10px 0 6px; list-style: none; }
.dropdown li { list-style: none; }
.dropdown li a { display: block; padding: 10px 18px; color: var(--dark); font-size: .88rem; font-weight: 500; transition: var(--trans); white-space: nowrap; text-transform: none; letter-spacing: 0; }
.dropdown li a:hover { background: var(--blue-light); color: var(--blue); padding-left: 24px; }
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown > a::after { content: ' ▾'; font-size: .7rem; opacity: .6; }

/* MOBILE NAV */
.mobile-nav-toggle { display: none; background: none; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; padding: 8px 10px; margin-left: auto; }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--trans); }

.mobile-nav { display: none; background: var(--white); border-top: 2px solid var(--border); padding: 8px 0 16px; }
.mobile-nav.open { display: block; }
.mobile-nav ul { padding: 0 24px; list-style: none; margin: 0; }
.mobile-nav ul li { border-bottom: 1px solid var(--border); }
.mobile-nav ul li a { display: block; padding: 13px 0; color: var(--dark); font-weight: 600; font-size: .95rem; }
.mobile-nav ul li a:hover { color: var(--blue); }
.mobile-nav .sub-links { padding-left: 16px; }
.mobile-nav .sub-links li { border-bottom: none; }
.mobile-nav .sub-links li a { padding: 9px 0; font-weight: 400; font-size: .88rem; color: var(--mid); }

/* ============================================
   HERO
   ============================================ */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; background: var(--dark); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,171,237,.2) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-label { display: inline-block; background: var(--blue); color: var(--white); padding: 6px 18px; border-radius: 50px; font-size: .82rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--white); margin-bottom: 24px; line-height: 1.1; }
.hero h1 span { color: var(--blue); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.85); margin-bottom: 40px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { position: relative; z-index: 2; margin-top: 80px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2.5rem; font-weight: 800; color: var(--blue); display: block; }
.hero-stat .lbl { font-size: .85rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 1px; }
.hero-badge-row { position: relative; z-index: 2; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,.15); padding: 20px 0; margin-top: 0; }
.hero-badge-row .container { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; justify-content: center; }
.badge-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 600; }
.badge-item svg { flex-shrink: 0; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero { background: linear-gradient(135deg, var(--dark) 60%, var(--dark-2) 100%); padding: 70px 0 56px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('/images/2025-12-APWA_Shoot_250826_HiRes_001-1-min.jpg') center/cover; opacity: .12; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 600px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; }
.breadcrumb a { color: var(--blue); font-size: .85rem; }
.breadcrumb span { color: rgba(255,255,255,.5); font-size: .85rem; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--blue); padding: 20px 0; }
.trust-bar .container { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: .92rem; font-weight: 600; }
.trust-icon { width: 40px; height: 40px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ============================================
   SERVICES GRID
   ============================================ */
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--trans); display: flex; flex-direction: column; border: 2px solid transparent; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--dark); }
.service-card p { color: var(--mid); font-size: .9rem; flex: 1; margin-bottom: 20px; }
.service-card a { color: var(--blue); font-weight: 700; font-size: .9rem; display: flex; align-items: center; gap: 6px; margin-top: auto; }
.service-card a::after { content: '→'; transition: var(--trans); }
.service-card:hover a::after { transform: translateX(4px); }

/* ============================================
   WHY US / FEATURES
   ============================================ */
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon { width: 56px; height: 56px; background: var(--blue-light); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); font-size: 1.5rem; }
.feature-text h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--dark); }
.feature-text p { font-size: .9rem; color: var(--mid); }

/* ============================================
   REVIEWS
   ============================================ */
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.review-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-size: .95rem; color: var(--mid); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: .95rem; }
.review-platform { font-size: .8rem; color: var(--mid); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: var(--blue); border-radius: 50%; opacity: .07; }
.cta-section .container { position: relative; z-index: 1; text-align: center; }
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; gap: 12px; color: var(--white); font-size: 1.5rem; font-weight: 800; }
.cta-phone span { font-size: .85rem; font-weight: 400; color: rgba(255,255,255,.6); display: block; }

/* ============================================
   PARALLAX / TEAM SECTION
   ============================================ */
.parallax-section { background-image: url('/images/2025-12-autoplus-wa-team-2-min.jpg'); background-attachment: fixed; background-position: center; background-size: cover; background-repeat: no-repeat; min-height: 400px; position: relative; display: flex; align-items: center; }
.parallax-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(0,171,237,.3) 100%); }
.parallax-content { position: relative; z-index: 1; text-align: center; width: 100%; padding: 80px 24px; }
.parallax-content h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.parallax-content p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; background: var(--white); border: none; padding: 20px 24px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; font-weight: 600; color: var(--dark); transition: var(--trans); }
.faq-question:hover { background: var(--blue-light); color: var(--blue); }
.faq-question.open { background: var(--blue); color: var(--white); }
.faq-question .icon { width: 24px; height: 24px; background: rgba(0,0,0,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .75rem; transition: var(--trans); }
.faq-question.open .icon { transform: rotate(45deg); background: rgba(255,255,255,.2); }
.faq-answer { display: none; padding: 20px 24px; background: var(--light); color: var(--mid); line-height: 1.8; font-size: .95rem; }
.faq-answer.open { display: block; }

/* ============================================
   CONTENT PAGE LAYOUTS
   ============================================ */
.page-content { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.content-main h2 { font-size: 1.7rem; margin: 36px 0 16px; color: var(--dark); }
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--mid); margin-bottom: 20px; line-height: 1.8; }
.content-main ul { margin: 0 0 20px 0; }
.content-main ul li { position: relative; padding-left: 22px; color: var(--mid); margin-bottom: 10px; }
.content-main ul li::before { content: ''; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; position: absolute; left: 0; top: 8px; }
.content-main h3 { font-size: 1.2rem; margin: 28px 0 12px; color: var(--dark); }
.content-sidebar { position: sticky; top: 100px; }

/* SIDEBAR WIDGETS */
.sidebar-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); margin-bottom: 24px; border-top: 4px solid var(--blue); }
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--dark); }
.sidebar-card .big-phone { font-size: 1.6rem; font-weight: 800; color: var(--dark); display: block; margin-bottom: 8px; }
.sidebar-card p { color: var(--mid); font-size: .9rem; margin-bottom: 16px; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links li a { display: flex; align-items: center; gap: 8px; padding: 12px 0; color: var(--dark); font-size: .9rem; font-weight: 500; }
.sidebar-links li a::before { content: '→'; color: var(--blue); font-size: .85rem; transition: var(--trans); }
.sidebar-links li a:hover { color: var(--blue); }
.sidebar-links li a:hover::before { transform: translateX(4px); }

/* ============================================
   HOURS TABLE
   ============================================ */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 16px; border-bottom: 1px solid var(--border); font-size: .92rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--blue); }
.hours-table tr.closed td { color: var(--mid); }
.hours-table tr.closed td:last-child { color: #e53e3e; font-weight: 400; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,171,237,.0); transition: var(--trans); display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { background: rgba(0,171,237,.35); }
.gallery-overlay-icon { color: var(--white); font-size: 2rem; opacity: 0; transition: var(--trans); }
.gallery-item:hover .gallery-overlay-icon { opacity: 1; }

/* ============================================
   CONTACT
   ============================================ */
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 1rem; font-family: var(--font-body); color: var(--dark); background: var(--white); transition: var(--trans);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,171,237,.1); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: .9rem; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

/* ============================================
   PARTNER LOGOS
   ============================================ */
.logos-row { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center; }
.logos-row img { height: 56px; width: auto; object-fit: contain; filter: grayscale(100%) opacity(0.6); transition: var(--trans); }
.logos-row img:hover { filter: none; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 1rem; transition: var(--trans); }
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; letter-spacing: .5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .9rem; transition: var(--trans); }
.footer-links a:hover { color: var(--blue); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.5); font-size: .85rem; }
.footer-bottom a:hover { color: var(--blue); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-bar { background: var(--light); padding: 12px 0; border-bottom: 1px solid var(--border); }
.breadcrumb-bar nav { display: flex; gap: 8px; align-items: center; font-size: .85rem; }
.breadcrumb-bar a { color: var(--blue); }
.breadcrumb-bar span.sep { color: var(--mid); }
.breadcrumb-bar span.current { color: var(--mid); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.93); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 20px 80px rgba(0,0,0,.5); }
.lightbox-close { position: fixed; top: 20px; right: 24px; background: rgba(255,255,255,.15); border: none; color: var(--white); font-size: 1.8rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.lightbox-close:hover { background: var(--blue); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: var(--white); font-size: 1.5rem; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--trans); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--blue); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .mobile-nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { min-height: 75vh; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar .container { justify-content: flex-start; gap: 16px; }
  .hero-stats { gap: 24px; }
  .header-top-left { gap: 12px; }
  .header-top-right .social-links, .header-top-right .header-review-badge { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .logos-row img { height: 40px; }
}

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp .6s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
