/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0d1b2e;
  --navy-light:#162a4a;
  --orange:#f07020;
  --orange-dark:#d4601a;
  --white:#fff;
  --gray-50:#f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#e2e8f0;
  --gray-300:#cbd5e1;
  --gray-400:#8a96a8;
  --gray-600:#565a7c;
  --gray-700:#334155;
  --gray-800:#1e293b;
  --text-light:#8a96a8;
  --shadow:0 1px 3px rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.06);
  --shadow-md:0 4px 6px rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:0 10px 15px rgba(0,0,0,.1),0 4px 6px rgba(0,0,0,.05);
  --radius:8px;
  --radius-lg:12px;
  --transition:0.25s ease;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Source Sans 3','Inter',system-ui,sans-serif;color:var(--gray-800);line-height:1.6;overflow-x:hidden;background:var(--navy)}
img{max-width:100%;height:auto;display:block}
a{color:var(--orange);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--orange-dark)}
ul{list-style:none}
h1,h2,h3,h4,h5,h6{line-height:1.2;font-weight:700;font-family:'Oswald','Inter',sans-serif;text-transform:uppercase;letter-spacing:.02em}
h1{font-size:clamp(2rem,5vw,3.25rem)}
h2{font-size:clamp(1.6rem,4vw,2.5rem)}
h3{font-size:clamp(1.2rem,3vw,1.5rem)}
p{color:var(--text-light)}

