/*
Theme Name: Potter Electric
Theme URI: https://potterelectricinc.com
Author: Potter Electric Company Inc.
Author URI: https://potterelectricinc.com
Description: Professional WordPress theme for Potter Electric Company Inc. - Licensed electricians serving Rancho Cucamonga and surrounding areas. Fully compatible with Elementor page builder for easy visual editing of all pages.
Version: 3.2026
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: potter-electric
Tags: custom-menu, custom-logo, featured-images, full-width-template, one-column, two-columns, theme-options, elementor

Potter Electric - Professional Electrical Services Theme
Designed for Potter Electric Company Inc.
*/

/* ============================================
   POTTER ELECTRIC - CUTTING EDGE DESIGN 2025
   ============================================ */

/* --- CSS Variables --- */
:root {
  --primary: #4a5a3c;
  --primary-light: #5a6b4a;
  --primary-dark: #3a4a2e;
  --accent: #6b7f58;
  --accent-glow: rgba(107, 127, 88, 0.4);
  --accent2: #a8b89a;
  --neon: #7a9462;
  --neon-glow: 0 0 10px rgba(107,127,88,0.3), 0 0 40px rgba(107,127,88,0.1);
  --bg-dark: #0a0a0a;
  --bg-section: #0e0e0e;
  --bg-card: #151515;
  --bg-card-hover: #1c1c1c;
  --text: #e8e8e8;
  --text-muted: #a0a0a0;
  --text-heading: #ffffff;
  --border: rgba(255,255,255,0.08);
  --glass: rgba(15, 15, 15, 0.75);
  --glass-border: rgba(107, 127, 88, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-glow: 0 8px 32px rgba(107,127,88,0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Top Bar --- */
.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1001;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left span { margin: 0 8px; opacity: 0.4; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar-right a { color: rgba(255,255,255,0.85); font-size: 13px; }
.top-bar-right a:hover { color: #fff; }
.btn-top {
  background: rgba(255,255,255,0.15);
  padding: 4px 14px;
  border-radius: 6px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.btn-top:hover { background: rgba(255,255,255,0.25); }

/* --- Navbar --- */
.navbar {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: var(--text);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: #fff; background: rgba(255,255,255,0.05); }
.nav-links > li > a .arrow { font-size: 10px; transition: var(--transition-fast); }
.nav-links > li:hover > a .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow);
  z-index: 1000;
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: var(--transition-fast);
}
.dropdown a:hover { background: rgba(107,127,88,0.1); color: #fff; }
.dropdown a i { width: 20px; text-align: center; color: var(--accent); }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { box-shadow: var(--neon-glow); transform: translateY(-1px); }

/* Mobile Toggle */
.mobile-toggle { display: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition-fast);
  border-radius: 2px;
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(107,127,88,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(74,90,60,0.1) 0%, transparent 50%),
              linear-gradient(180deg, var(--bg-dark) 0%, #080808 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,127,88,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,127,88,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; transform: scale(1); }
  90% { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-400px) scale(0); }
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(107,127,88,0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.5; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 0.8; }
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(107,127,88,0.1);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent2);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-heading);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero .highlight {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 15px rgba(107,127,88,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--neon-glow);
  color: #fff;
}
.btn-outline {
  border: 1px solid var(--glass-border);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(107,127,88,0.05);
  color: #fff;
}

/* --- Google Reviews Banner --- */
.google-reviews-banner {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.google-reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.google-reviews-badge {
  display: flex;
  align-items: center;
  gap: 16px;
}
.google-icon { width: 36px; height: 36px; }
.google-rating-score {
  display: flex;
  align-items: center;
  gap: 10px;
}
.google-rating-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-heading);
}
.google-rating-stars { display: flex; gap: 2px; }
.google-rating-stars .star { color: #FBBC05; font-size: 16px; }
.google-rating-stars .star.empty { color: #444; }
.google-review-count {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.google-reviews-live-dot {
  width: 6px;
  height: 6px;
  background: #34A853;
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}
.google-reviews-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.google-reviews-text .tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}
.google-reviews-text .sub {
  font-size: 13px;
  color: var(--text-muted);
}
.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(107,127,88,0.1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--accent2);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.google-review-btn:hover {
  background: rgba(107,127,88,0.2);
  color: #fff;
}

/* --- Stats Bar --- */
.stats-bar {
  padding: 40px 0;
  background: var(--bg-dark);
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent2);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Section Headers --- */
.section-header { margin-bottom: 50px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,127,88,0.1);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* --- Services Section --- */
.services-section {
  padding: 80px 0;
  background: var(--bg-section);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  display: block;
  color: var(--text);
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
  color: var(--text);
}
.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(107,127,88,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--accent);
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.card-arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.service-card:hover .card-arrow { color: #fff; gap: 10px; }

/* --- Why Section --- */
.why-section {
  padding: 80px 0;
  background: var(--bg-dark);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-2px);
}
.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(107,127,88,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Process Section --- */
.process-section {
  padding: 80px 0;
  background: var(--bg-section);
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.process-step:hover {
  border-color: var(--glass-border);
  transform: translateY(-2px);
}
.process-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Testimonials --- */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-dark);
}
.testimonials-slider {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}
.testimonial-card-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FBBC05;
  font-size: 16px;
}
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.testimonial-author-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}
.testimonial-author-info p {
  font-size: 13px;
  color: var(--text-muted);
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}
.testimonial-dot.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.8;
  position: relative;
}
.cta-banner .btn-primary {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  position: relative;
}
.cta-banner .btn-primary:hover {
  background: rgba(255,255,255,0.25);
}

/* --- Contact Section --- */
.contact-section {
  padding: 80px 0;
  background: var(--bg-section);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(107,127,88,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 2px;
}
.contact-detail p, .contact-detail a {
  font-size: 14px;
  color: var(--text-muted);
}
.contact-detail a:hover { color: var(--accent); }

/* --- Contact Form --- */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  margin-bottom: 12px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  transition: var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(107,127,88,0.1);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--bg-card); color: var(--text); }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--neon-glow);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* --- Contact Page --- */
.contact-page-section {
  padding: 60px 0 80px;
  background: var(--bg-dark);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* --- Service Pages --- */
.service-hero {
  padding: 60px 0 40px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}
.service-hero .section-label { margin-bottom: 16px; }
.service-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.service-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* Service Layout */
.service-layout {
  padding: 60px 0 80px;
  background: var(--bg-dark);
}
.service-layout .container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.service-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 32px 0 14px;
}
.service-content h2:first-child { margin-top: 0; }
.service-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Check List */
.check-list { margin: 16px 0 28px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text);
  font-size: 15px;
}
.check-list li i { color: var(--accent); font-size: 14px; }

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--glass-border); }
.feature-item i {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 12px;
}
.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Sidebar */
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: var(--transition-fast);
}
.sidebar-links a:hover, .sidebar-links a.active {
  background: rgba(107,127,88,0.1);
  color: #fff;
}
.sidebar-links a i { width: 18px; text-align: center; color: var(--accent); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-bottom: 16px;
}
.sidebar-cta i { font-size: 28px; color: var(--accent2); margin-bottom: 12px; }
.sidebar-cta h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.sidebar-cta .btn { width: 100%; justify-content: center; }
.sidebar-reviews { text-align: center; }
.sidebar-reviews .stars { color: #FBBC05; font-size: 18px; margin-bottom: 8px; }
.sidebar-reviews p { font-size: 14px; color: var(--text-muted); }

/* City Services Grid */
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 28px;
}
.city-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
  display: block;
  color: var(--text);
  text-decoration: none;
}
.city-service-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-2px);
  color: var(--text);
}
.city-service-card i {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 10px;
}
.city-service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.city-service-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Areas Section */
.areas-section {
  padding: 60px 0;
  background: var(--bg-section);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  display: block;
  color: var(--text);
  text-decoration: none;
}
.area-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-2px);
  color: var(--text);
}
.area-card i { color: var(--accent); margin-bottom: 8px; font-size: 18px; }
.area-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--text-heading); }

