/* ===== 247 Plumbing Edinburgh — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #002855;
  --navy-dark: #001a3a;
  --navy-light: #003d7a;
  --orange: #FF6200;
  --orange-dark: #e05500;
  --orange-light: #ff8533;
  --trust-green: #2E7D32;
  --trust-green-light: #4CAF50;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --mid-gray: #E0E4EA;
  --text-gray: #6B7280;
  --dark: #1A1A2E;
  --red: #DC2626;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.15);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.2);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: .3s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--dark); line-height: 1.6; background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy-dark); color: rgba(255,255,255,.7); padding: 8px 0; font-size: .8rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.05); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-info { display: flex; gap: 20px; }
.top-info span { display: flex; align-items: center; gap: 6px; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: all var(--transition); }
.header.scrolled, body:not(.home) .header { background: var(--navy-dark); backdrop-filter: blur(15px); box-shadow: var(--shadow-lg); padding: 8px 0; }
.header:not(.scrolled):not(.home-header) { background: var(--navy-dark); }
.home .header:not(.scrolled) { background: transparent; padding: 20px 0; }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.logo-icon { width: 44px; height: 44px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; transition: all .4s ease; box-shadow: 0 4px 15px rgba(255,98,0,.3); }
.logo:hover .logo-icon { transform: rotate(15deg) scale(1.1); box-shadow: 0 6px 20px rgba(255,98,0,.4); }
.logo-text { color: var(--white); font-weight: 800; font-size: 1.15rem; line-height: 1.1; }
.logo-text span { color: var(--orange); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { color: var(--white); font-weight: 600; font-size: .95rem; position: relative; padding: 5px 0; }
.nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--orange); transition: var(--transition); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover { color: var(--orange); }

.header-phone { display: flex; align-items: center; gap: 8px; background: var(--orange); color: var(--white); padding: 10px 22px; border-radius: 50px; font-weight: 800; font-size: 1.05rem; transition: all var(--transition); box-shadow: 0 4px 15px rgba(255,98,0,.3); white-space: nowrap; flex-shrink: 0; }
.header-phone:hover { background: var(--orange-dark); transform: scale(1.02); box-shadow: 0 6px 20px rgba(255,98,0,.4); }
.header-phone svg { width: 20px; height: 20px; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 30px; height: 3px; background: var(--white); border-radius: 3px; transition: all .4s cubic-bezier(0.68, -0.6, 0.32, 1.6); }
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; background: linear-gradient(135deg, rgba(0,28,58,.92), rgba(0,40,85,.85)), url('../images/hero-bg.png') center/cover no-repeat; }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,98,0,.15); border: 1px solid rgba(255,98,0,.3); color: var(--orange); padding: 8px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600; margin-bottom: 20px; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--trust-green-light); border-radius: 50%; animation: blink 1.5s infinite; }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--orange); }
.hero-sub { color: rgba(255,255,255,.85); font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.7; margin-bottom: 32px; max-width: 600px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 1.05rem; cursor: pointer; border: none; transition: all var(--transition); font-family: var(--font); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 20px rgba(255,98,0,.4); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255,98,0,.5); }
.btn-secondary { background: rgba(255,255,255,.1); color: var(--white); border: 2px solid rgba(255,255,255,.3); }
.btn-secondary:hover { background: rgba(255,255,255,.2); border-color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-sm { padding: 12px 24px; font-size: .95rem; }

/* Catchy Quote Button */
.btn-quote-pulsing { 
  display: inline-flex; 
  align-items: center; 
  gap: 12px; 
  padding: 16px 36px; 
  background: linear-gradient(135deg, var(--orange), #FFD700); 
  color: var(--white); 
  border-radius: 50px; 
  font-weight: 800; 
  font-size: 1.1rem; 
  box-shadow: 0 10px 30px rgba(255,98,0,0.4); 
  transition: all .3s ease; 
  animation: pulse-quote 2.5s infinite;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-quote-pulsing:hover { 
  transform: translateY(-3px) scale(1.05); 
  box-shadow: 0 15px 40px rgba(255,98,0,0.6); 
  color: var(--white);
}
.btn-quote-pulsing svg { width: 24px; height: 24px; }

@keyframes pulse-quote {
  0% { transform: scale(1); box-shadow: 0 10px 30px rgba(255,98,0,0.4); }
  50% { transform: scale(1.03); box-shadow: 0 15px 45px rgba(255,98,0,0.6); }
  100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255,98,0,0.4); }
}