/* ===== UTILITIES ===== */
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.25rem}
.section{padding:5rem 0}
.section--navy{background:var(--navy)}
.section--navy-light{background:var(--navy-light)}
.section--dark{background:#07142d}
.text-center{text-align:center}
.section-label{display:inline-block;font-size:.875rem;font-weight:600;color:var(--orange);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.5rem;font-family:'Source Sans 3',sans-serif}
.section-title{margin-bottom:1rem;color:var(--white)}
.section-subtitle{font-size:1.125rem;color:var(--text-light);max-width:640px;margin:0 auto 2.5rem}
.grid{display:grid;gap:2rem}
.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-6{grid-template-columns:repeat(6,1fr)}
@media(max-width:1024px){.grid-4,.grid-6{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){
  .grid-2,.grid-3,.grid-4,.grid-6{grid-template-columns:1fr}
  .section{padding:3.5rem 0}
}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.875rem 2rem;border-radius:var(--radius);font-weight:600;font-size:1rem;border:2px solid transparent;cursor:pointer;transition:all var(--transition);text-align:center;justify-content:center;line-height:1.2;font-family:'Source Sans 3',sans-serif}
.btn--primary{background:var(--orange);color:var(--white);border-color:var(--orange)}
.btn--primary:hover{background:var(--orange-dark);border-color:var(--orange-dark);color:var(--white);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn--secondary{background:transparent;color:var(--orange);border-color:var(--orange)}
.btn--secondary:hover{background:var(--orange);color:var(--white);transform:translateY(-1px)}
.btn--white{background:var(--white);color:var(--navy);border-color:var(--white)}
.btn--white:hover{background:transparent;color:var(--white);transform:translateY(-1px)}
.btn--outline-white{background:transparent;color:var(--white);border-color:var(--white)}
.btn--outline-white:hover{background:var(--white);color:var(--navy);transform:translateY(-1px)}
.btn--sm{padding:.625rem 1.25rem;font-size:.875rem}
.btn--lg{padding:1rem 2.5rem;font-size:1.125rem}
.btn--block{width:100%}
.btn-group{display:flex;flex-wrap:wrap;gap:1rem}
@media(max-width:480px){.btn-group{flex-direction:column}.btn-group .btn{width:100%}}

/* ===== HEADER / NAV ===== */
.header{position:fixed;top:0;left:0;right:0;z-index:1000;background:var(--navy);box-shadow:0 2px 10px rgba(0,0,0,.3);transition:box-shadow var(--transition)}
.header__inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.header__logo{flex-shrink:0}
.header__logo img{height:48px;width:auto;max-width:200px}
@media(max-width:480px){.header__logo img{height:36px;max-width:150px}}
.nav{display:flex;align-items:center;gap:2rem}
.nav__link{font-size:.9375rem;font-weight:500;color:var(--gray-300);position:relative;padding:.25rem 0;font-family:'Source Sans 3',sans-serif}
.nav__link:hover,.nav__link--active{color:var(--orange)}
.nav__link::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--orange);transition:width var(--transition)}
.nav__link:hover::after,.nav__link--active::after{width:100%}
.nav__cta{margin-left:.5rem}
.nav__dropdown{position:relative}
.nav__dropdown-toggle{cursor:pointer;display:flex;align-items:center;gap:.25rem}
.nav__dropdown-toggle::after{content:'';border:solid var(--gray-300);border-width:0 2px 2px 0;display:inline-block;padding:2.5px;transform:rotate(45deg);transition:transform var(--transition)}
.nav__dropdown:hover .nav__dropdown-toggle::after{transform:rotate(-135deg)}
.nav__dropdown-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%);min-width:260px;background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:.5rem 0;opacity:0;visibility:hidden;transition:all var(--transition);margin-top:.75rem;border:1px solid var(--gray-200)}
.nav__dropdown:hover .nav__dropdown-menu{opacity:1;visibility:visible;margin-top:.5rem}
.nav__dropdown-menu a{display:block;padding:.625rem 1.25rem;font-size:.9rem;color:var(--gray-700);font-weight:500;white-space:nowrap}
.nav__dropdown-menu a:hover{background:var(--gray-50);color:var(--orange)}
.nav__toggle{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:.5rem;background:none;border:none}
.nav__toggle span{width:24px;height:2px;background:var(--white);transition:all var(--transition)}
@media(max-width:900px){
  .nav__toggle{display:flex}
  .nav{position:fixed;top:72px;left:0;right:0;bottom:0;flex-direction:column;background:var(--navy);padding:2rem;gap:0;transform:translateX(100%);transition:transform var(--transition);overflow-y:auto;align-items:stretch}
  .nav.is-open{transform:translateX(0)}
  .nav__link,.nav__dropdown-toggle{padding:.875rem 0;font-size:1.0625rem}
  .nav__cta{margin-left:0;margin-top:1rem}
  .nav__dropdown-menu{position:static;transform:none;box-shadow:none;opacity:1;visibility:visible;margin:0;padding-left:1rem;display:none;border:none}
  .nav__dropdown.is-open .nav__dropdown-menu{display:block}
  .nav__toggle.is-active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
  .nav__toggle.is-active span:nth-child(2){opacity:0}
  .nav__toggle.is-active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
}