/* --- Reviews Page --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 40px 0 60px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover { border-color: var(--glass-border); }
.review-card .stars {
  color: #FBBC05;
  font-size: 16px;
  margin-bottom: 14px;
}
.review-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.review-author h4 { font-size: 14px; font-weight: 600; color: var(--text-heading); }
.review-author span { font-size: 13px; color: var(--text-muted); }

/* --- About Page --- */
.about-grid { display: grid; gap: 24px; }
.guarantee-box {
  background: linear-gradient(135deg, rgba(107,127,88,0.08), rgba(74,90,60,0.05));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  margin-top: 32px;
}
.guarantee-icon { font-size: 36px; color: var(--accent); margin-bottom: 16px; }
.guarantee-box h2 { margin-top: 0; }

/* --- Footer --- */
.footer {
  background: var(--bg-section);
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.footer-social a:hover {
  background: rgba(107,127,88,0.1);
  border-color: var(--glass-border);
  color: var(--accent);
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 14px; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--accent); }

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); border-color: var(--accent); color: #fff; }

/* --- Call Now Float --- */
.call-now-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 12px 20px;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: 0 8px 32px rgba(107,127,88,0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  text-decoration: none;
}
.call-now-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.call-now-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(107,127,88,0.4);
  color: #fff;
}
.call-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-text { font-weight: 700; font-size: 15px; }
.call-subtext { font-size: 12px; opacity: 0.85; }

