/* ===== WeFix4U — style.css ===== */

/* ---------- Global Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #0A0A0A; color: #FFFFFF; font-family: 'Oswald', sans-serif; font-weight: 300; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; line-height: 1.05; font-weight: 400; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.6rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: #B3B3B3; max-width: 720px; margin: 0 auto 44px; font-size: 1.1rem; }
.text-orange { color: #FF6B00; }

/* ---------- Buttons ---------- */
.btn-primary { background: #FF6B00; color: #000000; padding: 14px 32px; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px; border: none; cursor: pointer; border-radius: 4px; display: inline-block; transition: background 0.2s ease, transform 0.15s ease; }
.btn-primary:hover { background: #e55f00; transform: translateY(-2px); }

.btn-secondary { background: transparent; color: #FFFFFF; border: 2px solid #FFFFFF; padding: 14px 32px; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px; cursor: pointer; border-radius: 4px; display: inline-block; transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease; }
.btn-secondary:hover { background: #FFFFFF; color: #000000; transform: translateY(-2px); }

.btn-whatsapp { background: #25D366; color: #FFFFFF; padding: 14px 32px; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px; border: none; cursor: pointer; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.2s ease, transform 0.15s ease; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-whatsapp svg { width: 22px; height: 22px; fill: #FFFFFF; }

.btn-dark { background: #0A0A0A; color: #FFFFFF; padding: 14px 32px; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px; border: none; cursor: pointer; border-radius: 4px; display: inline-block; transition: background 0.2s ease, transform 0.15s ease; }
.btn-dark:hover { background: #000000; transform: translateY(-2px); }

.btn-lg { font-size: 1.4rem; padding: 18px 40px; }

/* ---------- Navigation ---------- */
.nav { position: sticky; top: 0; z-index: 1000; background: #0A0A0A; border-bottom: 1px solid #1f1f1f; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #FFFFFF; font-weight: 400; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.5px; }
.nav-links a:hover, .nav-links a.active { color: #FF6B00; }

.nav-toggle { display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 22px; background: none; border: none; cursor: pointer; z-index: 1100; }
.nav-toggle span { display: block; height: 3px; width: 100%; background: #FFFFFF; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: #0A0A0A; text-align: center; padding: 92px 0 76px; background-image: radial-gradient(circle at 50% 0%, rgba(255,107,0,0.12), transparent 60%); }
.hero h1 { margin-bottom: 18px; max-width: 920px; margin-left: auto; margin-right: auto; }
.hero .subhead { font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: #B3B3B3; max-width: 740px; margin: 0 auto 28px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.hero-note { color: #B3B3B3; font-size: 0.95rem; }
.trust-badges { color: #FFFFFF; font-size: 1.05rem; margin-bottom: 26px; letter-spacing: 0.5px; }

/* ---------- Cards / Services Strip ---------- */
.card { background: #1A1A1A; border-top: 3px solid #FF6B00; border-radius: 8px; padding: 28px 24px; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.service-card .icon { font-size: 2.6rem; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: #B3B3B3; margin-bottom: 16px; font-size: 0.98rem; }
.service-card .learn-more { color: #FF6B00; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 1px; }

/* ---------- Why / Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar { background: #1A1A1A; border-radius: 8px; padding: 28px 22px; text-align: center; }
.pillar .check { font-size: 1.6rem; margin-bottom: 12px; }
.pillar h3 { color: #FF6B00; margin-bottom: 10px; }
.pillar p { color: #B3B3B3; font-size: 0.95rem; }

/* ---------- How It Works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { text-align: center; padding: 24px; }
.step .num { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: #FF6B00; line-height: 1; margin-bottom: 8px; }
.step h3 { margin-bottom: 8px; }
.step p { color: #B3B3B3; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: #1A1A1A; border-top: 3px solid #FF6B00; border-radius: 8px; padding: 28px 24px; }
.testimonial .stars { color: #FF6B00; font-size: 1.2rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial .quote { font-style: italic; margin-bottom: 16px; color: #e6e6e6; }
.testimonial .author { color: #B3B3B3; font-size: 0.9rem; }

/* ---------- Google Review Banner ---------- */
.review-banner { background: #FF6B00; text-align: center; }
.review-banner p { color: #FFFFFF; font-size: clamp(1.1rem, 2.4vw, 1.4rem); max-width: 760px; margin: 0 auto 24px; }

/* ---------- Service Areas ---------- */
.area-grid { text-align: center; max-width: 880px; margin: 0 auto; }
.area-tag { display: inline-block; background: #1A1A1A; border: 1px solid #333333; padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; margin: 4px; }
.area-note { text-align: center; color: #B3B3B3; margin-top: 26px; font-size: 1.05rem; }

/* ---------- Services Covered Grid (service pages) ---------- */
.covered-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.covered-item { background: #1A1A1A; border-left: 3px solid #FF6B00; border-radius: 6px; padding: 18px 20px; font-size: 1.02rem; font-weight: 400; }

/* ---------- Pricing Table ---------- */
.pricing-wrap { max-width: 720px; margin: 0 auto; }
.pricing-table { width: 100%; border-collapse: collapse; background: #1A1A1A; border-radius: 8px; overflow: hidden; }
.pricing-table tr { border-bottom: 1px solid #2A2A2A; }
.pricing-table tr:last-child { border-bottom: none; }
.pricing-table td { padding: 14px 20px; font-size: 1.05rem; }
.pricing-table td:last-child { color: #FF6B00; font-weight: 600; text-align: right; white-space: nowrap; }
.pricing-note { text-align: center; color: #B3B3B3; margin-top: 20px; font-size: 0.98rem; }

/* ---------- Photo Grid ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.photo-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; background: #1A1A1A; border: 1px solid #2a2a2a; }

/* ---------- Forms ---------- */
input, select, textarea { width: 100%; padding: 12px 16px; background: #1A1A1A; border: 1px solid #333333; color: #FFFFFF; font-family: 'Oswald', sans-serif; font-size: 1rem; border-radius: 4px; margin-bottom: 16px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: #FF6B00; }
textarea { min-height: 120px; resize: vertical; }
select option { background: #1A1A1A; }
.form-label { display: block; margin-bottom: 6px; font-size: 0.95rem; color: #dddddd; }

.enquiry-form { max-width: 620px; margin: 0 auto; background: #1A1A1A; padding: 36px; border-radius: 8px; border-top: 3px solid #FF6B00; }
.enquiry-form .btn-whatsapp { width: 100%; }
.form-footnote { text-align: center; color: #888; margin-top: 14px; font-size: 0.9rem; }

/* ---------- Contact Page ---------- */
.contact-top { text-align: center; margin-bottom: 40px; }
.contact-top .sub { color: #B3B3B3; margin-top: 10px; }
.contact-details { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 48px; }
.contact-detail { background: #1A1A1A; border-radius: 8px; padding: 22px 28px; font-size: 1.1rem; min-width: 240px; text-align: center; }
.contact-detail a:hover { color: #FF6B00; }
.response-note { max-width: 620px; margin: 40px auto 0; text-align: center; color: #B3B3B3; }
.response-note p { margin-bottom: 6px; }
.review-section { text-align: center; margin-top: 56px; }
.review-section p { color: #B3B3B3; max-width: 620px; margin: 12px auto 24px; }

/* ---------- Bottom CTA ---------- */
.cta-strip { text-align: center; background: #1A1A1A; border-top: 3px solid #FF6B00; border-radius: 8px; padding: 48px 24px; max-width: 820px; margin: 0 auto; }
.cta-strip h2 { margin-bottom: 24px; }

/* ---------- Footer ---------- */
.footer { background: #0A0A0A; border-top: 1px solid #1f1f1f; padding-top: 56px; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #FF6B00; margin-bottom: 8px; }
.footer .tagline { color: #FFFFFF; font-size: 1.1rem; margin-bottom: 14px; }
.footer-copy { color: #888; font-size: 0.9rem; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; margin-bottom: 16px; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #B3B3B3; }
.footer-col ul li a:hover { color: #FF6B00; }
.footer-col .contact-line { color: #B3B3B3; margin-bottom: 10px; }
.footer-col .contact-line a:hover { color: #FF6B00; }
.footer-bottom { border-top: 1px solid #1f1f1f; padding: 22px 0; text-align: center; color: #888; font-size: 0.88rem; line-height: 1.7; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #1A1A1A; border-radius: 8px; margin-bottom: 14px; overflow: hidden; }
.faq-q { width: auto; text-align: left; background: none; border: none; color: #FFFFFF; font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 1.12rem; padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; margin: 0; width: 100%; }
.faq-q::after { content: '+'; color: #FF6B00; font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 24px; color: #B3B3B3; }
.faq-item.open .faq-a { max-height: 420px; padding: 0 24px 22px; }

/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 9999; box-shadow: 0 4px 12px rgba(0,0,0,0.4); animation: pulse 2s infinite; }
.whatsapp-float svg { width: 32px; height: 32px; fill: #FFFFFF; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Fade-in animation ---------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  section { padding: 52px 0; }
  .hero { padding: 60px 0 52px; }

  .nav-toggle { display: flex; }
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: 100%; background: #0A0A0A; flex-direction: column; justify-content: center; gap: 32px; transform: translateX(100%); transition: transform 0.3s ease; }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 1.6rem; }

  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .covered-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary, .hero-ctas .btn-whatsapp { width: 100%; }

  .whatsapp-float { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .covered-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .enquiry-form { padding: 24px; }
}

/* ---------- Live Google Reviews ---------- */
.google-reviews-section { padding: 80px 0; }
.google-reviews-section h2 { text-align: center; margin-bottom: 32px; }
.rating-summary { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.overall-rating-number { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: #FF6B00; line-height: 1; }
.rating-stars { color: #FF6B00; font-size: 1.5rem; }
.total-reviews-count { color: #888888; font-size: 0.9rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { border-top: 3px solid #FF6B00; }
.reviewer-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.reviewer-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.reviewer-initial { width: 48px; height: 48px; border-radius: 50%; background: #FF6B00; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #000; }
.reviewer-name { color: #ffffff; font-weight: 600; font-size: 0.95rem; }
.review-stars { color: #FF6B00; font-size: 0.9rem; }
.review-text { color: #cccccc; font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.review-footer { display: flex; align-items: center; justify-content: space-between; }
.review-time { color: #888888; font-size: 0.8rem; }
.skeleton { height: 200px; background: linear-gradient(90deg, #1A1A1A 25%, #2A2A2A 50%, #1A1A1A 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } .rating-summary { flex-wrap: wrap; } }