/* ===== HERO ===== */
.hero{padding:8rem 0 5rem;background:var(--navy);color:var(--white);position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:url('../images/hero-bg.jpg') center/cover no-repeat;opacity:.2}
.hero::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(13,27,46,.9) 0%,rgba(22,42,74,.8) 100%)}
.hero__inner{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;position:relative;z-index:1}
.hero__badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(240,112,32,.15);border:1px solid rgba(240,112,32,.3);padding:.5rem 1rem;border-radius:2rem;font-size:.875rem;font-weight:600;margin-bottom:1.5rem;color:var(--orange);font-family:'Source Sans 3',sans-serif}
.hero h1{color:var(--white);margin-bottom:1rem}
.hero h1 span{color:var(--orange)}
.hero__subtitle{font-size:1.2rem;opacity:.9;margin-bottom:2rem;line-height:1.7;color:rgba(255,255,255,.8)}
.hero__features{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:2rem}
.hero__feature{display:inline-flex;align-items:center;gap:.5rem;font-size:.9375rem;font-weight:500;color:var(--white)}
.hero__feature svg{width:20px;height:20px;fill:var(--orange);flex-shrink:0}
.hero__phone{display:flex;align-items:center;gap:.75rem;margin-top:2rem;font-size:1.125rem;font-weight:600}
.hero__phone svg{width:24px;height:24px;flex-shrink:0}
.hero__phone a{color:var(--white)}
.hero__visual{display:flex;justify-content:center;align-items:center}
.hero__card{background:rgba(255,255,255,.05);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-lg);padding:2.5rem;text-align:center}
.hero__card-icon{width:80px;height:80px;background:rgba(240,112,32,.15);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}
.hero__card-icon svg{width:40px;height:40px;fill:var(--orange)}
.hero__card h3{color:var(--white);margin-bottom:.5rem;font-size:1.25rem}
.hero__card p{color:rgba(255,255,255,.7);font-size:.9375rem}
.hero__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.5rem}
.hero__stat{text-align:center;padding:1rem;background:rgba(240,112,32,.08);border-radius:var(--radius);border:1px solid rgba(240,112,32,.15)}
.hero__stat-number{font-size:1.75rem;font-weight:800;color:var(--orange);font-family:'Oswald',sans-serif}
.hero__stat-label{font-size:.75rem;color:var(--text-light);text-transform:uppercase;letter-spacing:.05em}
@media(max-width:768px){
  .hero{padding:6.5rem 0 3.5rem}
  .hero__inner{grid-template-columns:1fr;text-align:center}
  .hero__features{justify-content:center}
  .hero__phone{justify-content:center}
  .hero__visual{margin-top:1rem}
  .btn-group{justify-content:center}
  .hero__card{padding:1.5rem}
  .hero__stat-number{font-size:1.35rem}
}
@media(max-width:480px){
  .hero__features{flex-direction:column;align-items:center}
  .hero__stat{padding:.5rem}
  .hero__stat-number{font-size:1.15rem}
  .hero__stat-label{font-size:.65rem}
  .container{padding:0 1rem}
}

/* ===== TRUST BAR ===== */
.trust-bar{background:var(--navy-light);border-bottom:1px solid rgba(255,255,255,.05);padding:1.25rem 0}
.trust-bar__inner{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:2rem}
.trust-bar__item{display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:600;color:var(--gray-300)}
.trust-bar__item svg{width:20px;height:20px;fill:var(--orange)}
@media(max-width:600px){.trust-bar__inner{gap:1rem}.trust-bar__item{font-size:.8rem}}

/* ===== SERVICE CARDS ===== */
.service-card{background:var(--navy-light);border-radius:var(--radius-lg);padding:2rem;box-shadow:var(--shadow);border:1px solid rgba(255,255,255,.05);transition:all var(--transition);text-align:center}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--orange)}
.service-card__icon{width:64px;height:64px;background:rgba(240,112,32,.1);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;margin:0 auto 1.25rem}
.service-card__icon svg{width:32px;height:32px;fill:var(--orange)}
.service-card h3{margin-bottom:.75rem;font-size:1.125rem;color:var(--white)}
.service-card p{font-size:.9375rem;margin-bottom:1.25rem;color:var(--text-light)}
.service-card__link{font-weight:600;font-size:.9375rem;display:inline-flex;align-items:center;gap:.25rem;color:var(--orange)}
.service-card__link:hover{gap:.5rem}

/* ===== WHY CHOOSE US ===== */
.why-card{display:flex;gap:1.25rem;align-items:flex-start}
.why-card__icon{width:48px;height:48px;min-width:48px;background:var(--orange);border-radius:var(--radius);display:flex;align-items:center;justify-content:center}
.why-card__icon svg{width:24px;height:24px;fill:var(--white)}
.why-card h3{margin-bottom:.375rem;font-size:1.0625rem;color:var(--white)}
.why-card p{font-size:.9375rem;color:var(--text-light)}