/* Trust Row */
.trust-row { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 500; }
.trust-item .icon { width: 40px; height: 40px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-gray { background-color: var(--light-gray); background-image: linear-gradient(rgba(0, 40, 85, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 40, 85, 0.03) 1px, transparent 1px); background-size: 20px 20px; }
.section-navy { background: var(--navy); color: var(--white); }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 50px; }
.section-label { display: inline-block; background: rgba(255,98,0,.1); color: var(--orange); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 16px; border-radius: 50px; margin-bottom: 14px; }
.section-navy .section-label { background: rgba(255,98,0,.2); }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.section-header p { color: var(--text-gray); font-size: 1.05rem; }
.section-navy .section-header p { color: rgba(255,255,255,.7); }

/* ===== WHY CHOOSE US ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--mid-gray); transition: all var(--transition); }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.benefit-card .icon { width: 56px; height: 56px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); }
.benefit-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.benefit-card p { color: var(--text-gray); font-size: .92rem; line-height: 1.6; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.service-card { 
  background: var(--white); 
  border-radius: 24px; 
  padding: 40px 30px; 
  text-decoration: none; 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  border: 1px solid rgba(0,0,0,0.05); 
  border-top: 5px solid var(--orange);
  position: relative; 
  overflow: hidden; 
  display: flex; 
  flex-direction: column; 
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 40, 85, 0.03) 2px, transparent 0);
  background-size: 20px 20px;
  z-index: 0;
  opacity: 0.5;
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(255, 98, 0, 0.15);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: 50%;
}

.service-card:hover::after {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  border-radius: 0;
}

.service-card-icon { 
  width: 64px; 
  height: 64px; 
  background: rgba(0,40,85,0.05); 
  border-radius: 16px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 24px; 
  transition: all 0.4s ease; 
  position: relative; 
  z-index: 1; 
  padding: 12px;
}
.service-card-icon svg { width: 40px; height: 40px; transition: all 0.4s ease; }

.service-card:hover .service-card-icon { 
  background: var(--white); 
  transform: rotate(12deg) scale(1.1); 
  box-shadow: 0 5px 15px rgba(0, 114, 255, 0.2);
}
.service-card:hover .service-card-icon svg { filter: none; }

.service-card-body { position: relative; z-index: 1; transition: all 0.4s ease; display: flex; flex-direction: column; flex-grow: 1; }
.service-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; line-height: 1.3; color: var(--navy); transition: all .4s ease; letter-spacing: -0.02em; }
.service-card p { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 20px; line-height: 1.7; transition: all 0.4s ease; flex-grow: 1; }

.service-card:hover h3 { color: var(--orange); }
.service-card:hover p { color: var(--text-gray); }

.service-link { 
  color: var(--orange); 
  font-weight: 700; 
  font-size: .9rem; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  transition: all .3s ease;
  position: relative;
  z-index: 1;
}
.service-link::after { content: '→'; transition: transform .3s ease; }
.service-card:hover .service-link { color: var(--orange); }
.service-card:hover .service-link::after { transform: translateX(5px); }

/* Ensure all card content sits above pseudo-element overlays */
.service-card > * { position: relative; z-index: 1; }
.service-card img { position: relative; z-index: 1; display: block; }

@media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* Authority Wrapper */
.authority-wrapper { margin-top: -60px; position: relative; z-index: 100; }

.trust-logos-glass { 
  background: rgba(255, 255, 255, 0.9); 
  backdrop-filter: blur(15px); 
  -webkit-backdrop-filter: blur(15px); 
  padding: 30px; 
  border-radius: 20px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.12); 
  border: 1px solid rgba(255,255,255,0.4); 
  max-width: 960px; 
  margin: 0 auto 40px; 
}
.logos-flex { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 50px; }
.logo-item { flex: 0 0 auto; }
.logo-item img { height: 45px; width: auto; max-width: 180px; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: all .4s ease; }
.logo-item:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.08); }

/* Premium Trust Bar */
.trust-bar-premium { padding-bottom: 60px; }
.trust-grid-new { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card-new { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  background: var(--white); 
  padding: 24px; 
  border-radius: 16px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); 
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.03);
}
.trust-card-new:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

.icon-wrapper { 
  width: 52px; 
  height: 52px; 
  border-radius: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  transition: all .3s ease;
}
.icon-wrapper svg { width: 28px; height: 28px; }