/* --- Scroll Reveal Animations --- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* --- Form Messages --- */
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-message.success {
  background: rgba(52, 168, 83, 0.1);
  border: 1px solid rgba(52, 168, 83, 0.3);
  color: #34A853;
  display: block;
}
.form-message.error {
  background: rgba(234, 67, 53, 0.1);
  border: 1px solid rgba(234, 67, 53, 0.3);
  color: #EA4335;
  display: block;
}

/* --- Estimate Form Widget Styles --- */
.potter-estimate-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.potter-estimate-widget h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 24px;
}

/* --- WordPress Specific --- */
.wp-block-group { margin-bottom: 20px; }
.entry-content { padding: 40px 0; }
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  color: var(--text-heading);
  margin-bottom: 16px;
}
.entry-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.entry-content ul, .entry-content ol { margin-bottom: 16px; padding-left: 20px; }
.entry-content li { color: var(--text-muted); margin-bottom: 8px; }
.entry-content img { border-radius: var(--radius); }
.entry-content a { color: var(--accent); }
.entry-content a:hover { color: #fff; }

/* Elementor overrides for theme compatibility */
.elementor-page .site-main { padding: 0; }
.elementor-page .entry-content { padding: 0; }

/* WordPress admin bar adjustment */
body.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .navbar { top: 46px; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .mobile-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
    padding: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a {
    font-size: 20px;
    padding: 14px 20px;
    justify-content: center;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(20,20,20,0.9);
    border: none;
    margin: 0;
    min-width: 100%;
    text-align: center;
  }
  .dropdown.open { display: block; }
  .dropdown a { justify-content: center; }
  .nav-cta { margin-top: 16px; }
  .service-layout .container { grid-template-columns: 1fr; }
  .contact-grid, .contact-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .city-services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .google-reviews-inner { flex-direction: column; text-align: center; }
  .google-reviews-badge { flex-direction: column; }
  .google-reviews-cta { flex-direction: column; }
  .hero { min-height: 70vh; padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .process-timeline { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr; }
  .call-now-float { left: 16px; right: 16px; justify-content: center; }
  .scroll-top { bottom: 90px; right: 16px; }
}
