/* Clean, attractive footer + global theme */
/* Base resets & variables */
*{box-sizing:border-box}
:root{
  --accent:#ff5138;
  --accent-dark:#e0442a;
  --muted:#6b7280;
  --wrap:1100px;
  --radius:14px;
  --bg-gradient: linear-gradient(180deg,#fbfbfb,#fff);
  font-family: "Montserrat", Arial, sans-serif;
}
html{scroll-behavior:smooth;overflow-x:hidden}
body{margin:0;color:#111;background:var(--bg-gradient);-webkit-font-smoothing:antialiased;overflow-x:hidden;width:100%}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 18px}

/* Topbar */
.topbar{background:var(--accent);color:#fff;font-size:14px}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;padding:8px 0}
.topbar a{color:#fff;text-decoration:none;font-weight:600}
.top-sep{opacity:0.85;margin:0 8px}

/* Header */
.site-header{position:sticky;top:0;background:transparent;z-index:40;padding:14px 0}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.brand{flex-shrink:0}
.brand-title{font-weight:800;color:#111;text-decoration:none;font-size:18px;white-space:nowrap}
.nav{display:flex;align-items:center;gap:8px;flex-wrap:wrap;flex:1;justify-content:center}
.nav a{margin:0 6px;color:#444;text-decoration:none;font-weight:700;font-size:14px;padding:8px 12px;border-radius:6px;transition:all 0.3s ease;white-space:nowrap;min-height:44px;display:inline-flex;align-items:center;touch-action:manipulation}
.nav a:hover{color:var(--accent);background:rgba(255,81,56,0.1)}
.header-actions{display:flex;gap:10px;align-items:center;flex-shrink:0}
.btn-call{background:transparent;border:1px solid var(--accent);padding:10px 18px;border-radius:10px;color:var(--accent);text-decoration:none;font-weight:800;font-size:14px;white-space:nowrap;min-height:44px;display:inline-flex;align-items:center;justify-content:center;touch-action:manipulation}
.btn-wa{background:var(--accent);padding:10px 18px;border-radius:10px;color:#fff;text-decoration:none;font-weight:800;font-size:14px;white-space:nowrap;min-height:44px;display:inline-flex;align-items:center;justify-content:center;touch-action:manipulation}

/* HERO */
.hero{padding:36px 0 60px}
.hero-inner{display:flex;gap:28px;align-items:stretch;min-height:380px}
.hero-left{flex:1;padding:34px;border-radius:16px;background:linear-gradient(180deg,rgba(255,255,255,0.98),rgba(255,255,255,0.95));box-shadow:0 10px 30px rgba(16,24,40,0.06)}
.eyebrow{font-weight:700;letter-spacing:1px;color:var(--muted);margin:0 0 10px;font-size:12px}
.hero-title{font-size:36px;line-height:1.04;margin:0 0 12px;font-weight:800;color:#111;word-wrap:break-word}
.hero-lead{color:var(--muted);margin-bottom:18px;line-height:1.6}
.hero-ctas{display:flex;gap:12px;flex-wrap:wrap}
.cta-primary{background:linear-gradient(180deg,var(--accent),var(--accent-dark));color:#fff;padding:14px 20px;border-radius:10px;text-decoration:none;font-weight:800;min-height:48px;display:inline-flex;align-items:center;justify-content:center;touch-action:manipulation;font-size:16px}
.cta-outline{border:1px solid #eee;padding:14px 20px;border-radius:10px;text-decoration:none;color:#444;background:#fff;min-height:48px;display:inline-flex;align-items:center;justify-content:center;touch-action:manipulation;font-size:16px}

/* ENQUIRY CARD */
.enquiry-card{width:340px;background:#fff;padding:20px;border-radius:16px;box-shadow:0 12px 36px rgba(16,24,40,0.12);align-self:center;margin-left:auto}
.enquiry-card h2{margin:0 0 12px;font-size:20px;color:var(--accent);text-align:center}
.enq-form{display:flex;flex-direction:column;gap:10px}
.enq-form input, .enq-form textarea{padding:12px;border-radius:10px;border:1px solid #eee;font-size:16px;width:100%;-webkit-appearance:none;appearance:none}
.enq-form input:focus, .enq-form textarea:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(255,81,56,0.1)}
.enq-form textarea{min-height:70px;resize:vertical;font-family:inherit}
.enq-btn{background:var(--accent);color:#fff;border:none;padding:14px;border-radius:10px;font-weight:800;cursor:pointer;font-size:16px;min-height:48px;touch-action:manipulation}
.enq-or{font-size:13px;color:var(--muted);text-align:center;margin-top:8px}
.enq-or a{color:var(--accent);text-decoration:none;font-weight:600}

/* ABOUT + STATS */
.section{padding:28px 0}
.about-grid{display:grid;grid-template-columns:1fr 320px;gap:24px;align-items:start}
.about-text h2{margin-top:0}
.stats{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.stat{background:#fff;padding:14px;border-radius:12px;box-shadow:0 8px 24px rgba(16,24,40,0.04);text-align:center}
.stat-num{font-size:28px;font-weight:800;color:var(--accent)}
.stat-label{color:var(--muted);font-weight:700}

/* SERVICES */
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
.service-card{background:#fff;padding:24px;border-radius:12px;box-shadow:0 8px 18px rgba(16,24,40,0.04);transition:transform 0.3s ease,box-shadow 0.3s ease}
.service-card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(16,24,40,0.1)}
.service-card h4{font-size:18px;font-weight:800;color:#111;margin:12px 0 10px}
.service-card p{color:var(--muted);line-height:1.6;margin:0;font-size:14px}
.service-icon{width:56px;height:56px;border-radius:12px;background:linear-gradient(135deg,var(--accent) 0%, #ff8b6b 100%);display:flex;align-items:center;justify-content:center;color:#fff;margin-bottom:10px;font-size:28px}

/* Brand Services Section */
.brand-services{background:linear-gradient(180deg,#fff 0%, #f8fafb 100%);padding:50px 0}
.brand-services h2{text-align:center;font-size:32px;font-weight:800;color:#111;margin-bottom:16px}
.section-intro{text-align:center;color:var(--muted);line-height:1.7;margin-bottom:32px;font-size:16px;max-width:800px;margin-left:auto;margin-right:auto}

/* Local SEO */
.local-seo{padding:40px 0}
.local-seo h2{font-size:28px;font-weight:800;color:#111;margin-bottom:16px}
.local-seo h3{font-size:22px;font-weight:800;color:#111;margin-top:24px;margin-bottom:12px}
.local-seo p{color:var(--muted);line-height:1.7;margin-bottom:16px}
.service-list{list-style:none;padding:0;margin:16px 0}
.service-list li{margin:10px 0;padding-left:24px;position:relative;color:#333;line-height:1.6}
.service-list li:before{content:"✓";position:absolute;left:0;color:var(--accent);font-weight:800;font-size:18px}
.location-tag{background:linear-gradient(135deg,var(--accent) 0%, #ff8b6b 100%);color:#fff;padding:14px 20px;border-radius:12px;font-weight:700;margin-top:20px;text-align:center;word-wrap:break-word;line-height:1.5}

/* CONTACT / FOOTER (ATTRACTIVE) */
.footer-seo{background:linear-gradient(180deg,#fff 0%, #f8fafb 100%);padding:36px 0 18px;border-top:1px solid #eee}
.footer-grid{display:grid;grid-template-columns:1fr 220px 1fr;gap:22px;align-items:start;padding:22px 0}
.footer-box{background:linear-gradient(180deg,#fff,#fff);padding:18px;border-radius:12px;box-shadow:0 10px 30px rgba(16,24,40,0.04)}
.brand-foot{margin-bottom:12px}
.brand-foot-text .name{font-weight:800;font-size:18px;margin-bottom:4px}
.brand-foot-text .tag{font-size:13px;color:var(--muted)}
.contact-block{font-size:14px}
.contact-row{margin:8px 0;color:#222}
.socials{display:flex;gap:8px;margin-top:10px}
.socials a{display:inline-block;padding:8px 10px;border-radius:8px;background:linear-gradient(90deg,var(--accent),var(--accent-dark));color:#fff;text-decoration:none;font-weight:700}

/* Quick links & lists */
.quicklinks h4, .services h4{margin-top:0}
.quicklinks ul, .services ul{list-style:none;padding:0;margin:0}
.quicklinks li, .services li{margin:8px 0;color:#333}
.quicklinks a{color:#333;text-decoration:none;font-weight:600}

/* Footer bottom */
.footer-bottom{display:flex;justify-content:center;align-items:center;padding-top:16px;border-top:1px solid #f0f0f0;margin-top:18px;font-size:14px;color:var(--muted)}
.footer-bottom .legal{font-weight:700}

/* Testimonials Section */
.testimonials-section{background:linear-gradient(180deg,#fff 0%, #f8fafb 100%);padding:50px 0}
.testimonials-section h2{text-align:center;font-size:32px;font-weight:800;color:#111;margin-bottom:32px}
.testimonials-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:24px;margin-top:32px}
.testimonial-card{background:#fff;padding:24px;border-radius:16px;box-shadow:0 10px 30px rgba(16,24,40,0.08);transition:transform 0.3s ease,box-shadow 0.3s ease}
.testimonial-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(16,24,40,0.12)}
.testimonial-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:16px;padding-bottom:12px;border-bottom:2px solid #f0f0f0}
.testimonial-name{font-weight:800;font-size:18px;color:#111}
.testimonial-rating{font-size:18px}
.testimonial-text{color:#444;line-height:1.7;font-size:15px;margin:0}

/* FAQ Section */
.faq-section{background:#fff;padding:50px 0}
.faq-section h2{text-align:center;font-size:32px;font-weight:800;color:#111;margin-bottom:32px}
.faq-container{max-width:800px;margin:0 auto}
.faq-item{background:#fff;border:1px solid #eee;border-radius:12px;margin-bottom:16px;overflow:hidden;transition:all 0.3s ease}
.faq-item:hover{border-color:var(--accent);box-shadow:0 4px 12px rgba(255,81,56,0.1)}
.faq-item.active{border-color:var(--accent);box-shadow:0 8px 24px rgba(255,81,56,0.15)}
.faq-question{width:100%;background:transparent;border:none;padding:20px 24px;text-align:left;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-size:16px;font-weight:700;color:#111;transition:color 0.3s ease}
.faq-question:hover{color:var(--accent)}
.faq-icon{font-size:24px;font-weight:800;color:var(--accent);transition:transform 0.3s ease;flex-shrink:0;margin-left:16px}
.faq-item.active .faq-icon{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height 0.3s ease}
.faq-answer p{padding:0 24px 20px;color:var(--muted);line-height:1.7;margin:0}

/* Floating Call button */
.floating-call{position:fixed;right:18px;bottom:18px;background:linear-gradient(180deg,var(--accent),var(--accent-dark));width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;text-decoration:none;box-shadow:0 8px 24px rgba(255,81,56,0.4);z-index:90;transition:all 0.3s ease;animation:bounce 2s infinite;overflow:visible}
.floating-call svg{width:28px;height:28px;position:relative;z-index:2;animation:ring 2s infinite}
.floating-call:hover{transform:scale(1.1);box-shadow:0 12px 32px rgba(255,81,56,0.6);animation:none}
.floating-call:hover svg{animation:ring-fast 0.5s infinite}

/* Ripple effect */
.call-ripple{position:absolute;width:64px;height:64px;border-radius:50%;border:2px solid var(--accent);opacity:0.6;animation:ripple 2s infinite}
.call-ripple-2{animation-delay:1s}

@keyframes bounce{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

@keyframes ring{
  0%,100%{transform:rotate(0deg)}
  10%,30%{transform:rotate(-10deg)}
  20%,40%{transform:rotate(10deg)}
  50%{transform:rotate(0deg)}
}

@keyframes ring-fast{
  0%,100%{transform:rotate(0deg) scale(1)}
  25%{transform:rotate(-5deg) scale(1.1)}
  75%{transform:rotate(5deg) scale(1.1)}
}

@keyframes ripple{
  0%{transform:scale(1);opacity:0.6}
  100%{transform:scale(1.8);opacity:0}
}

/* Header improvements */
.site-header{background:rgba(255,255,255,0.95);backdrop-filter:blur(10px);box-shadow:0 2px 10px rgba(0,0,0,0.05)}
.nav a:hover{color:var(--accent);transition:color 0.3s ease}
.btn-call:hover{background:var(--accent);color:#fff;transition:all 0.3s ease}
.btn-wa:hover{background:var(--accent-dark);transition:background 0.3s ease}
.cta-primary:hover{opacity:0.9;transform:translateY(-2px);transition:all 0.3s ease}
.cta-outline:hover{border-color:var(--accent);color:var(--accent);transition:all 0.3s ease}

/* Responsive */
@media(max-width:980px){
  .wrap{padding:0 16px}
  .hero{padding:24px 0 40px}
  .hero-inner{flex-direction:column;min-height:auto;gap:20px}
  .hero-left{padding:24px}
  .enquiry-card{width:100%;margin-left:0;max-width:100%}
  .about-grid{grid-template-columns:1fr;gap:20px}
  .stats{grid-template-columns:repeat(2,1fr);gap:10px}
  .stat{padding:12px}
  .stat-num{font-size:24px}
  .footer-grid{grid-template-columns:1fr;gap:16px}
  .footer-bottom{flex-direction:column;gap:8px;align-items:center;text-align:center}
  .header-inner{flex-direction:column;align-items:stretch;gap:12px}
  .nav{justify-content:flex-start;margin:10px 0;gap:4px;flex-wrap:wrap}
  .nav a{font-size:13px;padding:8px 10px;margin:2px;min-height:40px}
  .header-actions{justify-content:center;width:100%;gap:8px}
  .hero-title{font-size:28px;line-height:1.2}
  .testimonials-grid{grid-template-columns:1fr;gap:16px}
  .services-grid{grid-template-columns:1fr;gap:16px}
  .service-card{padding:20px}
  .brand-services{padding:40px 0}
  .brand-services h2{font-size:28px}
  .section-intro{font-size:15px;padding:0 10px}
  .local-seo{padding:30px 0}
  .local-seo h2{font-size:24px;line-height:1.3}
  .local-seo h3{font-size:20px}
  .faq-section{padding:40px 0}
  .faq-section h2,.testimonials-section h2{font-size:26px;line-height:1.3}
  .testimonials-section{padding:40px 0}
  .section{padding:24px 0}
}
@media(max-width:640px){
  .wrap{padding:0 14px}
  .topbar{font-size:12px}
  .topbar-inner{flex-direction:column;gap:6px;text-align:center;padding:10px 0}
  .top-sep{display:none}
  .site-header{padding:12px 0}
  .header-inner{flex-direction:column;gap:12px}
  .brand{text-align:center;width:100%}
  .brand-title{font-size:16px;white-space:normal}
  .nav{justify-content:center;flex-wrap:wrap;gap:4px;margin:0;width:100%}
  .nav a{font-size:12px;padding:8px 10px;margin:2px;min-height:40px;flex:1 1 auto;text-align:center;max-width:calc(50% - 4px)}
  .header-actions{flex-direction:row;width:100%;justify-content:stretch;gap:8px}
  .btn-call,.btn-wa{flex:1;text-align:center;font-size:14px;padding:12px 16px;min-height:48px}
  .hero{padding:20px 0 30px}
  .hero-left{padding:20px}
  .hero-title{font-size:22px;line-height:1.3;word-break:break-word}
  .hero-lead{font-size:14px;line-height:1.6}
  .eyebrow{font-size:11px}
  .cta-primary,.cta-outline{width:100%;text-align:center;display:flex;justify-content:center;padding:14px 20px;min-height:48px}
  .hero-ctas{flex-direction:column;gap:10px;width:100%}
  .enquiry-card{padding:18px}
  .enquiry-card h2{font-size:18px}
  .enq-form input,.enq-form textarea{font-size:16px;padding:14px}
  .enq-btn{min-height:48px;padding:14px}
  .about-text h2{font-size:24px}
  .about-text h3{font-size:20px}
  .stats{grid-template-columns:repeat(2,1fr);gap:8px}
  .stat{padding:12px 8px}
  .stat-num{font-size:22px}
  .stat-label{font-size:12px}
  .service-card{padding:18px}
  .service-card h4{font-size:16px}
  .service-card p{font-size:13px}
  .service-icon{width:48px;height:48px;font-size:24px}
  .brand-services{padding:30px 0}
  .brand-services h2{font-size:24px}
  .section-intro{font-size:14px;margin-bottom:24px}
  .local-seo{padding:24px 0}
  .local-seo h2{font-size:20px;line-height:1.4}
  .local-seo h3{font-size:18px}
  .service-list li{font-size:14px;padding-left:20px;margin:8px 0}
  .location-tag{padding:12px 16px;font-size:13px;line-height:1.5}
  .testimonials-section{padding:30px 0}
  .testimonials-section h2{font-size:22px}
  .testimonial-card{padding:18px}
  .testimonial-name{font-size:16px}
  .testimonial-text{font-size:14px}
  .faq-section{padding:30px 0}
  .faq-section h2{font-size:22px}
  .faq-question{padding:16px 18px;font-size:15px}
  .faq-answer p{padding:0 18px 16px;font-size:14px}
  .faq-icon{font-size:20px}
  .footer-seo{padding:30px 0 16px}
  .footer-box{padding:16px}
  .footer-bottom{font-size:12px;padding-top:12px}
  .floating-call{width:56px;height:56px;right:12px;bottom:12px}
  .floating-call svg{width:24px;height:24px}
  .call-ripple{width:56px;height:56px}
}