.icon-wrapper.orange { background: rgba(255,98,0,0.1); color: var(--orange); }
.icon-wrapper.green { background: rgba(37,211,102,0.1); color: #25D366; }
.icon-wrapper.navy { background: rgba(0,40,85,0.1); color: var(--navy); }
.icon-wrapper.red { background: rgba(220,38,38,0.1); color: #dc2626; }

.trust-card-new:hover .icon-wrapper.orange { background: var(--orange); color: var(--white); transform: rotate(10deg); }
.trust-card-new:hover .icon-wrapper.green { background: #25D366; color: var(--white); transform: rotate(10deg); }
.trust-card-new:hover .icon-wrapper.navy { background: var(--navy); color: var(--white); transform: rotate(10deg); }
.trust-card-new:hover .icon-wrapper.red { background: #dc2626; color: var(--white); transform: rotate(10deg); }

.card-text h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; color: var(--navy); }
.card-text p { font-size: 0.85rem; color: var(--text-gray); line-height: 1.4; margin: 0; }

@media (max-width: 1024px) {
  .trust-grid-new { grid-template-columns: repeat(2, 1fr); }
  .authority-wrapper { margin-top: -40px; }
}
@media (max-width: 640px) {
  .trust-grid-new { grid-template-columns: 1fr; }
  .trust-logos-glass { padding: 20px; }
  .logo-item img { height: 30px; }
}

/* ===== CONTENT & CONTACT GRIDS ===== */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; padding-top: 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; padding-top: 40px; }

/* ===== AREAS ===== */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-tag { background: var(--white); padding: 12px 18px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500; text-align: center; border: 1px solid var(--mid-gray); transition: all var(--transition); }
.area-tag:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: scale(1.05); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; transition: all var(--transition); }
.testimonial-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.stars { color: #FBBF24; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: .95rem; line-height: 1.7; color: rgba(255,255,255,.85); margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: .9rem; }
.author-info { font-size: .85rem; }
.author-info strong { display: block; color: var(--white); }
.author-info span { color: rgba(255,255,255,.6); }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: rgba(255,255,255,.08); border-radius: 50%; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 28px; }
.cta-banner .btn-primary { background: var(--white); color: var(--orange); box-shadow: var(--shadow-lg); }
.cta-banner .btn-primary:hover { background: var(--navy); color: var(--white); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--mid-gray); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: var(--white); }
.faq-question { width: 100%; padding: 18px 24px; background: none; border: none; font-family: var(--font); font-size: 1rem; font-weight: 600; color: var(--dark); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all var(--transition); }
.faq-question:hover { color: var(--orange); }
.faq-question .arrow { transition: transform var(--transition); font-size: 1.2rem; }
.faq-item.active .faq-question .arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 24px 18px; color: var(--text-gray); font-size: .95rem; line-height: 1.7; }

/* ===== ENHANCED FOOTER ===== */
.footer-enhanced { background: var(--navy-dark); color: var(--white); }

/* Footer CTA Strip */
.footer-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.footer-cta-text h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.footer-cta-text p { color: rgba(255,255,255,0.7); font-size: 1rem; }
.footer-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer Main */
.footer-main { padding: 60px 0 40px; }
.footer-grid-enhanced { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 50px; }

/* Footer Brand Column */
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-brand .logo-icon { width: 44px; height: 44px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.footer-brand .logo-text { font-weight: 800; font-size: 1.1rem; line-height: 1.1; }
.footer-brand .logo-text span { color: var(--orange); }
.footer-desc { color: rgba(255,255,255,0.6); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); padding: 8px 14px; border-radius: 50px; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,0.8); transition: all .3s ease; }
.footer-badge:hover { background: rgba(255,98,0,0.15); border-color: rgba(255,98,0,0.3); color: var(--orange); }
.footer-badge svg { stroke: var(--orange); }

/* Footer Link Columns */
.footer-links-col h4, .footer-contact-col h4 { font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 18px; position: relative; padding-bottom: 12px; }
.footer-links-col h4::after, .footer-contact-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--orange); border-radius: 2px; }
.footer-links-col a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); font-size: .9rem; margin-bottom: 10px; transition: all .3s ease; padding: 2px 0; }
.footer-links-col a:hover { color: var(--orange); transform: translateX(5px); }

/* Footer Contact Column */
.footer-contact-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,0.6); font-size: .9rem; }
.footer-contact-row svg { stroke: var(--orange); }
.footer-contact-row a { color: rgba(255,255,255,0.8); transition: color .3s ease; }
.footer-contact-row a:hover { color: var(--orange); }

