/*
Theme Name: Premium Plumber Ram
Theme URI: https://loodgieterram.nl
Author: Remco van der Schans
Author URI: https://remcovdsgraphics.nl
Description: Premium responsive plumbing theme with advanced animations and mobile-first design
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: premium-plumber-ram
*/

/* ============================================
   CSS VARIABLES - BRAND COLORS
   ============================================ */
:root {
  /* Brand Colors */
  --primary: #0049b9;           /* Main Blue */
  --secondary: #d0362a;         /* Red Accent */
  --tertiary: #010F8D;          /* Deep Blue */
  --white: #ffffff;
  --black: #000000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #a82929 100%);
  --gradient-hero: linear-gradient(120deg, var(--primary) 0%, var(--tertiary) 50%, var(--secondary) 100%);
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Spacing */
  --container-width: 1200px;
  --container-padding: 20px;
  
  /* Z-index layers */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--tertiary);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

/* Logo */
.header__logo {
  flex-shrink: 0;
  z-index: calc(var(--z-sticky) + 10);
}

.header__logo img {
  max-height: 60px;
  width: auto;
  transition: var(--transition-base);
}

.header__logo img:hover {
  transform: scale(1.05);
}

.logo-placeholder {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navigation */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--gray-700);
  font-weight: 600;
  transition: var(--transition-base);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-menu a:hover::after {
  width: 80%;
}

.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
  color: var(--primary);
}

.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
  width: 80%;
}

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.nav-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li {
  padding: 0;
}

.nav-menu .sub-menu a {
  padding: 0.75rem 1.5rem;
  display: block;
  color: var(--gray-700);
}

.nav-menu .sub-menu a:hover {
  background: var(--gray-50);
  color: var(--primary);
  padding-left: 2rem;
}

/* CTA Buttons in Header */
.header__cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: calc(var(--z-sticky) + 20);
  position: relative;
}

.hamburger {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--primary);
  position: relative;
  transition: var(--transition-base);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background: var(--primary);
  left: 0;
  transition: var(--transition-base);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn,
.hero__cta,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}

.btn::before,
.hero__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: var(--transition-slow);
  z-index: -1;
}

.btn:hover::before,
.hero__cta:hover::before {
  left: 100%;
}

/* Primary Button */
.btn--primary,
.hero__cta {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 73, 185, 0.3);
}

.btn--primary:hover,
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 73, 185, 0.4);
  color: var(--white);
}

.btn--primary:active,
.hero__cta:active {
  transform: translateY(0);
}

/* Secondary Button */
.btn--secondary {
  background: var(--gradient-secondary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(208, 54, 42, 0.3);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(208, 54, 42, 0.4);
  color: var(--white);
}

/* Outline Button */
.btn--outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* White Button */
.btn--white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: var(--primary);
}

/* Emergency/CTA Button with Pulse */
.btn--emergency {
  background: var(--secondary);
  color: var(--white);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(208, 54, 42, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(208, 54, 42, 0);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero__subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero__feature:nth-child(1) { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.hero__feature:nth-child(2) { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.hero__feature:nth-child(3) { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }

.hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero Mascot/Image */
.hero__mascot {
  text-align: center;
  animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero__mascot-img,
.mascot-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 0;
  position: relative;
}

.section--gray {
  background: var(--gray-50);
}

.section--primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.section__title {
  font-size: 2.75rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section--primary .section__title::after {
  background: var(--white);
}

.section__subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section--primary .section__subtitle {
  color: rgba(255,255,255,0.9);
}

.section__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card,
.dienst-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.dienst-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.service-card:hover,
.dienst-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before,
.dienst-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon,
.dienst-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  transition: var(--transition-base);
}

.service-card:hover .service-card__icon,
.dienst-card:hover .dienst-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card__icon img,
.dienst-card__icon img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-card__title,
.dienst-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primary);
}

.service-card__title a,
.dienst-card h3 a {
  color: inherit;
  transition: var(--transition-base);
}

.service-card__title a:hover,
.dienst-card h3 a:hover {
  color: var(--secondary);
}

.service-card__excerpt,
.dienst-card p {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card__price {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.service-card__link,
.dienst-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition-base);
}

.service-card__link:hover,
.dienst-card__link:hover {
  gap: 1rem;
  color: var(--secondary);
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition-base);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-card__rating {
  color: #ffc107;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.review-card__text {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.review-card__author {
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

/* ============================================
   USPs / FEATURES
   ============================================ */
.usps-grid,
.about__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.usp-card,
.feature-box {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition-base);
}

.usp-card:hover,
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.usp-card__icon,
.feature-box__icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  transition: var(--transition-base);
}

.usp-card:hover .usp-card__icon,
.feature-box:hover .feature-box__icon {
  transform: scale(1.15);
}

.usp-card h3,
.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.usp-card p,
.feature-box p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner,
.cta-section {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.cta-banner__title,
.cta__title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.cta-banner__text,
.cta__text {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-banner__actions,
.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 0 1.5rem;
  position: relative;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-700);
}

.footer__widget h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
}

