/* ===== RESET & BASE ===== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --blue:#1a5276;
  --blue-light:#2980b9;
  --blue-dark:#0d2d44;
  --orange:#e67e22;
  --orange-hover:#d35400;
  --white:#ffffff;
  --light:#f4f7fa;
  --grey:#6c757d;
  --dark:#1e1e2f;
  --text:#333;
  --shadow:0 4px 24px rgba(0,0,0,.08);
  --radius:8px;
  --transition:.3s ease;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Segoe UI',Roboto,Helvetica,Arial,sans-serif;color:var(--text);line-height:1.7;background:var(--white)}
a{text-decoration:none;color:inherit;transition:color var(--transition)}
ul{list-style:none}
img{max-width:100%;height:auto;display:block}
h1,h2,h3,h4,h5,h6{line-height:1.3;color:var(--blue-dark)}
h1{font-size:2.6rem}
h2{font-size:2rem}
h3{font-size:1.5rem}
p{margin-bottom:1rem}

/* ===== UTILITY ===== */
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.section{padding:80px 0}
.section-alt{background:var(--light)}
.text-center{text-align:center}
.section-title{text-align:center;margin-bottom:50px}
.section-title h2{margin-bottom:12px;position:relative;display:inline-block}
.section-title h2::after{content:'';display:block;width:60px;height:4px;background:var(--orange);margin:12px auto 0;border-radius:2px}
.section-title p{color:var(--grey);max-width:600px;margin:0 auto}

/* ===== BUTTONS ===== */
.btn{display:inline-block;padding:14px 32px;border-radius:var(--radius);font-weight:600;font-size:1rem;cursor:pointer;border:none;transition:all var(--transition);text-align:center}
.btn-primary{background:var(--orange);color:var(--white)}
.btn-primary:hover{background:var(--orange-hover);transform:translateY(-2px);box-shadow:0 6px 20px rgba(230,126,34,.35)}
.btn-secondary{background:var(--blue);color:var(--white)}
.btn-secondary:hover{background:var(--blue-light);transform:translateY(-2px)}
.btn-outline{border:2px solid var(--white);color:var(--white);background:transparent}
.btn-outline:hover{background:var(--white);color:var(--blue-dark)}
.btn-sm{padding:10px 22px;font-size:.9rem}

/* ===== TOP BAR ===== */
.top-bar{background:var(--blue-dark);color:var(--white);padding:8px 0;font-size:.85rem}
.top-bar .container{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}
.top-bar a{color:var(--orange);font-weight:600}
.top-bar a:hover{color:#fff}
.top-bar-left,.top-bar-right{display:flex;gap:20px;align-items:center}

/* ===== HEADER / NAV ===== */
.header{background:var(--white);box-shadow:var(--shadow);position:sticky;top:0;z-index:1000}
.header .container{display:flex;justify-content:space-between;align-items:center;padding-top:12px;padding-bottom:12px}
.logo{font-size:1.5rem;font-weight:800;color:var(--blue-dark)}
.logo span{color:var(--orange)}
.nav-links{display:flex;gap:28px;align-items:center}
.nav-links a{font-weight:500;color:var(--dark);position:relative;padding:4px 0}
.nav-links a:hover,.nav-links a.active{color:var(--blue)}
.nav-links a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--orange);transition:width var(--transition)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}
.header-cta{background:var(--orange);color:var(--white);padding:10px 24px;border-radius:var(--radius);font-weight:700;white-space:nowrap}
.header-cta:hover{background:var(--orange-hover)}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:5px}
.hamburger span{width:28px;height:3px;background:var(--dark);border-radius:2px;transition:var(--transition)}