/* ===== PROCESS STEPS ===== */
.process{counter-reset:step}
.process__step{text-align:center;position:relative;counter-increment:step}
.process__step::before{content:counter(step);width:56px;height:56px;border-radius:50%;background:var(--orange);color:var(--white);font-size:1.5rem;font-weight:800;display:flex;align-items:center;justify-content:center;margin:0 auto 1.25rem;font-family:'Oswald',sans-serif}
.process__step h3{margin-bottom:.5rem;color:var(--white)}
.process__step p{font-size:.9375rem;color:var(--text-light)}

/* ===== IMAGE SECTION ===== */
.img-section{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.img-section__image{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg)}
.img-section__image img{width:100%;height:auto;display:block}
@media(max-width:768px){.img-section{grid-template-columns:1fr}}

/* ===== LOGO CAROUSEL ===== */
.logo-carousel{overflow:hidden;padding:2rem 0}
.logo-carousel__track{display:flex;gap:3rem;align-items:center;animation:logoScroll 30s linear infinite}
.logo-carousel__track img{height:50px;width:auto;opacity:.6;filter:brightness(0) invert(1);transition:opacity var(--transition)}
.logo-carousel__track img:hover{opacity:1}
@keyframes logoScroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ===== REVIEWS CAROUSEL ===== */
.reviews-carousel{position:relative;overflow:hidden}
.reviews-track{display:flex;transition:transform .5s ease}
.reviews-slide{min-width:100%;display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;padding:0 .25rem}
@media(max-width:1024px){.reviews-slide{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.reviews-slide{grid-template-columns:1fr}.reviews-slide .testimonial:nth-child(n+2){display:none}}
.testimonial{background:var(--navy-light);border-radius:var(--radius-lg);padding:1.75rem;border:1px solid rgba(255,255,255,.05);display:flex;flex-direction:column}
.testimonial__header{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem}
.testimonial__avatar{width:40px;height:40px;min-width:40px;border-radius:50%;background:var(--orange);color:var(--white);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1rem}
.testimonial__meta{flex:1}
.testimonial__author{font-weight:700;font-size:.9375rem;color:var(--white);margin-bottom:0}
.testimonial__source{font-size:.75rem;color:var(--text-light);display:flex;align-items:center;gap:.25rem}
.testimonial__source svg{width:14px;height:14px}
.testimonial__stars{display:flex;gap:.125rem;margin-bottom:.75rem}
.testimonial__stars svg{width:18px;height:18px;fill:#f59e0b}
.testimonial__text{font-size:.9375rem;color:var(--gray-300);line-height:1.6;flex:1}
.carousel-controls{display:flex;align-items:center;justify-content:center;gap:1rem;margin-top:2rem}
.carousel-btn{width:44px;height:44px;border-radius:50%;border:2px solid rgba(255,255,255,.15);background:var(--navy-light);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all var(--transition)}
.carousel-btn:hover{border-color:var(--orange);background:var(--orange)}
.carousel-btn:hover svg{stroke:var(--white)}
.carousel-btn svg{width:20px;height:20px;stroke:var(--gray-300);fill:none;stroke-width:2}
.carousel-dots{display:flex;gap:.5rem}
.carousel-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.15);border:none;cursor:pointer;transition:all var(--transition);padding:0}
.carousel-dot.is-active{background:var(--orange);transform:scale(1.2)}
.reviews-google-link{display:inline-flex;align-items:center;gap:.5rem;margin-top:1.5rem;font-weight:600;font-size:.9375rem;color:var(--orange)}
.reviews-google-link svg{width:20px;height:20px}

/* ===== CTA BANNER ===== */
.cta-banner{background:linear-gradient(135deg,var(--orange-dark),var(--orange));border-radius:var(--radius-lg);padding:3.5rem;text-align:center;color:var(--white);position:relative;overflow:hidden}
.cta-banner::before{content:'';position:absolute;inset:0;background:url('../images/fleet-bg.jpg') center/cover no-repeat;opacity:.15}
.cta-banner>*{position:relative;z-index:1}
.cta-banner h2{color:var(--white);margin-bottom:.75rem}
.cta-banner p{color:rgba(255,255,255,.9);font-size:1.125rem;margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}
@media(max-width:480px){.cta-banner{padding:2rem 1.5rem}}

