/* ============================================
   US Surplus Recovery Inc - Design System
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 400; line-height: 1.6; color: #09274c; background: #fff; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Inter Tight', sans-serif; font-weight: 700; line-height: 1.2; color: #09274c; }

/* --- CSS Custom Properties --- */
:root {
  --navy: #09274c;
  --navy-dark: #051a53;
  --red: #d82221;
  --white: #ffffff;
  --gray: #6a718a;
  --light-bg: #f5f7fc;
  --black: #000000;
  --container: 1350px;
  --section-pad: 120px;
  --transition: all .3s ease;
}

/* --- FontAwesome --- */
@font-face { font-family: "Fa Solid 900"; src: url('../fonts/fa-solid-900.ttf') format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Fa Brands 400"; src: url('../fonts/fa-brands-400.ttf') format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Fa 400"; src: url('../fonts/fa-regular-400.ttf') format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }

/* --- Layout --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 15px; }
.section { padding: var(--section-pad) 0; max-width: 1920px; margin: 0 auto; }

/* --- Typography --- */
.section-title { font-size: 52px; font-weight: 700; line-height: 62px; margin-bottom: 25px; color: var(--navy); }
.section-title.white { color: var(--white); }
.section-details { color: var(--gray); font-size: 18px; font-weight: 500; line-height: 28px; margin-bottom: 0; }
.section-subtitle-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-subtitle-wrap.center { justify-content: center; }
.section-subtitle { color: var(--red); font-family: 'Inter Tight', sans-serif; font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.section-subtitle-divider { width: 40px; height: 2px; background: var(--red); }

/* --- Utility --- */
.mb-0 { margin-bottom: 0 !important; }
.mb-14 { margin-bottom: 14px !important; }
.mb-21 { margin-bottom: 21px !important; }
.mb-34 { margin-bottom: 34px !important; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* --- Preloader --- */
.preloader-wrapper { position: fixed; inset: 0; z-index: 9999; background: var(--navy); display: flex; justify-content: center; align-items: center; transition: opacity .6s ease; }
.preloader-wrapper.loaded { opacity: 0; pointer-events: none; }
.preloader-content { text-align: center; }
.preloader-lottie { width: 200px; height: 200px; margin: 0 auto 20px; }
.preloader-logo { max-width: 105px; margin: 0 auto; }

/* --- Pages Wrapper (fades in after preloader) --- */
.pages-wrapper { opacity: 0; transition: opacity .5s ease; }
.pages-wrapper.visible { opacity: 1; }

/* --- Top Banner Bar --- */
.banner-top { background: var(--navy); padding: 10px 0; }
.banner-top-content { display: flex; justify-content: space-between; align-items: center; }
.banner-top-social { display: flex; gap: 12px; }
.banner-top-social a { color: var(--white); font-family: "Fa Brands 400", sans-serif; font-size: 14px; opacity: .8; transition: var(--transition); }
.banner-top-social a:hover { opacity: 1; color: var(--red); }
.banner-top-contact { display: flex; gap: 24px; align-items: center; }
.banner-top-info { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 15px; }
.banner-top-info img { width: 16px; height: 16px; }
.banner-top-info a { color: var(--white); }
.banner-top-info a:hover { color: var(--red); }

/* --- Navbar --- */
.navbar { position: sticky; top: 0; z-index: 200; background: var(--white); border-bottom: 1px solid rgba(221, 222, 227, .01); padding: 20px 0; transition: box-shadow .3s, background .3s; }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.navbar-wrapper { display: flex; justify-content: space-between; align-items: center; }
.navbar-logo { max-width: 75px; transition: transform .5s; }
.navbar-logo:hover { transform: scale(.98); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link { color: var(--navy); font-size: 16px; font-weight: 500; padding: 0; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--red); }
.navbar-right { display: flex; align-items: center; gap: 20px; }

/* --- Buttons --- */
.btn-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--red); color: var(--white); padding: 15px 35px; font-size: 18px; font-weight: 700; line-height: 28px; border: none; cursor: pointer; position: relative; z-index: 1; transition: var(--transition); }
.btn-primary:hover { background: #b91c1c; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(216, 34, 33, .3); }
.btn-primary .icon { font-family: "Fa Solid 900", sans-serif; font-size: 14px; }
.btn-secondary { display: inline-flex; align-items: center; gap: 12px; border: 1px solid var(--navy); color: var(--navy); background: transparent; padding: 15px 35px; font-size: 18px; font-weight: 700; line-height: 28px; cursor: pointer; position: relative; z-index: 1; transition: var(--transition); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-secondary .icon { font-family: "Fa Solid 900", sans-serif; font-size: 14px; }

/* --- Hamburger Menu --- */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 10px; z-index: 300; }
.hamburger .bar { width: 28px; height: 2px; background: var(--navy); transition: var(--transition); }
.hamburger.open .bar:first-child { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open .bar:last-child { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Mobile Menu (hidden on desktop) --- */
.mobile-menu { display: none; }
.mobile-overlay { display: none; }

/* --- Hero Banner --- */
.hero-banner { background-image: url('../images/home-v2-banner-section-bg.png'); background-position: center; background-repeat: no-repeat; background-size: cover; padding: 148px 0 270px; position: relative; overflow: hidden; }
.hero-content { max-width: 700px; position: relative; z-index: 2; }
.hero-title { font-size: 52px; font-weight: 700; line-height: 62px; color: var(--white); margin-bottom: 20px; }
.hero-details { font-size: 20px; font-weight: 400; line-height: 30px; color: rgba(255,255,255,.85); font-style: italic; margin-bottom: 30px; }
.hero-img-1 { position: absolute; right: 0; bottom: 0; max-width: 621px; z-index: 1; }
.hero-img-2 { position: absolute; right: 200px; bottom: 80px; z-index: 0; }

/* --- Partner / Features Section --- */
.partner-section { z-index: 3; margin-top: -129px; padding: 0; position: relative; }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.partner-left-card { background: var(--white); border-radius: 12px; padding: 50px 40px; box-shadow: 0 4px 20px rgba(0,0,0,.08); position: relative; overflow: hidden; }
.partner-info { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.partner-info-icon { width: 50px; height: 50px; background: var(--light-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.partner-info-icon img { width: 24px; }
.partner-info h2, .partner-info h3, .partner-info h4 { font-size: 20px; font-weight: 500; line-height: 28px; margin: 0; }
.partner-right-card { background: var(--red); border-radius: 12px; padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; }
.partner-right-card h2 { color: var(--white); font-size: 36px; line-height: 46px; margin-bottom: 24px; }
.partner-right-card .title-highlight { color: #ffd700; }

/* --- About Us Section --- */
.about-section { background: var(--navy); position: relative; overflow: hidden; padding: 150px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-image-card { position: relative; }
.about-image-card img { border-radius: 12px; width: 100%; }
.about-right { background: rgba(9, 39, 76, .6); border-radius: 12px; padding: 50px 40px; }
.about-subtitle { color: var(--red); font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.about-subtitle::after { content: ''; width: 40px; height: 2px; background: var(--red); }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; color: var(--white); font-size: 16px; line-height: 26px; }
.about-feature img { width: 20px; margin-top: 3px; flex-shrink: 0; }
.about-divider { width: 100%; height: 1px; background: var(--red); margin: 30px 0; transform-origin: center; }
.about-contact { text-align: center; padding: 20px 0; }
.about-contact h3 { color: var(--white); font-size: 20px; margin-bottom: 8px; }
.about-contact a { color: var(--red); font-size: 28px; font-weight: 700; }
.about-contact a:hover { color: #ff4444; }
.about-absolute-img { position: absolute; left: 0; bottom: 0; max-width: 1203px; z-index: -1; opacity: .3; }

/* --- Counter Section --- */
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.counter-item { display: flex; align-items: flex-start; gap: 16px; }
.counter-icon { width: 50px; height: 50px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.counter-icon img { width: 24px; }
.counter-number { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.counter-number h2 { color: var(--white); font-size: 42px; font-weight: 700; margin: 0; }
.counter-number .suffix { color: var(--white); font-size: 24px; font-weight: 700; }
.counter-label { color: rgba(255,255,255,.8); font-size: 14px; line-height: 20px; }

/* --- Service Cards Section --- */
.service-section { background: var(--light-bg); background-image: url('../images/home-v2-service-bg.png'); background-position: center; background-repeat: no-repeat; background-size: cover; padding: 0; position: relative; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 100px 0; }
.service-cards-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card { background: var(--white); border: 1px solid rgba(0,0,0,.08); border-radius: 12px; padding: 30px; box-shadow: 0 4px 12px rgba(0,0,0,.08); transition: var(--transition); }
.service-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.12); transform: translateY(-4px); }
.service-card-icon { width: 50px; height: 50px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.service-card h3 a { color: var(--navy); }
.service-card h3 a:hover { color: var(--red); }
.service-card p { color: var(--gray); font-size: 16px; line-height: 24px; margin: 0; }
.service-img { position: absolute; right: 0; bottom: 0; max-width: 400px; z-index: -1; }

/* --- Process / Departments Section --- */
.departments-section { background: var(--navy); position: relative; overflow: hidden; }
.departments-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 60px; }
.departments-top .section-title { margin-bottom: 0; }
.departments-details { color: rgba(255,255,255,.8); font-size: 18px; line-height: 28px; max-width: 500px; }
.process-line { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; position: relative; }
.process-line::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.2); }
.process-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--red); position: relative; z-index: 1; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { background: rgba(255,255,255,.05); border-radius: 12px; padding: 30px; transition: var(--transition); }
.process-step:hover { background: rgba(255,255,255,.1); }
.process-step-number { color: var(--red); font-size: 36px; font-weight: 700; font-family: 'Inter Tight', sans-serif; margin-bottom: 16px; }
.process-step h3 { color: var(--white); font-size: 22px; margin-bottom: 12px; }
.process-step h3 a { color: var(--white); }
.process-step h3 a:hover { color: var(--red); }
.process-step p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 24px; }
.process-step .read-more { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-weight: 600; margin-top: 16px; transition: var(--transition); }
.process-step .read-more:hover { color: var(--red); }
.process-step .read-more .icon { font-family: "Fa Solid 900", sans-serif; font-size: 12px; }

/* --- Testimonials Section --- */
.testimonials-section { background-image: url('../images/testimonials-section-bg.png'); background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.testimonials-left { display: flex; flex-direction: column; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-slide { display: none; padding: 20px 0; }
.testimonial-slide.active { display: block; }
.testimonial-avatars { display: flex; gap: 12px; margin-bottom: 24px; }
.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 3px solid transparent; transition: var(--transition); opacity: .5; }
.testimonial-avatar.active { border-color: var(--red); opacity: 1; }
.testimonial-text { color: var(--white); font-size: 18px; line-height: 30px; font-style: italic; }
.testimonial-dots { display: flex; gap: 8px; margin-top: 24px; }
.testimonial-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: var(--transition); }
.testimonial-dot.active { background: var(--red); }
.testimonials-card { background: var(--white); border-radius: 12px; padding: 40px; }
.testimonials-card h3 { font-size: 24px; margin-bottom: 24px; display: flex; justify-content: space-between; align-items: center; }
.testimonials-feature { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.testimonials-feature:last-child { border-bottom: none; }
.testimonials-feature-date { color: var(--gray); font-size: 14px; margin-bottom: 4px; }
.testimonials-feature-title { font-size: 16px; font-weight: 600; color: var(--navy); }
.testimonials-img { position: absolute; left: 0; bottom: 0; max-width: 600px; z-index: -1; }

/* --- FAQ Section --- */
.faq-section { padding: var(--section-pad) 0; background: var(--white); }
.faq-top { text-align: center; margin-bottom: 60px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; transition: var(--transition); }
.faq-header:hover { color: var(--red); }
.faq-question { font-size: 18px; font-weight: 700; line-height: 28px; margin: 0; padding-right: 20px; }
.faq-toggle { width: 30px; height: 30px; position: relative; flex-shrink: 0; }
.faq-toggle .minus, .faq-toggle .plus { position: absolute; background: var(--navy); transition: var(--transition); }
.faq-toggle .minus { width: 16px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-toggle .plus { width: 2px; height: 16px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-toggle .plus { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer p { color: var(--gray); font-size: 16px; line-height: 26px; padding-bottom: 20px; }

/* --- CTA / Newsletter Section --- */
.cta-section { background: var(--white); margin-bottom: -111px; padding: 0; position: relative; z-index: 2; }
.cta-card { background: var(--navy); border-radius: 12px; padding: 50px 60px; }
.cta-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.cta-card h3 { color: var(--white); font-size: 32px; margin-bottom: 12px; }
.cta-card p { color: rgba(255,255,255,.8); font-size: 16px; line-height: 26px; }
.cta-form { display: flex; gap: 0; }
.cta-form input[type="email"] { flex: 1; padding: 15px 20px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: var(--white); font-size: 16px; border-radius: 0; outline: none; }
.cta-form input[type="email"]::placeholder { color: rgba(255,255,255,.5); }
.cta-form button { background: var(--red); color: var(--white); border: none; padding: 15px 30px; font-size: 16px; font-weight: 700; cursor: pointer; white-space: nowrap; transition: var(--transition); }
.cta-form button:hover { background: #b91c1c; }

/* --- Footer --- */
.footer { background-image: url('../images/footer-section-bg.png'); background-position: center top; background-repeat: no-repeat; background-size: cover; position: relative; z-index: 2; }
.footer-content { padding: 190px 0 120px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 42px; margin-bottom: 74px; position: relative; }
.footer-top::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.2); }
.footer-logo { max-width: 75px; transition: transform .5s; }
.footer-logo:hover { transform: scale(.96); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 55px; height: 55px; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-family: "Fa Brands 400", sans-serif; font-size: 18px; transition: var(--transition); }
.footer-social a:hover { border-color: var(--red); background: var(--red); }
.footer-tagline { max-width: 349px; color: var(--white); font-size: 18px; line-height: 28px; }
.footer-middle { display: grid; grid-template-columns: 3.1fr 1fr; gap: 100px; }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 100px; }
.footer-col-title { color: var(--white); font-size: 32px; font-weight: 500; line-height: 42px; margin-bottom: 43px; }
.footer-links { display: flex; flex-direction: column; gap: 23px; }
.footer-link { color: rgba(255,255,255,.8); font-size: 18px; line-height: 30px; transition: var(--transition); }
.footer-link:hover { color: var(--red); transform: translateX(6px); }
.footer-info { display: flex; flex-direction: column; gap: 21px; }
.footer-info-item { display: flex; align-items: center; gap: 14px; }
.footer-info-item img { width: 25px; }
.footer-info-item a, .footer-info-item span { color: rgba(255,255,255,.8); font-size: 18px; line-height: 28px; }
.footer-info-item a:hover { color: var(--red); }
.footer-bottom { text-align: center; padding: 17px 0; position: relative; }
.footer-bottom::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.2); }
.footer-copyright { color: var(--white); font-size: 18px; font-weight: 700; }
.footer-credit { color: var(--red); font-weight: 500; }
.footer-credit a { color: var(--red); }
.footer-credit a:hover { text-decoration: underline; }

/* --- Scroll to Top --- */
.scroll-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--red); color: var(--white); border: none; border-radius: 50%; font-family: "Fa Solid 900", sans-serif; font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 100; box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: #b91c1c; transform: translateY(-3px); }

/* --- Inner Page Banner --- */
.inner-banner { background: var(--navy); padding: 120px 0 80px; text-align: center; position: relative; overflow: hidden; }
.inner-banner h1 { color: var(--white); font-size: 48px; margin-bottom: 16px; }
.inner-banner .breadcrumb { color: rgba(255,255,255,.7); font-size: 16px; }
.inner-banner .breadcrumb a { color: rgba(255,255,255,.9); }
.inner-banner .breadcrumb a:hover { color: var(--red); }

/* --- Legal Page --- */
.legal-page { padding: 80px 0; }
.legal-page h2 { font-size: 28px; margin-bottom: 16px; margin-top: 40px; }
.legal-page h3 { font-size: 22px; margin-bottom: 12px; margin-top: 30px; }
.legal-page p { color: var(--gray); font-size: 16px; line-height: 28px; margin-bottom: 16px; }
.legal-page ul { margin-bottom: 16px; padding-left: 20px; }
.legal-page li { color: var(--gray); font-size: 16px; line-height: 28px; margin-bottom: 8px; list-style: disc; }
.legal-page a { color: var(--red); }
.legal-page a:hover { text-decoration: underline; }

/* --- Form Styles --- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 1px solid #ddd; border-radius: 8px; font-size: 16px; color: var(--navy); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(216,34,33,.1); }
.form-steps { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
.form-step-indicator { display: flex; align-items: center; gap: 8px; color: var(--gray); font-weight: 600; }
.form-step-indicator.active { color: var(--red); }
.form-step-indicator .step-number { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--gray); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.form-step-indicator.active .step-number { border-color: var(--red); background: var(--red); color: var(--white); }
.form-step-indicator.completed .step-number { border-color: #10b981; background: #10b981; color: var(--white); }
.form-panel { display: none; }
.form-panel.active { display: block; }

/* ============================================
   Responsive Breakpoints
   ============================================ */

@media (max-width: 1200px) {
  .section-title { font-size: 42px; line-height: 52px; }
  .hero-title { font-size: 42px; line-height: 52px; }
  .footer-middle { gap: 60px; }
  .footer-links-grid { gap: 60px; }
  .departments-top { flex-direction: column; }
}

@media (max-width: 992px) {
  :root { --section-pad: 80px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--white); z-index: 250; padding: 80px 30px 30px; transition: right .3s ease; box-shadow: -4px 0 20px rgba(0,0,0,.1); overflow-y: auto; }
  .mobile-menu.open { right: 0; }
  .mobile-menu a { display: block; padding: 14px 0; font-size: 18px; font-weight: 600; color: var(--navy); border-bottom: 1px solid rgba(0,0,0,.06); }
  .mobile-menu a:hover { color: var(--red); }
  .mobile-overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 240; opacity: 0; visibility: hidden; transition: var(--transition); }
  .mobile-overlay.open { opacity: 1; visibility: visible; }
  .partner-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-card-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .footer-middle { grid-template-columns: 1fr; gap: 60px; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-top { flex-direction: column; gap: 20px; text-align: center; }
  .footer-tagline { margin: 0 auto; }
  .hero-banner { padding: 100px 0 200px; }
  .hero-img-1 { max-width: 400px; }
  .section-title { font-size: 36px; line-height: 46px; }
  .hero-title { font-size: 36px; line-height: 46px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .banner-top-content { flex-direction: column; gap: 8px; }
  .banner-top-social { display: none; }
  .partner-section { margin-top: -80px; }
  .partner-right-card h2 { font-size: 28px; line-height: 36px; }
  .cta-card { padding: 30px 20px; }
  .cta-form { flex-direction: column; }
  .cta-form button { width: 100%; }
  .footer-content { padding: 120px 0 80px; }
  .footer-links-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-col-title { font-size: 24px; margin-bottom: 20px; }
  .counter-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .departments-top { margin-bottom: 40px; }
  .section-title { font-size: 30px; line-height: 40px; }
  .hero-title { font-size: 30px; line-height: 40px; }
  .hero-banner { padding: 80px 0 160px; }
  .hero-img-1 { max-width: 300px; }
  .inner-banner h1 { font-size: 32px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 40px; }
  .container { padding: 0 12px; }
  .section-title { font-size: 26px; line-height: 34px; }
  .hero-title { font-size: 26px; line-height: 34px; }
  .hero-details { font-size: 16px; }
  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 16px; }
  .partner-left-card { padding: 30px 20px; }
  .partner-right-card { padding: 30px 20px; }
  .about-right { padding: 30px 20px; }
  .navbar-logo { max-width: 56px; }
  .hero-img-1 { max-width: 200px; }
  .hero-img-2 { display: none; }
  .inner-banner { padding: 80px 0 60px; }
  .inner-banner h1 { font-size: 26px; }
}