/* Mobile Nav */
.mobile-nav{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.7);z-index:2000}
.mobile-nav-content{background:var(--white);width:280px;height:100%;padding:30px 20px;display:flex;flex-direction:column;gap:4px;overflow-y:auto}
.mobile-nav-close{align-self:flex-end;font-size:1.8rem;cursor:pointer;background:none;border:none;color:var(--dark)}
.mobile-nav-content a{display:block;padding:12px 0;font-size:1.05rem;font-weight:500;border-bottom:1px solid #eee;color:var(--dark)}
.mobile-nav-content a:hover{color:var(--blue)}
.mobile-nav.open{display:block}

/* ===== HERO ===== */
.hero{background:linear-gradient(135deg,var(--blue-dark) 0%,var(--blue) 100%);color:var(--white);padding:100px 0 110px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:rgba(255,255,255,.04);border-radius:50%}
.hero-content{max-width:650px}
.hero h1{font-size:3rem;color:var(--white);margin-bottom:16px}
.hero p{font-size:1.15rem;opacity:.9;margin-bottom:30px;max-width:540px}
.hero-badges{display:flex;flex-wrap:wrap;gap:16px;margin-top:28px}
.hero-badge{display:flex;align-items:center;gap:8px;background:rgba(255,255,255,.12);padding:10px 18px;border-radius:var(--radius);font-size:.9rem}
.hero-badge svg{width:20px;height:20px;fill:var(--orange);flex-shrink:0}

/* ===== TRUST BAR ===== */
.trust-bar{background:var(--white);padding:30px 0;border-bottom:1px solid #eee}
.trust-items{display:flex;justify-content:center;flex-wrap:wrap;gap:40px;text-align:center}
.trust-item{display:flex;align-items:center;gap:10px;font-weight:600;color:var(--blue-dark);font-size:.95rem}
.trust-item svg{width:28px;height:28px;fill:var(--orange);flex-shrink:0}

/* ===== SERVICE CARDS ===== */
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(340px,1fr));gap:30px}
.service-card{background:var(--white);border-radius:12px;overflow:hidden;box-shadow:var(--shadow);transition:transform var(--transition),box-shadow var(--transition)}
.service-card:hover{transform:translateY(-6px);box-shadow:0 12px 40px rgba(0,0,0,.12)}
.service-card-img{height:220px;background:var(--blue);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.service-card-img svg{width:80px;height:80px;fill:rgba(255,255,255,.3)}
.service-card-body{padding:28px}
.service-card-body h3{margin-bottom:10px}
.service-card-body p{color:var(--grey);font-size:.95rem;margin-bottom:16px}

/* ===== SERVICE DETAIL BLOCKS ===== */
.service-detail{padding:70px 0;border-bottom:1px solid #eee}
.service-detail:nth-child(even){background:var(--light)}
.service-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.service-detail-grid.reverse{direction:rtl}
.service-detail-grid.reverse>*{direction:ltr}
.service-detail-img{height:380px;background:var(--blue);border-radius:12px;display:flex;align-items:center;justify-content:center}
.service-detail-img svg{width:120px;height:120px;fill:rgba(255,255,255,.25)}
.service-detail-content h2{margin-bottom:16px}
.service-detail-content p{color:var(--grey);margin-bottom:14px}
.benefit-list{margin:20px 0}
.benefit-list li{padding:8px 0 8px 30px;position:relative;color:var(--text)}
.benefit-list li::before{content:'✓';position:absolute;left:0;color:var(--orange);font-weight:700;font-size:1.1rem}
.process-steps{margin:20px 0;counter-reset:step}
.process-step{display:flex;gap:16px;margin-bottom:16px;align-items:flex-start}
.process-step-num{width:36px;height:36px;min-width:36px;background:var(--blue);color:var(--white);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem}
.process-step-text h4{margin-bottom:4px;font-size:1rem}
.process-step-text p{font-size:.9rem;color:var(--grey);margin:0}

/* ===== WHY CHOOSE US ===== */
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:30px}
.why-card{text-align:center;padding:36px 24px;background:var(--white);border-radius:12px;box-shadow:var(--shadow);transition:transform var(--transition)}
.why-card:hover{transform:translateY(-4px)}
.why-card svg{width:50px;height:50px;fill:var(--orange);margin-bottom:18px}
.why-card h3{margin-bottom:10px;font-size:1.15rem}
.why-card p{color:var(--grey);font-size:.9rem}

/* ===== TESTIMONIALS ===== */
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:30px}
.testimonial-card{background:var(--white);padding:32px;border-radius:12px;box-shadow:var(--shadow);position:relative}
.testimonial-card::before{content:'"';position:absolute;top:10px;left:20px;font-size:5rem;color:var(--orange);opacity:.15;font-family:Georgia,serif;line-height:1}
.testimonial-text{font-style:italic;color:var(--grey);margin-bottom:20px;position:relative;z-index:1}
.testimonial-author{display:flex;align-items:center;gap:12px}
.testimonial-avatar{width:48px;height:48px;border-radius:50%;background:var(--blue);display:flex;align-items:center;justify-content:center;color:var(--white);font-weight:700;font-size:1.1rem}
.testimonial-info strong{display:block;color:var(--blue-dark)}
.testimonial-info span{font-size:.85rem;color:var(--grey)}
.stars{color:var(--orange);margin-bottom:12px;font-size:1.1rem;letter-spacing:2px}

/* ===== CTA BANNER ===== */
.cta-banner{background:linear-gradient(135deg,var(--blue-dark),var(--blue));color:var(--white);padding:70px 0;text-align:center}
.cta-banner h2{color:var(--white);margin-bottom:14px;font-size:2.2rem}
.cta-banner p{opacity:.9;margin-bottom:30px;font-size:1.1rem}
.cta-banner .btn{margin:0 8px 10px}

