/* ===================== RESET & BASE ===================== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Source Sans 3',sans-serif;color:#2a2a2a;line-height:1.7;background:#fff}
h1,h2,h3,h4{font-family:'DM Serif Display',serif;font-weight:400;line-height:1.3}
a{color:#e8362a;text-decoration:none;transition:color .2s}
a:hover{color:#f47b20}
img{max-width:100%;display:block}
ul{list-style:none}

/* ===================== UTILITY ===================== */
.container{max-width:1100px;margin:0 auto;padding:0 24px}

/* ===================== HEADER ===================== */
.site-header{position:sticky;top:0;z-index:100;background:#1a1a1a;box-shadow:0 2px 8px rgba(0,0,0,.25)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:68px}
.logo img{height:44px;width:auto}
.nav-links{display:flex;gap:4px}
.nav-links a{color:rgba(255,255,255,.8);padding:8px 14px;font-size:.95rem;font-weight:600;border-bottom:3px solid transparent;transition:color .2s,border-color .2s}
.nav-links a:hover,.nav-links a.active{color:#fff;border-bottom-color:#e8362a}

/* hamburger */
.hamburger{display:none;background:none;border:none;cursor:pointer;padding:8px}
.hamburger span{display:block;width:26px;height:3px;background:#fff;margin:5px 0;border-radius:2px;transition:transform .3s,opacity .3s}
.hamburger.open span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

/* ===================== HERO ===================== */
.hero{background:linear-gradient(135deg,#e8362a,#f47b20);color:#fff;padding:72px 0;text-align:center}
.hero h1{font-size:2.8rem;margin-bottom:16px}
.hero p{font-size:1.2rem;max-width:680px;margin:0 auto 28px;opacity:.95}
.btn{display:inline-block;padding:14px 36px;border-radius:6px;font-weight:700;font-size:1rem;transition:background .2s,transform .15s;cursor:pointer;border:none}
.btn-white{background:#fff;color:#e8362a}
.btn-white:hover{background:#f5f5f5;color:#e8362a;transform:translateY(-2px)}
.btn-red{background:linear-gradient(135deg,#e8362a,#f47b20);color:#fff;padding:14px 36px;border-radius:6px;font-weight:700;font-size:1.1rem;text-align:center}
.btn-red:hover{opacity:.9;color:#fff;transform:translateY(-2px)}

/* ===================== CONTENT SECTIONS ===================== */
.content-section{padding:72px 0}
.content-section h2{font-size:2rem;margin-bottom:28px;text-align:center}
.content-section p{margin-bottom:16px;font-size:1.05rem}

/* service cards (home) */
.service-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:28px;margin-top:36px}
.service-card{background:#fff;border:1px solid #e8e8e8;border-radius:10px;padding:32px 28px;transition:box-shadow .2s,transform .2s}
.service-card:hover{box-shadow:0 6px 24px rgba(0,0,0,.08);transform:translateY(-3px)}
.service-card h3{font-size:1.3rem;margin-bottom:12px;color:#e8362a}
.service-card p{color:#555;font-size:.98rem}

/* service items (services page) */
.service-item{border:1px solid #e8e8e8;border-radius:10px;padding:36px 32px;margin-bottom:28px}
.service-item h3{font-size:1.4rem;color:#e8362a;margin-bottom:14px}
.service-item p{margin-bottom:12px;color:#444}
.service-item ul{margin:12px 0 0 20px;list-style:disc}
.service-item li{margin-bottom:6px;color:#444;font-size:1rem}

/* about page */
.about-content{max-width:800px;margin:0 auto}
.about-content ul{margin:16px 0 24px 24px;list-style:disc}
.about-content li{margin-bottom:8px;font-size:1.05rem;color:#444}

/* FAQ */
.faq-item{border-bottom:1px solid #e8e8e8;padding:28px 0}
.faq-item:last-child{border-bottom:none}
.faq-item h3{font-size:1.25rem;color:#2a2a2a;margin-bottom:12px}
.faq-item p{color:#444;margin-bottom:10px}

/* contact */
.contact-wrap{max-width:600px;margin:0 auto;text-align:center}
.contact-wrap p{font-size:1.1rem;margin-bottom:24px;color:#444}
.contact-wrap .btn-red{display:inline-block;font-size:1.15rem;padding:16px 40px}
.contact-response{margin-top:16px;color:#666;font-size:.95rem}

/* legal (privacy/terms) */
.legal-content{max-width:800px;margin:0 auto}
.legal-content h3{font-size:1.2rem;margin:28px 0 12px;color:#2a2a2a}
.legal-content p,.legal-content li{font-size:1rem;color:#444;margin-bottom:10px}
.legal-content ul{margin:12px 0 20px 24px;list-style:disc}

/* ===================== CTA BANNER ===================== */
.cta-banner{background:linear-gradient(135deg,#e8362a,#f47b20);padding:56px 0;text-align:center;color:#fff}
.cta-banner h2{font-size:2rem;margin-bottom:20px}
.cta-banner .btn-white{font-size:1.05rem}

/* ===================== FOOTER ===================== */
.site-footer{background:#1a1a1a;color:rgba(255,255,255,.7);padding:56px 0 28px}
.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:36px}
.footer-col h4{color:#fff;font-size:1rem;margin-bottom:16px;font-family:'Source Sans 3',sans-serif;font-weight:700;text-transform:uppercase;letter-spacing:.5px}
.footer-col p{font-size:.9rem;line-height:1.6}
.footer-col a{color:rgba(255,255,255,.7);font-size:.9rem;display:block;margin-bottom:8px}
.footer-col a:hover{color:#f47b20}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:36px;padding-top:20px;text-align:center;font-size:.85rem;color:rgba(255,255,255,.4)}

/* ===================== MOBILE ===================== */
@media(max-width:768px){
  .hamburger{display:block}
  .nav-links{display:none;position:absolute;top:68px;left:0;right:0;background:#1a1a1a;flex-direction:column;padding:12px 0;box-shadow:0 4px 12px rgba(0,0,0,.3)}
  .nav-links.open{display:flex}
  .nav-links a{padding:14px 24px;border-bottom:none}
  .hero h1{font-size:2rem}
  .hero p{font-size:1rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:28px}
  .service-grid{grid-template-columns:1fr}
  .content-section{padding:48px 0}
  .hero{padding:48px 0}
}
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
  .header-inner{height:56px}
  .logo img{height:36px}
}