/* ===== LOCATION ===== */
.location__detail{display:flex;align-items:flex-start;gap:.75rem;margin-bottom:1rem}
.location__detail svg{width:20px;height:20px;fill:var(--orange);flex-shrink:0;margin-top:.25rem}
.location__detail p{color:var(--gray-300);font-size:.9375rem}
.location__detail a{color:var(--white)}

/* ===== FOOTER ===== */
.footer{background:#07142d;color:var(--gray-300);padding:4rem 0 0;border-top:1px solid rgba(255,255,255,.05)}
.footer__grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2rem;margin-bottom:3rem}
.footer__brand{font-size:1.25rem;font-weight:800;color:var(--white);margin-bottom:.75rem;font-family:'Oswald',sans-serif;text-transform:uppercase}
.footer__brand span{color:var(--orange)}
.footer__desc{font-size:.9rem;color:var(--text-light);line-height:1.7;margin-bottom:1rem}
.footer h4{color:var(--white);font-size:1rem;margin-bottom:1rem}
.footer__links li{margin-bottom:.5rem}
.footer__links a{color:var(--text-light);font-size:.9rem;transition:color var(--transition)}
.footer__links a:hover{color:var(--orange)}
.footer__bottom{border-top:1px solid rgba(255,255,255,.05);padding:1.5rem 0;text-align:center;font-size:.8125rem;color:var(--text-light)}
@media(max-width:768px){.footer__grid{grid-template-columns:1fr 1fr}.footer__grid>div:first-child{grid-column:span 2}}
@media(max-width:480px){.footer__grid{grid-template-columns:1fr}.footer__grid>div:first-child{grid-column:span 1}}

/* ===== PAGE HERO (INNER PAGES) ===== */
.page-hero{padding:7rem 0 3.5rem;background:var(--navy);color:var(--white);text-align:center;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background:url('../images/hero-bg.jpg') center/cover no-repeat;opacity:.1}
.page-hero::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(13,27,46,.95),rgba(22,42,74,.9))}
.page-hero>*{position:relative;z-index:1}
.page-hero .container{position:relative;z-index:1}
.page-hero .breadcrumb{display:flex;align-items:center;justify-content:center;gap:.5rem;font-size:.875rem;color:var(--text-light);margin-bottom:1rem}
.page-hero .breadcrumb a{color:var(--gray-300)}
.page-hero .breadcrumb a:hover{color:var(--orange)}
.page-hero h1{color:var(--white);margin-bottom:1rem}
.page-hero p{color:var(--text-light);font-size:1.125rem;max-width:680px;margin:0 auto}

/* ===== SERVICE PAGE CONTENT ===== */
.service-content{max-width:800px;margin:0 auto}
.service-content h2{margin-top:2.5rem;margin-bottom:1rem;color:var(--white)}
.service-content p{margin-bottom:1rem;font-size:1.0625rem;line-height:1.8;color:var(--text-light)}
.service-content ul{margin-bottom:1.5rem;padding-left:0}
.service-content ul li{padding:.5rem 0 .5rem 1.75rem;position:relative;font-size:1.0625rem;color:var(--text-light)}
.service-content ul li::before{content:'';position:absolute;left:0;top:.9rem;width:8px;height:8px;border-radius:50%;background:var(--orange)}
.service-layout{display:grid;grid-template-columns:1fr 320px;gap:3rem;align-items:flex-start}
.service-sidebar{position:sticky;top:90px}
.sidebar-card{background:var(--navy-light);border-radius:var(--radius-lg);padding:2rem;border:1px solid rgba(255,255,255,.05);margin-bottom:1.5rem}
.sidebar-card h3{margin-bottom:1rem;font-size:1.125rem;color:var(--white)}
.sidebar-card ul li{padding:.375rem 0;font-size:.9375rem}
.sidebar-card ul li a{color:var(--text-light)}
.sidebar-card ul li a:hover{color:var(--orange)}
.sidebar-card ul li a.active{color:var(--orange);font-weight:600}
@media(max-width:900px){.service-layout{grid-template-columns:1fr}.service-sidebar{position:static}}