/* ===== ABOUT ===== */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.about-img{height:400px;background:var(--blue);border-radius:12px;display:flex;align-items:center;justify-content:center}
.about-img svg{width:140px;height:140px;fill:rgba(255,255,255,.2)}
.about-content h2{margin-bottom:16px}
.about-content p{color:var(--grey)}
.stats-row{display:flex;gap:30px;margin-top:28px}
.stat{text-align:center}
.stat-number{font-size:2.2rem;font-weight:800;color:var(--orange)}
.stat-label{font-size:.85rem;color:var(--grey)}
.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:30px}
.team-card{text-align:center;background:var(--white);padding:30px;border-radius:12px;box-shadow:var(--shadow)}
.team-avatar{width:100px;height:100px;border-radius:50%;background:var(--blue);margin:0 auto 16px;display:flex;align-items:center;justify-content:center;color:var(--white);font-size:2rem;font-weight:700}
.team-card h3{margin-bottom:4px;font-size:1.1rem}
.team-card span{color:var(--grey);font-size:.9rem}

/* ===== LOCAL SEO ===== */
.local-seo{padding:70px 0}
.local-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(340px,1fr));gap:30px}
.local-card{padding:30px;background:var(--white);border-radius:12px;box-shadow:var(--shadow);border-left:4px solid var(--orange)}
.local-card h3{margin-bottom:10px;font-size:1.15rem}
.local-card p{color:var(--grey);font-size:.92rem;margin-bottom:14px}

/* ===== BLOG ===== */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(340px,1fr));gap:30px}
.blog-card{background:var(--white);border-radius:12px;overflow:hidden;box-shadow:var(--shadow);transition:transform var(--transition)}
.blog-card:hover{transform:translateY(-4px)}
.blog-card-img{height:200px;background:var(--blue);display:flex;align-items:center;justify-content:center}
.blog-card-img svg{width:60px;height:60px;fill:rgba(255,255,255,.25)}
.blog-card-body{padding:24px}
.blog-card-meta{font-size:.8rem;color:var(--grey);margin-bottom:10px}
.blog-card-body h3{font-size:1.15rem;margin-bottom:10px}
.blog-card-body h3 a:hover{color:var(--blue)}
.blog-card-body p{color:var(--grey);font-size:.9rem;margin-bottom:14px}
.read-more{color:var(--orange);font-weight:600;font-size:.9rem}
.read-more:hover{color:var(--orange-hover)}