/* Working Hours Widget */
.footer-hours { margin-top: 8px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: .85rem; color: rgba(255,255,255,0.6); }
.hours-badge { font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.hours-badge.open { background: rgba(37,211,102,0.15); color: #25D366; }

/* Google Reviews Link */
.footer-review-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--orange); font-weight: 600; font-size: .88rem; transition: all .3s ease; }
.footer-review-link:hover { color: #FBBF24; transform: translateX(3px); }

/* Footer Bottom */
.footer-bottom-enhanced { background: rgba(0,0,0,0.2); padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom-inner p { color: rgba(255,255,255,0.4); font-size: .82rem; }
.footer-bottom-links { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color .3s ease; }
.footer-bottom-links a:hover { color: var(--orange); }
.footer-bottom-links .sep { opacity: 0.3; }

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-grid-enhanced { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .footer-grid-enhanced { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-links-col h4::after, .footer-contact-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-links-col h4, .footer-contact-col h4 { text-align: center; }
  .footer-links-col a { justify-content: center; }
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--orange); padding: 12px 20px; z-index: 999; box-shadow: 0 -4px 20px rgba(0,0,0,.2); }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--white); font-weight: 800; font-size: 1.1rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 120px 0 0; background: var(--navy); }
.breadcrumb-list { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: rgba(255,255,255,.6); padding: 16px 0; }
.breadcrumb-list a { color: rgba(255,255,255,.7); }
.breadcrumb-list a:hover { color: var(--orange); }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 60px 0 50px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== SERVICE PAGE CONTENT ===== */
.service-content { padding: 60px 0; }
.service-content h2 { font-size: 1.6rem; font-weight: 700; margin: 32px 0 14px; color: var(--navy); }
.service-content h3 { font-size: 1.2rem; font-weight: 600; margin: 24px 0 10px; }
.service-content p { color: var(--text-gray); font-size: 1rem; line-height: 1.7; margin-bottom: 16px; }
.service-content ul { margin: 0 0 20px 20px; }
.service-content ul li { color: var(--text-gray); font-size: .95rem; margin-bottom: 8px; padding-left: 8px; position: relative; list-style: none; }
.service-content ul li::before { content: '✓'; color: var(--trust-green); font-weight: 700; position: absolute; left: -16px; }

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 16px; border: 2px solid var(--mid-gray); border-radius: var(--radius-sm); font-family: var(--font); font-size: .95rem; transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== ANIMATIONS ===== */
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(255,98,0,.4); } 50% { box-shadow: 0 0 0 10px rgba(255,98,0,0); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0px); } }
@keyframes rise { 0% { transform: translateY(0) scale(1); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100vh) scale(1.5); opacity: 0; } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all .6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Floating icons on hover */
.benefit-card:hover .icon, .trust-card:hover .icon { animation: float 2s ease-in-out infinite; }

/* ===== 3D PIPES ANIMATION ===== */
.pipes-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 1; pointer-events: none; opacity: 0.3; }
.pipes-container canvas { display: block; width: 100%; height: 100%; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); z-index: 2000; transition: all .3s ease; animation: pulse-whatsapp 2s infinite; }
.whatsapp-float svg { width: 34px; height: 34px; }
.whatsapp-float:hover { transform: scale(1.1); background: #1da851; }
.whatsapp-tooltip { position: absolute; right: 75px; background: var(--navy); color: white; padding: 8px 16px; border-radius: 8px; font-size: .85rem; font-weight: 600; white-space: nowrap; opacity: 0; visibility: hidden; transition: .3s ease; pointer-events: none; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; right: 85px; }
@keyframes pulse-whatsapp { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); } 70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ===== COOKIE CONSENT POPUP ===== */
.cookie-consent { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--navy-dark); color: white; padding: 25px 0; z-index: 2000; transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6); box-shadow: 0 -10px 30px rgba(0,0,0,0.3); border-top: 3px solid var(--orange); }
.cookie-consent.visible { bottom: 0; }
.cookie-consent .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cookie-text { font-size: 0.9rem; line-height: 1.5; max-width: 800px; }
.cookie-text a { color: var(--orange); text-decoration: underline; }
.cookie-btns { display: flex; gap: 15px; flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { gap: 15px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .header:not(.scrolled) { padding: 12px 0; background: var(--navy); }
  .nav { position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: var(--navy-dark); flex-direction: column; justify-content: center; align-items: center; gap: 40px; z-index: 1000; transition: all .4s ease; box-shadow: -10px 0 30px rgba(0,0,0,.3); }
  .nav.open { right: 0; }
  .nav a { font-size: 1.5rem; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .mobile-cta { display: block; }
  .benefits-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding: 140px 0 100px; }
  .trust-row { gap: 16px; }
  body { padding-bottom: 60px; }
  .whatsapp-float { bottom: 85px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
  .trust-logos .container { gap: 30px; }
  .trust-logos img { height: 35px; }
  .cookie-consent .container { flex-direction: column; text-align: center; gap: 20px; }
  .cookie-btns { width: 100%; justify-content: center; }
  .cookie-btns .btn { flex: 1; padding: 12px; font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}