.footer__widget ul {
  list-style: none;
}

.footer__widget ul li {
  margin-bottom: 0.75rem;
}

.footer__widget a {
  color: var(--gray-400);
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__widget a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.9rem;
}

.footer__bottom a {
  color: var(--primary);
}

.footer__bottom a:hover {
  color: var(--white);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
}

.scroll-top.visible {
  display: flex;
  animation: fadeInUp 0.3s ease-out;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --container-padding: 15px;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero__title {
    font-size: 2.75rem;
  }
  
  .section__title {
    font-size: 2.25rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Hide desktop nav */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
    z-index: var(--z-modal);
  }
  
  .header__nav.active {
    right: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
  }
  
  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .nav-menu a {
    display: block;
    padding: 1.25rem;
    color: var(--white);
    font-size: 1.3rem;
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-base);
  }
  
  .nav-menu .menu-item-has-children.open .sub-menu {
    max-height: 500px;
  }
  
  .nav-menu .sub-menu a {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }
  
  /* Show mobile toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop CTA on mobile */
  .header__cta {
    display: none;
  }
  
  /* Hero mobile */
  .hero {
    padding: 3rem 0;
  }
  
  .hero__title {
    font-size: 2rem;
    text-align: center;
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero__features {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Sections mobile */
  .section {
    padding: 3rem 0;
  }
  
  .section__title {
    font-size: 1.875rem;
  }
  
  .section__subtitle {
    font-size: 1rem;
  }
  
  /* Grids mobile */
  .services-grid,
  .reviews-grid,
  .usps-grid,
  .about__features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Footer mobile */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Buttons mobile */
  .btn,
  .hero__cta {
    width: 100%;
    justify-content: center;
  }
  
  /* CTA Banner mobile */
  .cta-banner__title,
  .cta__title {
    font-size: 2rem;
  }
  
  .cta-banner__actions,
  .cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .hero__title {
    font-size: 1.75rem;
  }
  
  .section__title {
    font-size: 1.625rem;
  }
  
  .btn,
  .hero__cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Add animation classes */
.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-scale {
  animation: scaleIn 0.5s ease-out;
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   MOBILE MENU FIXES - APPEND TO style.css
   ============================================ */

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Menu Submenu */
.mobile-menu .sub-menu {
    display: none;
    padding-left: 20px;
}

.mobile-menu .menu-item-has-children.open > .sub-menu {
    display: block;
}

.mobile-menu .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu .sub-menu a {
    font-size: 1rem !important;
    padding: 12px 0 !important;
    opacity: 0.9;
}

.mobile-menu .menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 0.8em;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.mobile-menu .menu-item-has-children.open > a::after {
    transform: rotate(180deg);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0049b9, #010F8D);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,73,185,0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,73,185,0.4);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 73, 185, 0.4);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0049b9, #010F8D);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 73, 185, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 73, 185, 0.5);
}

/* Prevent body scroll when mobile menu open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #0049b9;
    transition: all 0.3s;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0049b9, #010F8D);
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding: 80px 20px 20px;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.mobile-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-mobile {
    padding: 1rem;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

.btn-phone {
    background: white;
    color: #0049b9;
}

.btn-primary {
    background: #d0362a;
    color: white;
}

@media (max-width: 768px) {
    .desktop-nav,
    .desktop-cta {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 73, 185, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 73, 185, 0.4);
}

/* Header Scrolled State */
.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}