/* Blog Article */
.blog-article{max-width:800px;margin:0 auto;padding:60px 20px}
.blog-article h1{font-size:2.2rem;margin-bottom:12px}
.blog-article .meta{color:var(--grey);font-size:.9rem;margin-bottom:30px;padding-bottom:20px;border-bottom:1px solid #eee}
.blog-article h2{margin:32px 0 14px;font-size:1.6rem}
.blog-article h3{margin:24px 0 10px;font-size:1.25rem}
.blog-article p{color:var(--text);line-height:1.8}
.blog-article ul,.blog-article ol{margin:14px 0 20px 24px;color:var(--text)}
.blog-article li{margin-bottom:8px;line-height:1.7}
.blog-article ul li{list-style:disc}
.blog-article ol li{list-style:decimal}
.blog-article-img{width:100%;height:300px;background:var(--blue);border-radius:12px;margin:24px 0;display:flex;align-items:center;justify-content:center}
.blog-article-img svg{width:80px;height:80px;fill:rgba(255,255,255,.2)}
.blog-article blockquote{border-left:4px solid var(--orange);padding:16px 20px;margin:20px 0;background:var(--light);border-radius:0 8px 8px 0;font-style:italic;color:var(--grey)}
.internal-links{background:var(--light);padding:24px;border-radius:12px;margin-top:40px}
.internal-links h3{margin-bottom:12px;font-size:1.1rem}
.internal-links a{display:block;padding:6px 0;color:var(--blue);font-weight:500}
.internal-links a:hover{color:var(--orange)}

/* ===== CONTACT ===== */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px}
.contact-info-cards{display:flex;flex-direction:column;gap:20px}
.contact-info-card{display:flex;gap:16px;padding:24px;background:var(--white);border-radius:12px;box-shadow:var(--shadow)}
.contact-info-card svg{width:40px;height:40px;fill:var(--orange);flex-shrink:0}
.contact-info-card h3{font-size:1rem;margin-bottom:4px}
.contact-info-card p,.contact-info-card a{color:var(--grey);font-size:.92rem}
.contact-info-card a:hover{color:var(--orange)}
.contact-form{background:var(--white);padding:36px;border-radius:12px;box-shadow:var(--shadow)}
.contact-form h2{margin-bottom:24px;font-size:1.5rem}
.form-group{margin-bottom:18px}
.form-group label{display:block;font-weight:600;margin-bottom:6px;font-size:.9rem;color:var(--blue-dark)}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:12px 16px;border:2px solid #e0e0e0;border-radius:var(--radius);font-size:.95rem;font-family:inherit;transition:border var(--transition)}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:var(--blue)}
.form-group textarea{resize:vertical;min-height:120px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.map-placeholder{height:300px;background:var(--light);border-radius:12px;display:flex;align-items:center;justify-content:center;color:var(--grey);margin-top:40px;border:2px dashed #ddd}

/* ===== FREE ESTIMATE ===== */
.estimate-section{background:var(--orange);color:var(--white);padding:60px 0;text-align:center}
.estimate-section h2{color:var(--white);margin-bottom:10px}
.estimate-section p{opacity:.9;margin-bottom:24px}

/* ===== PAGE HEADER ===== */
.page-header{background:linear-gradient(135deg,var(--blue-dark),var(--blue));color:var(--white);padding:60px 0;text-align:center}
.page-header h1{color:var(--white);margin-bottom:10px}
.page-header p{opacity:.85}
.breadcrumb{display:flex;justify-content:center;gap:8px;margin-top:14px;font-size:.85rem;opacity:.7}
.breadcrumb a{color:var(--white)}
.breadcrumb a:hover{opacity:1}

/* ===== LEGAL PAGES ===== */
.legal-content{max-width:800px;margin:0 auto;padding:60px 20px}
.legal-content h1{margin-bottom:8px}
.legal-content .updated{color:var(--grey);font-size:.9rem;margin-bottom:30px}
.legal-content h2{margin:30px 0 12px;font-size:1.4rem}
.legal-content h3{margin:20px 0 8px;font-size:1.1rem}
.legal-content p,.legal-content li{color:var(--grey);line-height:1.8}
.legal-content ul{margin:10px 0 20px 24px}
.legal-content ul li{list-style:disc;margin-bottom:6px}

/* ===== FOOTER ===== */
.footer{background:var(--dark);color:rgba(255,255,255,.7);padding:60px 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
.footer h4{color:var(--white);margin-bottom:18px;font-size:1.05rem}
.footer p{font-size:.9rem;line-height:1.8}
.footer a{color:rgba(255,255,255,.7);transition:color var(--transition)}
.footer a:hover{color:var(--orange)}
.footer-links li{margin-bottom:10px}
.footer-links a{font-size:.9rem}
.footer-contact-item{display:flex;gap:10px;margin-bottom:12px;font-size:.9rem;align-items:flex-start}
.footer-contact-item svg{width:18px;height:18px;fill:var(--orange);flex-shrink:0;margin-top:3px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:20px 0;text-align:center;font-size:.85rem}
.footer-bottom a{color:var(--orange)}

/* ===== COOKIE BANNER ===== */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--dark);color:var(--white);padding:20px;z-index:9999;box-shadow:0 -4px 20px rgba(0,0,0,.2);display:flex;justify-content:center;align-items:center;gap:20px;flex-wrap:wrap}
.cookie-banner p{margin:0;font-size:.9rem;max-width:600px}
.cookie-banner a{color:var(--orange)}
.cookie-btn{padding:10px 24px;border-radius:var(--radius);border:none;font-weight:600;cursor:pointer;font-size:.9rem;transition:var(--transition)}
.cookie-accept{background:var(--orange);color:var(--white)}
.cookie-accept:hover{background:var(--orange-hover)}
.cookie-decline{background:transparent;color:var(--white);border:1px solid rgba(255,255,255,.3)}
.cookie-decline:hover{border-color:var(--white)}
.cookie-banner:target{display:none}

/* ===== STICKY PHONE ===== */
.sticky-phone{position:fixed;bottom:24px;right:24px;width:60px;height:60px;background:var(--orange);border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(230,126,34,.4);z-index:1000;transition:transform var(--transition)}
.sticky-phone:hover{transform:scale(1.1)}
.sticky-phone svg{width:28px;height:28px;fill:var(--white)}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
  .hero h1{font-size:2.2rem}
  .about-grid,.contact-grid,.service-detail-grid{grid-template-columns:1fr}
  .service-detail-grid.reverse{direction:ltr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .stats-row{flex-wrap:wrap}
}
@media(max-width:768px){
  .nav-links,.header-cta{display:none}
  .hamburger{display:flex}
  .hero{padding:60px 0 70px}
  .hero h1{font-size:1.8rem}
  .section{padding:50px 0}
  .services-grid,.blog-grid,.testimonials-grid,.why-grid,.local-grid{grid-template-columns:1fr}
  .top-bar-left{display:none}
  .form-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .cookie-banner{flex-direction:column;text-align:center}
  h1{font-size:2rem}
  h2{font-size:1.6rem}
}
@media(max-width:480px){
  .hero h1{font-size:1.5rem}
  .hero-badges{flex-direction:column}
  .btn{padding:12px 24px;font-size:.9rem}
  .trust-items{gap:20px;flex-direction:column;align-items:center}
}