/* ===== CONTACT FORM ===== */
.form-group{margin-bottom:1.25rem}
.form-group label{display:block;font-weight:600;font-size:.9375rem;margin-bottom:.375rem;color:var(--gray-300)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.75rem 1rem;border:1px solid rgba(255,255,255,.15);border-radius:var(--radius);font-size:1rem;font-family:inherit;transition:border-color var(--transition);background:var(--navy-light);color:var(--white)}
.form-group input::placeholder,.form-group textarea::placeholder{color:var(--text-light)}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--orange);box-shadow:0 0 0 3px rgba(240,112,32,.15)}
.form-group select{color:var(--text-light)}
.form-group select option{background:var(--navy-light);color:var(--white)}
.form-group textarea{min-height:120px;resize:vertical}

/* ===== FAQ ===== */
.faq-item{border:1px solid rgba(255,255,255,.05);border-radius:var(--radius);margin-bottom:.75rem;overflow:hidden;background:var(--navy-light)}
.faq-item__question{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;cursor:pointer;font-weight:600;font-size:1.0625rem;color:var(--white);gap:1rem;background:none;border:none;width:100%;text-align:left;font-family:inherit}
.faq-item__question:hover{color:var(--orange)}
.faq-item__icon{width:24px;height:24px;min-width:24px;transition:transform var(--transition)}
.faq-item__icon path{stroke:var(--orange)}
.faq-item.is-open .faq-item__icon{transform:rotate(180deg)}
.faq-item__answer{padding:0 1.5rem;max-height:0;overflow:hidden;transition:max-height .3s ease,padding .3s ease}
.faq-item.is-open .faq-item__answer{padding:0 1.5rem 1.25rem;max-height:500px}
.faq-item__answer p{font-size:.9375rem;color:var(--text-light);line-height:1.7}

/* ===== ABOUT PAGE ===== */
.about-intro{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.about-value{text-align:center;padding:2rem}
.about-value__icon{width:56px;height:56px;background:rgba(240,112,32,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.about-value__icon svg{width:28px;height:28px;fill:var(--orange)}
.about-value h3{margin-bottom:.5rem;color:var(--white)}
.about-value p{font-size:.9375rem;color:var(--text-light)}
@media(max-width:768px){.about-intro{grid-template-columns:1fr}}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta{display:none;position:fixed;bottom:0;left:0;right:0;z-index:999;background:var(--navy);padding:.75rem 1rem;box-shadow:0 -4px 12px rgba(0,0,0,.3)}
.mobile-cta a{display:flex;align-items:center;justify-content:center;gap:.5rem;color:var(--white);font-weight:700;font-size:1.0625rem;padding:.75rem;background:var(--orange);border-radius:var(--radius);text-align:center}
.mobile-cta a svg{width:20px;height:20px;fill:var(--white)}
@media(max-width:768px){.mobile-cta{display:block}body{padding-bottom:72px}}

/* ===== ANIMATIONS ===== */
.fade-in{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.fade-in.is-visible{opacity:1;transform:translateY(0)}

/* ===== SKIP LINK ===== */
.skip-link{position:absolute;top:-100%;left:50%;transform:translateX(-50%);background:var(--orange);color:var(--white);padding:.75rem 1.5rem;border-radius:0 0 var(--radius) var(--radius);z-index:9999;font-weight:600}
.skip-link:focus{top:0;color:var(--white)}
