/* ==========================================================================
   Notverglasung24 - Emergency Glazing Service Wien
   Author: SEO6 Team
   Color Scheme: Red/Orange Emergency Theme
   ========================================================================== */

/* ==========================================================================
   CSS Variables & Base Styles
   ========================================================================== */

:root {
  /* Emergency Colors */
  --primary-red: #E63946;
  --primary-orange: #FF6B35;
  --dark-red: #C1121F;
  --light-red: #FF495C;

  /* Supporting Colors */
  --dark-bg: #1A1A1A;
  --medium-bg: #2D2D2D;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --text-dark: #212529;
  --text-medium: #495057;
  --text-light: #6C757D;

  /* Semantic Colors */
  --success: #28A745;
  --warning: #FFC107;
  --info: #17A2B8;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* Typography */
  --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-heading: 'Arial', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-emergency: 0 8px 32px rgba(230, 57, 70, 0.3);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.nvg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Section Spacing */
section {
  padding: var(--spacing-xl) 0;
}

section.nvg-hero {
  padding: 0;
}

/* ==========================================================================
   Fixed Header
   ========================================================================== */

/* Header Container */
.nvg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Emergency Top Bar */
.nvg-topbar {
  background: linear-gradient(135deg, #d32f2f 0%, #e63946 50%, #ff6b35 100%);
  color: var(--white);
  padding: 0.35rem 0;
}

.nvg-topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.nvg-topbar-emergency {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.nvg-topbar-emergency img {
  filter: brightness(0) invert(1);
  animation: flash 1.5s infinite;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nvg-topbar-contacts {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nvg-topbar-email,
.nvg-topbar-phone {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nvg-topbar-email:hover,
.nvg-topbar-phone:hover {
  opacity: 0.85;
}

.nvg-topbar-email img,
.nvg-topbar-phone img {
  filter: brightness(0) invert(1);
}

/* Main Header */
.nvg-mainheader {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
}

.nvg-mainheader-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
}

/* Brand (Logo + Name + Slogan) */
.nvg-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.nvg-brand:hover {
  transform: translateX(3px);
}

.nvg-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(230, 57, 70, 0.2);
}

.nvg-brand-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nvg-brand-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.nvg-brand-slogan {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Navigation */
.nvg-navigation {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nvg-navlink {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nvg-navlink::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
  transition: left 0.5s ease;
}

.nvg-navlink:hover::before {
  left: 100%;
}

.nvg-navlink:hover {
  color: var(--primary-red);
  background: rgba(230, 57, 70, 0.05);
}

.nvg-navlink img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(8%) saturate(1261%) hue-rotate(169deg) brightness(95%) contrast(88%);
  transition: var(--transition-fast);
}

.nvg-navlink:hover img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(2421%) hue-rotate(343deg) brightness(92%) contrast(94%);
}

/* Emergency Call Button */
.nvg-emergency-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
  color: var(--white);
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.nvg-emergency-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(230, 57, 70, 0.45);
  background: linear-gradient(135deg, #c62828 0%, var(--primary-red) 100%);
}

.nvg-emergency-pulse {
  position: absolute;
  top: 50%;
  left: 1.1rem;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: pulse-emergency 2s infinite;
}

@keyframes pulse-emergency {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.nvg-emergency-btn img {
  filter: brightness(0) invert(1);
  z-index: 1;
  position: relative;
}

.nvg-emergency-number {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.3px;
}

/* Mobile Menu Toggle */
.nvg-menutoggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nvg-menutoggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-red);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nvg-menutoggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nvg-menutoggle.active span:nth-child(2) {
  opacity: 0;
}

.nvg-menutoggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================================================
   Hero Section - Split Screen with Image
   ========================================================================== */

.nvg-hero {
  position: relative;
  margin-top: 110px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  overflow: hidden;
}

/* Hero Grid */
.nvg-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 650px;
}

/* Left Side - Content */
.nvg-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

/* Emergency Badge */
.nvg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--primary-red);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.nvg-hero-badge-pulse {
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* H1 Title */
.nvg-hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nvg-hero-title-main {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.nvg-hero-title-sub {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-red);
  letter-spacing: 0.5px;
}

/* Description */
.nvg-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 580px;
}

.nvg-hero-description strong {
  color: var(--primary-red);
  font-weight: 700;
}

/* Features List */
.nvg-hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.nvg-hero-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.nvg-hero-feature img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(73%) saturate(643%) hue-rotate(88deg) brightness(95%) contrast(89%);
  flex-shrink: 0;
}

/* CTA Buttons */
.nvg-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-sm);
}

.nvg-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nvg-hero-btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.nvg-hero-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.5);
}

.nvg-hero-btn-primary img {
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.nvg-hero-btn-number {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.nvg-hero-btn-secondary {
  background: transparent;
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
}

.nvg-hero-btn-secondary:hover {
  background: var(--text-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.nvg-hero-btn-secondary img {
  filter: brightness(0);
  transition: filter 0.3s ease;
  flex-shrink: 0;
}

.nvg-hero-btn-secondary:hover img {
  filter: brightness(0) invert(1);
}

/* Trust Indicators */
.nvg-hero-trust {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  margin-top: var(--spacing-sm);
}

.nvg-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-body);
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.nvg-hero-trust-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.nvg-hero-trust-item img {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.nvg-hero-trust-item:nth-child(1) img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(95%) saturate(1682%) hue-rotate(359deg) brightness(102%) contrast(104%);
}

.nvg-hero-trust-item:nth-child(2) img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(73%) saturate(643%) hue-rotate(88deg) brightness(95%) contrast(89%);
}

.nvg-hero-trust-item:nth-child(3) img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(2421%) hue-rotate(343deg) brightness(92%) contrast(94%);
}

.nvg-hero-trust-item strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* Right Side - Image */
.nvg-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nvg-hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.08) 0%, rgba(255, 107, 53, 0.12) 100%);
}

.nvg-hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Image Placeholder */
.nvg-hero-image-placeholder {
  width: 100%;
  height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  position: relative;
}

.nvg-hero-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, rgba(230, 57, 70, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(230, 57, 70, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(230, 57, 70, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(230, 57, 70, 0.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  opacity: 0.5;
}

.nvg-hero-image-placeholder img {
  position: relative;
  z-index: 1;
  filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(2421%) hue-rotate(343deg) brightness(92%) contrast(94%);
  opacity: 0.4;
  width: 120px;
  height: 120px;
}

.nvg-hero-image-placeholder p {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-red);
  margin: 0;
  text-align: center;
  opacity: 0.6;
}

/* Emergency Label on Image */
.nvg-hero-image-label {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.2rem 1.8rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.nvg-hero-image-label img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(2421%) hue-rotate(343deg) brightness(92%) contrast(94%);
  flex-shrink: 0;
}

.nvg-hero-image-label div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nvg-hero-image-label strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1;
}

.nvg-hero-image-label span {
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 600;
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */

.nvg-section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.nvg-section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-orange);
  margin-bottom: var(--spacing-sm);
  background: rgba(255, 107, 53, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 20px;
}

.nvg-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.nvg-section-desc {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

.nvg-section-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.03), rgba(255, 107, 53, 0.03));
  border-radius: 20px;
  border: 2px solid rgba(230, 57, 70, 0.1);
  margin-top: var(--spacing-xl);
}

.nvg-section-cta p {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin: 0;
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
  font-weight: 700;
}

.nvg-section-cta .nvg-btn {
  margin-bottom: var(--spacing-lg);
}

/* Simple CTA (without paragraph) */
.nvg-section-cta-simple {
  text-align: center;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.03), rgba(255, 107, 53, 0.03));
  border-radius: 20px;
  border: 2px solid rgba(230, 57, 70, 0.1);
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg) var(--spacing-md);
}

/* Button Styles */
.nvg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.nvg-btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
}

.nvg-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.5);
}

.nvg-btn-primary img {
  filter: brightness(0) invert(1);
}

.nvg-btn-secondary {
  background: var(--white);
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.15);
}

.nvg-btn-secondary:hover {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c62828 100%);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.4);
}

.nvg-btn-secondary img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
  transition: filter 0.3s ease;
}

.nvg-btn-secondary:hover img {
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   Services Section
   ========================================================================== */

/* Services Section - Zigzag Layout */
.nvg-services {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.nvg-services::before {
  content: '';
  position: absolute;
  top: 0;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.03), transparent 70%);
  pointer-events: none;
}

/* Header */
.nvg-services-header {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.nvg-services-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--spacing-md);
}

.nvg-services-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.nvg-services-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

/* Services List */
.nvg-services-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  position: relative;
}

/* Service Item */
.nvg-service-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.4s ease;
}

.nvg-service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-red), var(--primary-orange));
  border-radius: 20px 0 0 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nvg-service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.15);
}

.nvg-service-item:hover::before {
  opacity: 1;
}

/* Alternating Layout */
.nvg-service-item-right {
  grid-template-columns: 1fr 120px;
}

.nvg-service-item-right .nvg-service-icon-circle {
  order: 2;
}

.nvg-service-item-right .nvg-service-number {
  order: 2;
  text-align: right;
}

.nvg-service-item-right .nvg-service-content {
  order: 1;
  text-align: right;
}

.nvg-service-item-right .nvg-service-list {
  align-items: flex-end;
}

.nvg-service-item-right .nvg-service-list li {
  flex-direction: row-reverse;
}

/* Featured Item */
.nvg-service-item-featured {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.03), rgba(255, 107, 53, 0.03));
  border: 2px solid var(--primary-red);
}

.nvg-service-item-featured::before {
  opacity: 1;
}

.nvg-service-featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

/* Number */
.nvg-service-number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(230, 57, 70, 0.1);
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 0;
}

.nvg-service-item-right .nvg-service-number {
  left: auto;
  right: 30px;
}

/* Icon Circle */
.nvg-service-icon-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.25);
}

.nvg-service-icon-circle::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border: 2px solid rgba(230, 57, 70, 0.2);
  border-radius: 50%;
  animation: pulse-circle 3s infinite;
}

@keyframes pulse-circle {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0; }
}

.nvg-service-icon-circle img {
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

/* Content */
.nvg-service-content {
  position: relative;
  z-index: 1;
}

.nvg-service-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.nvg-service-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

/* List */
.nvg-service-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nvg-service-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
}

.nvg-service-list li img {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(44%) sepia(73%) saturate(643%) hue-rotate(88deg) brightness(95%) contrast(89%);
}

/* Additional Services */
.nvg-services-additional {
  border-top: 2px solid rgba(0, 0, 0, 0.06);
}

.nvg-services-additional-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.nvg-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

/* Compact Service Cards */
.nvg-service-compact {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.nvg-service-compact:hover {
  border-color: var(--primary-red);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.12);
  transform: translateY(-5px);
}

.nvg-service-compact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  transition: all 0.3s ease;
}

.nvg-service-compact:hover .nvg-service-compact-icon {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
}

.nvg-service-compact-icon img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(2421%) hue-rotate(343deg) brightness(92%) contrast(94%);
  transition: filter 0.3s ease;
}

.nvg-service-compact:hover .nvg-service-compact-icon img {
  filter: brightness(0) invert(1);
}

.nvg-service-compact-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.nvg-service-compact-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   Why Choose Us Section - Asymmetric Layout
   ========================================================================== */

.nvg-why {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

/* Header */
.nvg-why-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.nvg-why-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(230, 57, 70, 0.08);
  color: var(--primary-red);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(230, 57, 70, 0.15);
}

.nvg-why-header-badge img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(2421%) hue-rotate(343deg) brightness(92%) contrast(94%);
}

.nvg-why-header-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.nvg-why-header-desc {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Asymmetric Layout */
.nvg-why-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

/* Left Column - Main Benefits */
.nvg-why-main {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.nvg-why-main-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--spacing-lg);
  background: var(--white);
  padding: var(--spacing-xl);
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.nvg-why-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-red), var(--primary-orange));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nvg-why-main-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.15);
}

.nvg-why-main-card:hover::before {
  opacity: 1;
}

.nvg-why-main-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.25);
}

.nvg-why-main-icon img {
  filter: brightness(0) invert(1);
}

.nvg-why-main-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.nvg-why-main-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}

.nvg-why-main-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

.nvg-why-main-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin-top: var(--spacing-sm);
}

.nvg-why-main-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-body);
  font-weight: 500;
}

.nvg-why-main-list li img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(73%) saturate(643%) hue-rotate(88deg) brightness(95%) contrast(89%);
  flex-shrink: 0;
}

/* Right Column - Side Benefits */
.nvg-why-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.nvg-why-side-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.nvg-why-side-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.12);
  transform: translateY(-5px);
}

.nvg-why-side-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
  transition: all 0.3s ease;
}

.nvg-why-side-card:hover .nvg-why-side-icon {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
}

.nvg-why-side-icon img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(2421%) hue-rotate(343deg) brightness(92%) contrast(94%);
  transition: filter 0.3s ease;
}

.nvg-why-side-card:hover .nvg-why-side-icon img {
  filter: brightness(0) invert(1);
}

.nvg-why-side-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  line-height: 1.3;
}

.nvg-why-side-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   Geography Section
   ========================================================================== */

.nvg-geo {
  background: linear-gradient(180deg, #ffffff 0%, #FFF5F0 50%, #ffffff 100%);
  position: relative;
}

/* Header */
.nvg-geo-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.nvg-geo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 53, 0.1));
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.nvg-geo-badge img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
}

.nvg-geo-badge span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nvg-geo-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.nvg-geo-desc {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

/* Austria Regions Grid */
.nvg-geo-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.nvg-geo-region {
  background: var(--white);
  border-radius: 20px;
  padding: var(--spacing-lg);
  border: 2px solid rgba(230, 57, 70, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.nvg-geo-region:hover {
  border-color: var(--primary-red);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(230, 57, 70, 0.15);
}

/* Region Header */
.nvg-geo-region-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.nvg-geo-region-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.25);
}

.nvg-geo-region-icon img {
  filter: brightness(0) invert(1);
}

.nvg-geo-region-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
}

/* Cities List */
.nvg-geo-region-cities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.nvg-geo-region-cities li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.nvg-geo-region-cities li img {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(44%) sepia(73%) saturate(643%) hue-rotate(88deg) brightness(95%) contrast(89%);
}

.nvg-geo-region-cities li span {
  font-weight: 600;
}

/* Region Time */
.nvg-geo-region-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: var(--spacing-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nvg-geo-region-time img {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
}

.nvg-geo-region-time span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Block */
.nvg-geo-cta {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  border-radius: 20px;
  padding: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  box-shadow: 0 10px 40px rgba(230, 57, 70, 0.3);
}

.nvg-geo-cta-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nvg-geo-cta-icon img {
  filter: brightness(0) invert(1);
}

.nvg-geo-cta-content {
  flex: 1;
}

.nvg-geo-cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 0.3rem 0;
}

.nvg-geo-cta-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.nvg-geo-cta .nvg-btn {
  flex-shrink: 0;
  background: var(--white);
  color: var(--primary-red);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.nvg-geo-cta .nvg-btn img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
}

.nvg-geo-cta .nvg-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Work Process Section
   ========================================================================== */

.nvg-process {
  background: var(--white);
}

.nvg-process-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.nvg-process-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.nvg-process-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
}

.nvg-process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.nvg-process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-red), var(--primary-orange));
}

.nvg-process-step {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.nvg-process-step:last-child {
  margin-bottom: 0;
}

.nvg-process-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: var(--shadow-emergency);
  position: relative;
  z-index: 1;
}

.nvg-process-content {
  flex: 1;
  background: var(--light-bg);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 12px;
  border-left: 4px solid var(--primary-red);
}

.nvg-process-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.nvg-process-desc {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.nvg-process-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.nvg-process-icon img {
  filter: invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */

.nvg-portfolio {
  background: var(--light-bg);
}

.nvg-portfolio-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.nvg-portfolio-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.nvg-portfolio-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
}

.nvg-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.nvg-portfolio-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.nvg-portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.nvg-portfolio-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.nvg-portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.nvg-portfolio-card:hover .nvg-portfolio-img img {
  transform: scale(1.1);
}

.nvg-portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--spacing-sm);
}

.nvg-portfolio-tag {
  background: var(--primary-red);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nvg-portfolio-content {
  padding: var(--spacing-md);
}

.nvg-portfolio-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.nvg-portfolio-desc {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.nvg-portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  font-size: 0.85rem;
  color: var(--text-light);
  padding-top: var(--spacing-sm);
  border-top: 1px solid #E9ECEF;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.nvg-portfolio-meta li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nvg-portfolio-meta li img {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}

.nvg-portfolio-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nvg-portfolio-meta-item img {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.nvg-pricing {
  background: var(--white);
}

.nvg-pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.nvg-pricing-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.nvg-pricing-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
}

.nvg-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto var(--spacing-lg);
}

.nvg-pricing-card {
  background: var(--light-bg);
  padding: var(--spacing-lg);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-medium);
  border: 3px solid transparent;
  position: relative;
}

.nvg-pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-red);
}

.nvg-pricing-featured {
  border-color: var(--primary-orange);
  background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
  transform: scale(1.05);
}

.nvg-pricing-featured:hover {
  transform: translateY(-8px) scale(1.05);
}

.nvg-pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-orange);
  color: var(--white);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nvg-pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.nvg-pricing-header img {
  filter: invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
}

.nvg-pricing-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.nvg-pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: var(--spacing-md);
}

.nvg-pricing-from {
  font-size: 1rem;
  color: var(--text-light);
}

.nvg-pricing-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-red);
}

.nvg-pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
}

.nvg-pricing-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.nvg-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.nvg-pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 0.9rem;
  color: var(--text-medium);
}

.nvg-pricing-features img {
  flex-shrink: 0;
  filter: invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
}

.nvg-pricing-note {
  text-align: center;
  max-width: 700px;
  margin: var(--spacing-xl) auto;
  padding: var(--spacing-md);
  background: #FFF9E6;
  border-left: 4px solid var(--warning);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.nvg-about {
  background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
}

.nvg-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.nvg-about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 600px;
}

.nvg-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nvg-about-badge {
  position: absolute;
  bottom: var(--spacing-lg);
  left: var(--spacing-lg);
  background: var(--white);
  border-radius: 12px;
  padding: var(--spacing-md) var(--spacing-lg);
  box-shadow: var(--shadow-lg);
}

.nvg-about-badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.nvg-about-badge-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1;
}

.nvg-about-badge-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-medium);
  text-align: center;
}

.nvg-about-content {
  padding: var(--spacing-md);
}

.nvg-about-text {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.nvg-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.nvg-about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.nvg-about-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nvg-about-feature-icon img {
  filter: brightness(0) invert(1);
}

.nvg-about-feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.nvg-about-feature-content p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.nvg-reviews {
  background: var(--white);
}

.nvg-reviews-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.nvg-reviews-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.nvg-reviews-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
}

.nvg-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.nvg-review-card {
  background: var(--light-bg);
  padding: var(--spacing-lg);
  border-radius: 12px;
  border-left: 4px solid var(--primary-orange);
  transition: var(--transition-medium);
}

.nvg-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary-red);
}

.nvg-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.nvg-review-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nvg-review-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nvg-review-service {
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  display: inline-block;
}

.nvg-review-rating {
  color: var(--primary-orange);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 2px;
}

.nvg-review-comment {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--spacing-sm);
}

.nvg-review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.nvg-review-date {
  font-size: 0.85rem;
  color: var(--text-light);
}

.nvg-reviews-cta {
  text-align: center;
}

.nvg-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--primary-red);
  color: var(--white);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.nvg-reviews-btn:hover {
  background: var(--dark-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-emergency);
}

/* ==========================================================================
   Blog Section
   ========================================================================== */

.nvg-blog {
  background: var(--light-bg);
}

.nvg-blog-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.nvg-blog-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.nvg-blog-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
}

.nvg-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.nvg-blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.nvg-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.nvg-blog-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.nvg-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.nvg-blog-card:hover .nvg-blog-img img {
  transform: scale(1.1);
}

.nvg-blog-category {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  background: var(--primary-red);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nvg-blog-content {
  padding: var(--spacing-md);
}

.nvg-blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.nvg-blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.nvg-blog-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.nvg-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-red);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.nvg-blog-link:hover {
  gap: 0.75rem;
}

.nvg-blog-cta {
  text-align: center;
}

.nvg-blog-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--primary-orange);
  color: var(--white);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.nvg-blog-btn:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-emergency);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.nvg-faq {
  background: var(--white);
}

.nvg-faq-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.nvg-faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.nvg-faq-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
}

.nvg-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.nvg-faq-item {
  margin-bottom: var(--spacing-md);
  background: var(--light-bg);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition-fast);
}

.nvg-faq-item.active {
  border-color: var(--primary-red);
}

.nvg-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) var(--spacing-lg);
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.nvg-faq-question:hover {
  color: var(--primary-red);
}

.nvg-faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-red);
  transition: var(--transition-fast);
}

.nvg-faq-item.active .nvg-faq-icon {
  transform: rotate(45deg);
}

.nvg-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nvg-faq-answer p {
  padding: 0 var(--spacing-lg) var(--spacing-md);
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

/* Contact Section - Completely New Design */
.nvg-contact-new {
  padding: var(--spacing-xxl) 0;
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 50%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.nvg-contact-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.nvg-contact-new::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Header */
.nvg-contact-new-header {
  position: relative;
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.nvg-contact-new-header-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(230, 57, 70, 0.2) 20%,
    rgba(230, 57, 70, 0.4) 50%,
    rgba(230, 57, 70, 0.2) 80%,
    transparent 100%
  );
}

.nvg-contact-new-header-content {
  position: relative;
  display: inline-block;
  background: var(--white);
  padding: 0 var(--spacing-lg);
}

.nvg-contact-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.nvg-contact-new-badge img {
  filter: brightness(0) invert(1);
}

.nvg-contact-new-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.nvg-contact-new-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main wrapper */
.nvg-contact-new-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-xxl);
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Form section */
.nvg-contact-new-form-section {
  background: var(--white);
  border-radius: 20px;
  padding: var(--spacing-xl);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(230, 57, 70, 0.05);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.nvg-contact-new-form-section::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange), var(--primary-red));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nvg-contact-new-form-section:hover::before {
  opacity: 1;
}

.nvg-contact-new-form-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.nvg-contact-new-form-header p {
  color: var(--text-medium);
  margin-bottom: var(--spacing-lg);
}

/* Sidebar */
.nvg-contact-new-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

/* Emergency call banner */
.nvg-contact-new-emergency {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  border-radius: 20px;
  padding: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.3);
  position: relative;
  overflow: hidden;
}

.nvg-contact-new-emergency::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 60%);
  animation: rotate 10s linear infinite;
}

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

.nvg-contact-new-emergency-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.nvg-contact-new-emergency-icon img {
  filter: brightness(0) invert(1);
}

.nvg-contact-new-emergency-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.nvg-contact-new-emergency-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.nvg-contact-new-emergency-phone {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.25rem;
  transition: transform 0.2s ease;
}

.nvg-contact-new-emergency-phone:hover {
  transform: scale(1.05);
}

.nvg-contact-new-emergency-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

.nvg-contact-new-emergency-pulse {
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

/* Contact details */
.nvg-contact-new-details {
  background: var(--white);
  border-radius: 16px;
  padding: var(--spacing-lg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #E9ECEF;
}

.nvg-contact-new-details h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid rgba(230, 57, 70, 0.1);
}

.nvg-contact-new-detail-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.nvg-contact-new-detail-item:not(:last-child) {
  margin-bottom: var(--spacing-sm);
}

.nvg-contact-new-detail-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.03), rgba(255, 107, 53, 0.03));
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nvg-contact-new-detail-item:hover::before {
  opacity: 1;
}

.nvg-contact-new-detail-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.nvg-contact-new-detail-icon img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
}

.nvg-contact-new-detail-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}

.nvg-contact-new-detail-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nvg-contact-new-detail-text span {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* Trust features */
.nvg-contact-new-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.nvg-contact-new-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--white);
  border-radius: 12px;
  border: 2px solid #E9ECEF;
  transition: all 0.3s ease;
}

.nvg-contact-new-feature:hover {
  border-color: var(--primary-red);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.15);
}

.nvg-contact-new-feature img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
  transition: transform 0.3s ease;
}

.nvg-contact-new-feature:hover img {
  transform: scale(1.1);
}

.nvg-contact-new-feature span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Form styles for Contact section */
.cn-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.dcr-form-group {
  margin-bottom: var(--spacing-md);
}

.dw-contact-wow-input-wrap {
  position: relative;
}

.dcr-input,
.cn-input,
.dw-contact-wow-input,
.dcr-textarea,
.cn-textarea,
.dw-contact-wow-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 2px solid #E9ECEF;
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s ease;
  outline: none;
}

.dcr-input:focus,
.cn-input:focus,
.dw-contact-wow-input:focus,
.dcr-textarea:focus,
.cn-textarea:focus,
.dw-contact-wow-textarea:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.dcr-textarea,
.cn-textarea,
.dw-contact-wow-textarea {
  resize: vertical;
  min-height: 120px;
}

.dcr-error {
  display: none;
  color: #DC3545;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

.dcr-btn,
.dcr-btn-primary,
.dcr-btn-block,
.cn-submit-btn,
.dw-contact-wow-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  margin-top: var(--spacing-md);
}

.dcr-btn:hover,
.dcr-btn-primary:hover,
.cn-submit-btn:hover,
.dw-contact-wow-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.dw-contact-wow-submit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dw-contact-wow-submit-icon img {
  filter: brightness(0) invert(1);
}

.cn-btn-text {
  flex: 1;
}

.dw-contact-wow-submit-arrow {
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.dcr-btn:hover .dw-contact-wow-submit-arrow,
.dw-contact-wow-submit:hover .dw-contact-wow-submit-arrow {
  transform: translateX(5px);
}

.dcr-success,
.cn-success {
  display: none;
  background: linear-gradient(135deg, #10B981, #059669);
  color: var(--white);
  padding: var(--spacing-md);
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  margin-top: var(--spacing-md);
  animation: slideDown 0.3s ease;
}

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

/* ==========================================================================
   SEO Text Section
   ========================================================================== */

.nvg-seo {
  padding: var(--spacing-xl) 0;
  background: var(--white);
}

.nvg-seo-content {
  max-width: 900px;
  margin: 0 auto;
}

.nvg-seo-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
}

.nvg-seo-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.nvg-seo-content p {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.nvg-seo-content strong {
  color: var(--primary-red);
  font-weight: 600;
}

/* ==========================================================================
   Fixed Call Button
   ========================================================================== */

.nvg-fixed-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-emergency);
  z-index: 9999;
  transition: var(--transition-fast);
  animation: pulse-call 2s infinite;
}

.nvg-fixed-call:hover {
  background: var(--dark-red);
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(230, 57, 70, 0.5);
  animation: none;
}

.nvg-fixed-call img {
  filter: brightness(0) invert(1);
}

@keyframes pulse-call {
  0%, 100% {
    box-shadow: 0 5px 25px rgba(230, 57, 70, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(230, 57, 70, 0.6);
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.dw-footer-wow {
  background: linear-gradient(180deg, var(--white) 0%, #F8F9FA 100%);
  position: relative;
}

/* Emergency CTA Banner */
.dw-footer-emergency {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.dw-footer-emergency::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
  animation: rotate 15s linear infinite;
}

.dw-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.dw-footer-emergency-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.dw-footer-emergency-left {
  color: var(--white);
}

.dw-footer-emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.dw-footer-emergency-pulse {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.dw-footer-emergency-badge img {
  filter: brightness(0) invert(1);
}

.dw-footer-emergency-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.dw-footer-emergency-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.dw-footer-emergency-right {
  display: flex;
  justify-content: flex-end;
}

.dw-footer-emergency-button {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-lg);
  background: var(--white);
  color: var(--primary-red);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.dw-footer-emergency-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.dw-footer-emergency-button-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dw-footer-emergency-button-icon img {
  filter: brightness(0) invert(1);
}

.dw-footer-emergency-button-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dw-footer-emergency-button-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dw-footer-emergency-button-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-red);
}

/* Main Footer Content */
.dw-footer-main {
  padding: var(--spacing-xxl) 0 var(--spacing-xl);
}

.dw-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
}

.dw-footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.dw-footer-col-company {
  gap: var(--spacing-sm);
}

.dw-footer-logo img {
  max-width: 140px;
  height: auto;
}

.dw-footer-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-red);
  line-height: 1.4;
}

.dw-footer-description {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.dw-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.dw-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.dw-footer-contact-item:hover {
  color: var(--primary-red);
}

.dw-footer-contact-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
  flex-shrink: 0;
}

.dw-footer-col-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.dw-footer-col-title img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
}

.dw-footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.dw-footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  transition: all 0.3s ease;
}

.dw-footer-link:hover {
  color: var(--primary-red);
  transform: translateX(5px);
}

.dw-footer-link-arrow {
  color: var(--primary-red);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.dw-footer-link:hover .dw-footer-link-arrow {
  transform: translateX(3px);
}

/* Trust Badges */
.dw-footer-trust-badges {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.dw-footer-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--white);
  border-radius: 12px;
  border: 2px solid #E9ECEF;
  transition: all 0.3s ease;
}

.dw-footer-badge:hover {
  border-color: var(--primary-red);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.15);
}

.dw-footer-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dw-footer-badge-icon img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
}

.dw-footer-badge-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dw-footer-badge-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
}

.dw-footer-badge-text {
  font-size: 0.8rem;
  color: var(--text-medium);
}

/* Service Areas */
.dw-footer-areas {
  padding: var(--spacing-lg);
  background: rgba(230, 57, 70, 0.03);
  border-radius: 16px;
  border: 2px dashed rgba(230, 57, 70, 0.15);
}

.dw-footer-areas-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--spacing-md);
}

.dw-footer-areas-header img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(72%) saturate(2563%) hue-rotate(335deg) brightness(93%) contrast(90%);
}

.dw-footer-areas-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.dw-footer-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.dw-footer-area-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #E9ECEF;
  transition: all 0.3s ease;
}

.dw-footer-area-tag:hover {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

/* ==========================================================================
   Responsive Design - Mobile
   ========================================================================== */

@media (max-width: 1024px) {
  /* Header - Tablet */
  .nvg-navigation {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
    z-index: 999;
    gap: 0;
  }

  .nvg-navigation.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nvg-navlink {
    width: 100%;
    text-align: center;
    padding: var(--spacing-sm);
    font-size: 1rem;
  }

  .nvg-navlink::before {
    display: none;
  }

  .nvg-menutoggle {
    display: flex;
  }

  .nvg-emergency-btn {
    padding: 0.6rem 1rem;
    gap: 0.6rem;
  }

  .nvg-emergency-pulse {
    left: 1rem;
    width: 20px;
    height: 20px;
  }

  .nvg-emergency-btn img {
    width: 18px;
    height: 18px;
  }

  .nvg-emergency-number {
    font-size: 0.9rem;
  }

  /* Hero - Tablet */
  .nvg-hero {
    margin-top: 110px;
    padding: var(--spacing-xl) 0;
  }

  .nvg-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .nvg-hero-content {
    padding-right: 0;
    text-align: center;
  }

  .nvg-hero-badge {
    justify-content: center;
    margin: 0 auto 0;
  }

  .nvg-hero-features {
    justify-content: center;
  }

  .nvg-hero-actions {
    justify-content: center;
  }

  .nvg-hero-trust {
    justify-content: center;
  }

  /* Services - Tablet */
  .nvg-services-title {
    font-size: 2.2rem;
  }

  .nvg-services-subtitle {
    font-size: 1rem;
  }

  .nvg-service-item {
    grid-template-columns: 100px 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
  }

  .nvg-service-item-right {
    grid-template-columns: 1fr 100px;
  }

  .nvg-service-icon-circle {
    width: 85px;
    height: 85px;
  }

  .nvg-service-icon-circle img {
    width: 42px;
    height: 42px;
  }

  .nvg-service-number {
    font-size: 4rem;
    top: 15px;
    left: 20px;
  }

  .nvg-service-item-right .nvg-service-number {
    right: 20px;
  }

  .nvg-service-heading {
    font-size: 1.5rem;
  }

  .nvg-service-text {
    font-size: 0.95rem;
  }

  .nvg-services-additional-title {
    font-size: 1.6rem;
  }

  .nvg-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nvg-service-compact {
    padding: var(--spacing-md);
  }

  .nvg-service-compact-title {
    font-size: 1rem;
  }

  .nvg-service-compact-desc {
    font-size: 0.85rem;
  }

  /* Geography - Tablet */
  .nvg-geo-title {
    font-size: 2.2rem;
  }

  .nvg-geo-desc {
    font-size: 1rem;
  }

  .nvg-geo-regions {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .nvg-geo-region {
    padding: var(--spacing-lg);
  }

  .nvg-geo-region-icon {
    width: 55px;
    height: 55px;
  }

  .nvg-geo-region-icon img {
    width: 28px;
    height: 28px;
  }

  .nvg-geo-region-name {
    font-size: 1.4rem;
  }

  .nvg-geo-region-cities li {
    font-size: 0.9rem;
  }

  .nvg-geo-region-cities li img {
    width: 14px;
    height: 14px;
  }

  .nvg-geo-region-time {
    padding: 0.5rem 0.8rem;
  }

  .nvg-geo-region-time span {
    font-size: 0.85rem;
  }

  .nvg-geo-cta {
    padding: var(--spacing-lg);
  }

  .nvg-geo-cta-icon {
    width: 65px;
    height: 65px;
  }

  .nvg-geo-cta-icon img {
    width: 28px;
    height: 28px;
  }

  .nvg-geo-cta-title {
    font-size: 1.4rem;
  }

  .nvg-geo-cta-subtitle {
    font-size: 0.95rem;
  }

  .nvg-geo-cta .nvg-btn {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }

  .nvg-portfolio-grid,
  .nvg-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nvg-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why Choose Us - Tablet */
  .nvg-why-header-title {
    font-size: 2.2rem;
  }

  .nvg-why-header-desc {
    font-size: 1rem;
  }

  .nvg-why-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .nvg-why-main-card {
    grid-template-columns: 90px 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
  }

  .nvg-why-main-icon {
    width: 90px;
    height: 90px;
  }

  .nvg-why-main-icon img {
    width: 50px;
    height: 50px;
  }

  .nvg-why-main-title {
    font-size: 1.4rem;
  }

  .nvg-why-main-desc {
    font-size: 0.95rem;
  }

  .nvg-why-main-list li {
    font-size: 0.9rem;
  }

  .nvg-why-side {
    grid-template-columns: repeat(2, 1fr);
  }

  .nvg-why-side-card {
    padding: var(--spacing-md);
  }

  .nvg-why-side-icon {
    width: 55px;
    height: 55px;
  }

  .nvg-why-side-icon img {
    width: 32px;
    height: 32px;
  }

  .nvg-why-side-title {
    font-size: 1.05rem;
  }

  .nvg-why-side-desc {
    font-size: 0.85rem;
  }

  /* Work Process - Tablet */
  .nvg-section-label {
    font-size: 0.85rem;
    padding: 0.6rem 1.4rem;
  }

  .nvg-section-title {
    font-size: 2.2rem;
  }

  .nvg-section-desc {
    font-size: 1rem;
  }

  .nvg-process-timeline {
    max-width: 800px;
  }

  .nvg-process-timeline::before {
    left: 35px;
  }

  .nvg-process-number {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }

  .nvg-process-content {
    padding: var(--spacing-md);
  }

  .nvg-process-content .nvg-process-title {
    font-size: 1.3rem;
  }

  .nvg-process-desc {
    font-size: 0.95rem;
  }

  .nvg-process-icon {
    width: 55px;
    height: 55px;
  }

  .nvg-process-icon img {
    width: 28px;
    height: 28px;
  }

  /* About - Tablet */
  .nvg-about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .nvg-about-title {
    font-size: 2.2rem;
  }

  .nvg-about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews - Tablet */
  .nvg-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nvg-reviews-title {
    font-size: 2.2rem;
  }

  /* FAQ - Tablet */
  .nvg-faq-title {
    font-size: 2.2rem;
  }

  .nvg-faq-item-question {
    font-size: 1.1rem;
  }

  /* Contact - Tablet */
  .nvg-contact-grid {
    grid-template-columns: 1fr;
  }

  .nvg-contact-title {
    font-size: 2.2rem;
  }

  /* SEO Text - Tablet */
  .nvg-seo-text h2 {
    font-size: 2.2rem;
  }

  .nvg-seo-text h3 {
    font-size: 1.6rem;
  }

  .nvg-seo-text p {
    font-size: 1rem;
  }

  /* Portfolio - Tablet */
  .nvg-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nvg-portfolio-img {
    height: 220px;
  }

  .nvg-portfolio-title {
    font-size: 1.2rem;
  }

  .nvg-portfolio-desc {
    font-size: 0.9rem;
  }

  .nvg-portfolio-meta {
    font-size: 0.8rem;
  }

  .nvg-portfolio-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
  }

  /* Pricing - Tablet */
  .nvg-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nvg-pricing-card {
    padding: var(--spacing-md);
  }

  .nvg-pricing-featured {
    transform: scale(1.02);
  }

  .nvg-pricing-featured:hover {
    transform: translateY(-8px) scale(1.02);
  }

  .nvg-pricing-header h3 {
    font-size: 1.3rem;
  }

  .nvg-pricing-amount {
    font-size: 2.7rem;
  }

  .nvg-pricing-currency {
    font-size: 1.4rem;
  }

  .nvg-pricing-desc {
    font-size: 0.87rem;
  }

  .nvg-pricing-features li {
    font-size: 0.85rem;
  }

  .nvg-pricing-note {
    font-size: 0.9rem;
  }

  /* About - Tablet */
  .nvg-about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .nvg-about-image {
    height: 450px;
  }

  .nvg-about-badge {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nvg-about-badge-number {
    font-size: 2.2rem;
  }

  .nvg-about-badge-text {
    font-size: 0.85rem;
  }

  .nvg-about-text {
    font-size: 1rem;
  }

  .nvg-about-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .nvg-about-feature-icon {
    width: 45px;
    height: 45px;
  }

  .nvg-about-feature-icon img {
    width: 28px;
    height: 28px;
  }

  .nvg-about-feature-content h4 {
    font-size: 1.05rem;
  }

  .nvg-about-feature-content p {
    font-size: 0.87rem;
  }

  /* Reviews - Tablet */
  .nvg-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nvg-review-card {
    padding: var(--spacing-md);
  }

  .nvg-review-name {
    font-size: 1.15rem;
  }

  .nvg-review-service {
    font-size: 0.82rem;
  }

  .nvg-review-rating {
    font-size: 1.15rem;
  }

  .nvg-review-comment {
    font-size: 0.92rem;
  }

  .nvg-review-date {
    font-size: 0.82rem;
  }

  /* Blog - Tablet */
  .nvg-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nvg-blog-img {
    height: 200px;
  }

  .nvg-blog-content {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nvg-blog-title {
    font-size: 1.15rem;
  }

  .nvg-blog-excerpt {
    font-size: 0.87rem;
  }

  .nvg-blog-category {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  .nvg-blog-link {
    font-size: 0.9rem;
  }

  /* FAQ - Tablet */
  .nvg-faq-list {
    max-width: 800px;
  }

  .nvg-faq-question {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1.05rem;
  }

  .nvg-faq-icon {
    width: 28px;
    height: 28px;
    font-size: 1.4rem;
  }

  .nvg-faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-sm);
    font-size: 0.95rem;
  }

  /* Contact New - Tablet */
  .nvg-contact-new-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .nvg-contact-new-form-section {
    padding: var(--spacing-lg);
  }

  .nvg-contact-new-title {
    font-size: 2.2rem;
  }

  .nvg-contact-new-subtitle {
    font-size: 1.05rem;
  }

  .nvg-contact-new-emergency-phone {
    font-size: 1.5rem;
  }

  .nvg-contact-new-emergency-icon {
    width: 60px;
    height: 60px;
  }

  .nvg-contact-new-detail-icon {
    width: 42px;
    height: 42px;
  }

  .cn-form-row {
    grid-template-columns: 1fr 1fr;
  }

  /* SEO Text - Tablet */
  .nvg-seo-content {
    max-width: 800px;
    padding: 0 var(--spacing-md);
  }

  .nvg-seo-content h2 {
    font-size: 1.8rem;
  }

  .nvg-seo-content h3 {
    font-size: 1.35rem;
  }

  .nvg-seo-content p {
    font-size: 1rem;
  }

  /* Footer - Tablet */
  .dw-footer-emergency-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .dw-footer-emergency-right {
    justify-content: center;
  }

  .dw-footer-emergency-title {
    font-size: 1.75rem;
  }

  .dw-footer-emergency-text {
    font-size: 1rem;
  }

  .dw-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .dw-footer-col-company {
    grid-column: 1 / -1;
  }

  .dw-footer-trust-badges {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: var(--spacing-sm);
  }

  .dw-footer-areas-tags {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Variables */
  :root {
    --spacing-xs: 0.35rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
  }

  /* Section Spacing - Mobile */
  section {
    padding: var(--spacing-lg) 0;
  }

  section.nvg-hero {
    padding: var(--spacing-md) 0;
  }

  /* Header */
  .nvg-topbar {
    display: none;
  }

  .nvg-mainheader-content {
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }

  .nvg-brand {
    gap: 0.6rem;
  }

  .nvg-brand-icon {
    width: 38px;
    height: 38px;
  }

  .nvg-brand-name {
    font-size: 1.05rem;
  }

  .nvg-brand-slogan {
    font-size: 0.65rem;
  }

  .nvg-navigation {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
    z-index: 999;
    gap: 0;
  }

  .nvg-navigation.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nvg-navlink {
    width: 100%;
    text-align: center;
    padding: var(--spacing-sm);
    font-size: 1rem;
  }

  .nvg-navlink::before {
    display: none;
  }

  .nvg-menutoggle {
    display: flex;
  }

  .nvg-emergency-btn {
    display: none;
  }

  /* Hero */
  .nvg-hero {
    margin-top: 50px;
    padding: var(--spacing-lg) 0;
  }

  .nvg-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    min-height: auto;
  }

  .nvg-hero-content {
    padding-right: 0;
    order: 1;
  }

  .nvg-hero-image {
    order: 2;
  }

  .nvg-hero-badge {
    padding: 0.5rem 1.1rem;
    font-size: 0.7rem;
  }

  .nvg-hero-badge-pulse {
    width: 8px;
    height: 8px;
  }

  .nvg-hero-title-main {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .nvg-hero-title-sub {
    font-size: 1.1rem;
  }

  .nvg-hero-description {
    font-size: 1rem;
  }

  .nvg-hero-features {
    gap: 0.7rem;
  }

  .nvg-hero-feature {
    font-size: 0.9rem;
  }

  .nvg-hero-feature img {
    width: 20px;
    height: 20px;
  }

  .nvg-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-sm);
  }

  .nvg-hero-btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.4rem;
  }

  .nvg-hero-btn-number {
    font-size: 1rem;
  }

  .nvg-hero-trust {
    display: none;
  }

  .nvg-hero-image-wrapper {
    max-width: 100%;
    border-radius: 20px;
  }

  .nvg-hero-image-label {
    bottom: 20px;
    left: 20px;
    padding: 0.9rem 1.3rem;
  }

  .nvg-hero-image-label img {
    width: 20px;
    height: 20px;
  }

  .nvg-hero-image-label strong {
    font-size: 1.2rem;
  }

  .nvg-hero-image-label span {
    font-size: 0.75rem;
  }

  .nvg-hero-image-placeholder {
    height: 500px;
  }

  .nvg-hero-image-placeholder img {
    width: 80px;
    height: 80px;
  }

  /* Services - Mobile */
  .nvg-services-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    letter-spacing: 1px;
  }

  .nvg-services-title {
    font-size: 1.8rem;
  }

  .nvg-services-subtitle {
    font-size: 0.95rem;
  }

  .nvg-services-list {
    gap: var(--spacing-lg);
  }

  .nvg-service-item {
    grid-template-columns: 1fr !important;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    text-align: center;
  }

  .nvg-service-item-right {
    grid-template-columns: 1fr !important;
  }

  .nvg-service-item-right .nvg-service-content {
    order: 0;
    text-align: center;
  }

  .nvg-service-item-right .nvg-service-icon-circle {
    order: 0;
  }

  .nvg-service-item-right .nvg-service-list {
    align-items: center;
  }

  .nvg-service-item-right .nvg-service-list li {
    flex-direction: row;
  }

  .nvg-service-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .nvg-service-icon-circle img {
    width: 40px;
    height: 40px;
  }

  .nvg-service-number {
    font-size: 3rem;
    top: 10px;
    left: 15px;
  }

  .nvg-service-item-right .nvg-service-number {
    left: 15px;
    right: auto;
  }

  .nvg-service-featured-badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .nvg-service-heading {
    font-size: 1.3rem;
  }

  .nvg-service-text {
    font-size: 0.9rem;
  }

  .nvg-service-list {
    align-items: center;
  }

  .nvg-service-list li {
    font-size: 0.85rem;
  }

  .nvg-services-additional-title {
    font-size: 1.4rem;
  }

  .nvg-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .nvg-service-compact {
    padding: var(--spacing-md);
  }

  .nvg-service-compact-icon {
    width: 55px;
    height: 55px;
  }

  .nvg-service-compact-icon img {
    width: 28px;
    height: 28px;
  }

  .nvg-service-compact-title {
    font-size: 0.95rem;
  }

  .nvg-service-compact-desc {
    font-size: 0.85rem;
  }

  .nvg-section-cta {
    padding: var(--spacing-lg);
  }

  .nvg-section-cta p {
    font-size: 1rem;
    margin-bottom: var(--spacing-sm);
  }

  .nvg-section-cta .nvg-btn {
    font-size: 0.95rem;
  }

  .nvg-hero-image-placeholder p {
    font-size: 1.2rem;
  }

  .nvg-btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
  }

  .nvg-why-title,
  .nvg-geo-title,
  .nvg-process-title,
  .nvg-portfolio-title,
  .nvg-pricing-title,
  .nvg-about-title,
  .nvg-reviews-title,
  .nvg-blog-title,
  .nvg-faq-title,
  .nvg-contact-title {
    font-size: 1.75rem;
  }

  .nvg-why-subtitle,
  .nvg-process-subtitle,
  .nvg-portfolio-subtitle,
  .nvg-pricing-subtitle,
  .nvg-reviews-subtitle,
  .nvg-blog-subtitle,
  .nvg-faq-subtitle,
  .nvg-contact-subtitle {
    font-size: 1rem;
  }

  /* Why Choose Us - Mobile */
  .nvg-why-header-title {
    font-size: 1.8rem;
  }

  .nvg-why-header-desc {
    font-size: 0.95rem;
  }

  .nvg-why-layout {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .nvg-why-main {
    gap: var(--spacing-md);
  }

  .nvg-why-main-card {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    text-align: center;
  }

  .nvg-why-main-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .nvg-why-main-icon img {
    width: 45px;
    height: 45px;
  }

  .nvg-why-main-title {
    font-size: 1.3rem;
  }

  .nvg-why-main-desc {
    font-size: 0.9rem;
  }

  .nvg-why-main-list {
    align-items: center;
  }

  .nvg-why-main-list li {
    font-size: 0.85rem;
  }

  .nvg-why-side {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .nvg-why-side-card {
    padding: var(--spacing-md);
    text-align: center;
  }

  .nvg-why-side-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
  }

  .nvg-why-side-icon img {
    width: 35px;
    height: 35px;
  }

  .nvg-why-side-title {
    font-size: 1.1rem;
  }

  .nvg-why-side-desc {
    font-size: 0.88rem;
  }

  /* Geography - Mobile */
  .nvg-geo-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.3rem;
  }

  .nvg-geo-badge img {
    width: 20px;
    height: 20px;
  }

  .nvg-geo-title {
    font-size: 1.8rem;
  }

  .nvg-geo-desc {
    font-size: 0.95rem;
  }

  .nvg-geo-regions {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .nvg-geo-region {
    padding: var(--spacing-md);
  }

  .nvg-geo-region-icon {
    width: 50px;
    height: 50px;
  }

  .nvg-geo-region-icon img {
    width: 26px;
    height: 26px;
  }

  .nvg-geo-region-name {
    font-size: 1.3rem;
  }

  .nvg-geo-region-cities {
    gap: 0.6rem;
  }

  .nvg-geo-region-cities li {
    font-size: 0.9rem;
  }

  .nvg-geo-region-cities li img {
    width: 14px;
    height: 14px;
  }

  .nvg-geo-region-time {
    padding: 0.5rem 0.8rem;
  }

  .nvg-geo-region-time img {
    width: 14px;
    height: 14px;
  }

  .nvg-geo-region-time span {
    font-size: 0.82rem;
  }

  .nvg-geo-cta {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
  }

  .nvg-geo-cta-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .nvg-geo-cta-icon img {
    width: 28px;
    height: 28px;
  }

  .nvg-geo-cta-title {
    font-size: 1.3rem;
  }

  .nvg-geo-cta-subtitle {
    font-size: 0.9rem;
  }

  .nvg-geo-cta .nvg-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
  }

  /* Work Process - Mobile */
  .nvg-section-label {
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
  }

  .nvg-section-title {
    font-size: 1.8rem;
  }

  .nvg-section-desc {
    font-size: 0.95rem;
  }

  .nvg-process-timeline {
    max-width: 100%;
  }

  .nvg-process-timeline::before {
    left: 30px;
  }

  .nvg-process-step {
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
  }

  .nvg-process-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .nvg-process-content {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nvg-process-content .nvg-process-title {
    font-size: 1.2rem;
  }

  .nvg-process-desc {
    font-size: 0.9rem;
  }

  .nvg-process-icon {
    width: 50px;
    height: 50px;
  }

  .nvg-process-icon img {
    width: 26px;
    height: 26px;
  }

  /* Portfolio & Blog */
  .nvg-portfolio-grid,
  .nvg-blog-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .nvg-pricing-grid {
    grid-template-columns: 1fr;
  }

  .nvg-pricing-featured {
    transform: scale(1);
  }

  /* About */
  .nvg-about-grid {
    grid-template-columns: 1fr;
  }

  .nvg-about-image {
    height: 400px;
  }

  .nvg-about-badge {
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nvg-about-badge-number {
    font-size: 2rem;
  }

  .nvg-about-features {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .nvg-reviews-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ - Mobile */
  .nvg-faq-title {
    font-size: 1.8rem;
  }

  .nvg-faq-items {
    gap: var(--spacing-sm);
  }

  .nvg-faq-item-question {
    font-size: 1.05rem;
    padding: var(--spacing-md);
  }

  .nvg-faq-item-answer {
    font-size: 0.9rem;
    padding: var(--spacing-md);
  }

  /* SEO Text - Mobile */
  .nvg-seo-text {
    padding: var(--spacing-lg) var(--spacing-md);
  }

  .nvg-seo-text h2 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
  }

  .nvg-seo-text h3 {
    font-size: 1.4rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
  }

  .nvg-seo-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
  }

  /* Contact - Mobile Optimizations */
  .nvg-contact::before {
    width: 400px;
    height: 400px;
  }

  .nvg-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .nvg-contact-info {
    padding: var(--spacing-lg);
  }

  .nvg-contact-info h3 {
    font-size: 1.6rem;
  }

  .nvg-contact-items {
    gap: var(--spacing-md);
  }

  .nvg-contact-item {
    padding: var(--spacing-sm);
  }

  .nvg-contact-item img {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .nvg-contact-item strong {
    font-size: 0.75rem;
  }

  .nvg-contact-item a,
  .nvg-contact-item span {
    font-size: 1rem;
  }

  .nvg-contact-trust {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .nvg-contact-trust-item {
    padding: var(--spacing-sm);
  }

  .nvg-contact-form-wrapper {
    padding: var(--spacing-lg);
  }

  /* Fixed Call Button */
  .nvg-fixed-call {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .nvg-fixed-call img {
    width: 26px;
    height: 26px;
  }

  /* Portfolio - Mobile */
  .nvg-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }

  .nvg-portfolio-img {
    height: 180px;
  }

  .nvg-portfolio-content {
    padding: var(--spacing-sm);
  }

  .nvg-portfolio-title {
    font-size: 1.1rem;
  }

  .nvg-portfolio-desc {
    font-size: 0.85rem;
  }

  .nvg-portfolio-meta {
    font-size: 0.75rem;
    gap: var(--spacing-xs);
    flex-direction: column;
    align-items: flex-start;
  }

  .nvg-portfolio-meta li img {
    width: 12px;
    height: 12px;
  }

  .nvg-portfolio-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
  }

  /* Pricing - Mobile */
  .nvg-pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .nvg-pricing-card {
    padding: var(--spacing-sm);
  }

  .nvg-pricing-featured {
    transform: scale(1);
  }

  .nvg-pricing-featured:hover {
    transform: translateY(-8px) scale(1);
  }

  .nvg-pricing-badge {
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
  }

  .nvg-pricing-header h3 {
    font-size: 1.2rem;
  }

  .nvg-pricing-header img {
    width: 35px;
    height: 35px;
  }

  .nvg-pricing-amount {
    font-size: 2.5rem;
  }

  .nvg-pricing-currency {
    font-size: 1.3rem;
  }

  .nvg-pricing-desc {
    font-size: 0.85rem;
  }

  .nvg-pricing-features li {
    font-size: 0.82rem;
  }

  .nvg-pricing-features img {
    width: 14px;
    height: 14px;
  }

  .nvg-pricing-note {
    font-size: 0.88rem;
    padding: var(--spacing-sm);
  }

  /* About - Mobile */
  .nvg-about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .nvg-about-image {
    height: 380px;
  }

  .nvg-about-badge {
    padding: var(--spacing-xs) var(--spacing-sm);
    left: var(--spacing-sm);
    bottom: var(--spacing-sm);
  }

  .nvg-about-badge-number {
    font-size: 2rem;
  }

  .nvg-about-badge-text {
    font-size: 0.8rem;
  }

  .nvg-about-content {
    padding: var(--spacing-sm);
  }

  .nvg-about-text {
    font-size: 0.95rem;
  }

  .nvg-about-features {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .nvg-about-feature-icon {
    width: 42px;
    height: 42px;
  }

  .nvg-about-feature-icon img {
    width: 26px;
    height: 26px;
  }

  .nvg-about-feature-content h4 {
    font-size: 1rem;
  }

  .nvg-about-feature-content p {
    font-size: 0.85rem;
  }

  /* Reviews - Mobile */
  .nvg-reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .nvg-review-card {
    padding: var(--spacing-sm);
  }

  .nvg-review-name {
    font-size: 1.1rem;
  }

  .nvg-review-service {
    font-size: 0.8rem;
  }

  .nvg-review-rating {
    font-size: 1.1rem;
  }

  .nvg-review-comment {
    font-size: 0.9rem;
  }

  .nvg-review-date {
    font-size: 0.8rem;
  }

  /* Blog - Mobile */
  .nvg-blog-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .nvg-blog-img {
    height: 200px;
  }

  .nvg-blog-content {
    padding: var(--spacing-sm);
  }

  .nvg-blog-title {
    font-size: 1.1rem;
  }

  .nvg-blog-excerpt {
    font-size: 0.85rem;
  }

  .nvg-blog-category {
    font-size: 0.72rem;
    padding: 0.28rem 0.7rem;
  }

  .nvg-blog-link {
    font-size: 0.88rem;
  }

  /* FAQ - Mobile */
  .nvg-faq-list {
    max-width: 100%;
  }

  .nvg-faq-item {
    margin-bottom: var(--spacing-sm);
  }

  .nvg-faq-question {
    padding: var(--spacing-sm);
    font-size: 1rem;
  }

  .nvg-faq-icon {
    width: 26px;
    height: 26px;
    font-size: 1.3rem;
  }

  .nvg-faq-answer p {
    padding: 0 var(--spacing-sm) var(--spacing-sm);
    font-size: 0.9rem;
  }

  /* Contact New - Mobile */
  .nvg-contact-new-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .nvg-contact-new-form-section {
    padding: var(--spacing-md);
  }

  .nvg-contact-new-title {
    font-size: 1.8rem;
  }

  .nvg-contact-new-subtitle {
    font-size: 1rem;
  }

  .nvg-contact-new-badge {
    font-size: 0.8rem;
    padding: 0.45rem 1.1rem;
  }

  .nvg-contact-new-emergency {
    padding: var(--spacing-md);
  }

  .nvg-contact-new-emergency-phone {
    font-size: 1.4rem;
  }

  .nvg-contact-new-emergency-icon {
    width: 55px;
    height: 55px;
  }

  .nvg-contact-new-details {
    padding: var(--spacing-md);
  }

  .nvg-contact-new-detail-item {
    padding: var(--spacing-sm);
  }

  .nvg-contact-new-detail-icon {
    width: 40px;
    height: 40px;
  }

  .nvg-contact-new-detail-text strong {
    font-size: 0.8rem;
  }

  .nvg-contact-new-detail-text span {
    font-size: 0.95rem;
  }

  .nvg-contact-new-feature {
    padding: var(--spacing-sm);
  }

  .nvg-contact-new-feature span {
    font-size: 0.9rem;
  }

  .cn-form-row {
    grid-template-columns: 1fr;
  }

  /* Hide button label on mobile */
  .nvg-btn-label {
    display: none;
  }

  /* SEO Text - Mobile */
  .nvg-seo-content {
    max-width: 100%;
    padding: 0 var(--spacing-sm);
  }

  .nvg-seo-content h2 {
    font-size: 1.6rem;
  }

  .nvg-seo-content h3 {
    font-size: 1.25rem;
  }

  .nvg-seo-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Footer - Mobile */
  .dw-footer-emergency {
    padding: var(--spacing-lg) 0;
  }

  .dw-footer-emergency-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
  }

  .dw-footer-emergency-title {
    font-size: 1.5rem;
  }

  .dw-footer-emergency-text {
    font-size: 0.95rem;
  }

  .dw-footer-emergency-button {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .dw-footer-emergency-button-icon {
    width: 45px;
    height: 45px;
  }

  .dw-footer-emergency-button-number {
    font-size: 1.3rem;
  }

  .dw-footer-main {
    padding: var(--spacing-lg) 0;
  }

  .dw-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
  }

  .dw-footer-col-company {
    grid-column: auto;
  }

  .dw-footer-col-title {
    font-size: 1rem;
  }

  .dw-footer-link {
    font-size: 0.9rem;
  }

  .dw-footer-trust-badges {
    grid-template-columns: 1fr;
  }

  .dw-footer-badge {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .dw-footer-badge-icon {
    width: 35px;
    height: 35px;
  }

  .dw-footer-areas {
    padding: var(--spacing-md);
  }

  .dw-footer-areas-title {
    font-size: 1rem;
  }

  .dw-footer-area-tag {
    font-size: 0.85rem;
    padding: 0.4rem 0.85rem;
  }
}

@media (max-width: 480px) {
  /* Services - Small Mobile */
  .nvg-services-badge {
    font-size: 0.72rem;
    padding: 0.38rem 1rem;
  }

  .nvg-services-title {
    font-size: 1.7rem;
  }

  .nvg-services-subtitle {
    font-size: 0.92rem;
  }

  .nvg-service-item {
    padding: var(--spacing-md);
  }

  .nvg-service-icon-circle {
    width: 75px;
    height: 75px;
  }

  .nvg-service-icon-circle img {
    width: 37px;
    height: 37px;
  }

  .nvg-service-number {
    font-size: 2.8rem;
  }

  .nvg-service-featured-badge {
    font-size: 0.68rem;
    padding: 0.38rem 0.9rem;
  }

  .nvg-service-heading {
    font-size: 1.2rem;
  }

  .nvg-service-text {
    font-size: 0.88rem;
  }

  .nvg-service-list li {
    font-size: 0.82rem;
  }

  .nvg-service-list li img {
    width: 17px;
    height: 17px;
  }

  .nvg-services-additional-title {
    font-size: 1.35rem;
  }

  .nvg-services-grid {
    grid-template-columns: 1fr;
  }

  .nvg-service-compact {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nvg-service-compact-icon {
    width: 52px;
    height: 52px;
  }

  .nvg-service-compact-icon img {
    width: 27px;
    height: 27px;
  }

  .nvg-service-compact-title {
    font-size: 0.92rem;
  }

  .nvg-service-compact-desc {
    font-size: 0.82rem;
  }

  .nvg-section-cta {
    padding: var(--spacing-md);
  }

  .nvg-section-cta p {
    font-size: 0.95rem;
  }

  .nvg-section-cta .nvg-btn {
    font-size: 0.92rem;
    padding: 0.8rem 1.3rem;
  }

  /* Why Choose Us - Small Mobile */
  .nvg-why-header-title {
    font-size: 1.7rem;
  }

  .nvg-why-header-desc {
    font-size: 0.92rem;
  }

  .nvg-why-layout {
    gap: var(--spacing-md);
  }

  .nvg-why-main {
    gap: var(--spacing-sm);
  }

  .nvg-why-main-card {
    padding: var(--spacing-md);
  }

  .nvg-why-main-icon {
    width: 75px;
    height: 75px;
  }

  .nvg-why-main-icon img {
    width: 42px;
    height: 42px;
  }

  .nvg-why-main-title {
    font-size: 1.2rem;
  }

  .nvg-why-main-desc {
    font-size: 0.88rem;
  }

  .nvg-why-main-list li {
    font-size: 0.82rem;
  }

  .nvg-why-side-card {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nvg-why-side-icon {
    width: 56px;
    height: 56px;
  }

  .nvg-why-side-icon img {
    width: 32px;
    height: 32px;
  }

  .nvg-why-side-title {
    font-size: 1.05rem;
  }

  .nvg-why-side-desc {
    font-size: 0.85rem;
  }

  /* Geography - Small Mobile */
  .nvg-geo-badge {
    font-size: 0.75rem;
    padding: 0.55rem 1.2rem;
  }

  .nvg-geo-badge img {
    width: 19px;
    height: 19px;
  }

  .nvg-geo-title {
    font-size: 1.75rem;
  }

  .nvg-geo-desc {
    font-size: 0.92rem;
  }

  .nvg-geo-regions {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .nvg-geo-region {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nvg-geo-region-icon {
    width: 48px;
    height: 48px;
  }

  .nvg-geo-region-icon img {
    width: 25px;
    height: 25px;
  }

  .nvg-geo-region-name {
    font-size: 1.25rem;
  }

  .nvg-geo-region-cities {
    gap: 0.5rem;
  }

  .nvg-geo-region-cities li {
    font-size: 0.88rem;
  }

  .nvg-geo-region-cities li img {
    width: 13px;
    height: 13px;
  }

  .nvg-geo-region-time {
    padding: 0.45rem 0.7rem;
  }

  .nvg-geo-region-time img {
    width: 13px;
    height: 13px;
  }

  .nvg-geo-region-time span {
    font-size: 0.8rem;
  }

  .nvg-geo-cta {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nvg-geo-cta-icon {
    width: 56px;
    height: 56px;
  }

  .nvg-geo-cta-icon img {
    width: 26px;
    height: 26px;
  }

  .nvg-geo-cta-title {
    font-size: 1.25rem;
  }

  .nvg-geo-cta-subtitle {
    font-size: 0.88rem;
  }

  .nvg-geo-cta .nvg-btn {
    padding: 0.85rem 1.3rem;
    font-size: 0.95rem;
  }

  /* Work Process - Small Mobile */
  .nvg-section-label {
    font-size: 0.75rem;
    padding: 0.45rem 1.1rem;
  }

  .nvg-section-title {
    font-size: 1.7rem;
  }

  .nvg-section-desc {
    font-size: 0.92rem;
  }

  .nvg-process-timeline::before {
    left: 28px;
  }

  .nvg-process-step {
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
  }

  .nvg-process-number {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .nvg-process-content {
    padding: var(--spacing-sm);
  }

  .nvg-process-content .nvg-process-title {
    font-size: 1.15rem;
  }

  .nvg-process-desc {
    font-size: 0.88rem;
  }

  .nvg-process-icon {
    width: 48px;
    height: 48px;
  }

  .nvg-process-icon img {
    width: 24px;
    height: 24px;
  }

  /* Portfolio - Small Mobile */
  .nvg-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .nvg-portfolio-img {
    height: 200px;
  }

  .nvg-portfolio-title {
    font-size: 1rem;
  }

  .nvg-portfolio-desc {
    font-size: 0.82rem;
  }

  .nvg-portfolio-meta {
    font-size: 0.72rem;
  }

  .nvg-portfolio-tag {
    font-size: 0.68rem;
  }

  /* Blog - Small Mobile */
  .nvg-blog-grid {
    grid-template-columns: 1fr;
  }

  .nvg-blog-title {
    font-size: 1.75rem;
  }

  /* Pricing - Small Mobile */
  .nvg-pricing-grid {
    grid-template-columns: 1fr;
  }

  .nvg-pricing-card {
    padding: var(--spacing-sm) var(--spacing-xs);
  }

  .nvg-pricing-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.9rem;
  }

  .nvg-pricing-header h3 {
    font-size: 1.1rem;
  }

  .nvg-pricing-header img {
    width: 32px;
    height: 32px;
  }

  .nvg-pricing-amount {
    font-size: 2.3rem;
  }

  .nvg-pricing-currency {
    font-size: 1.2rem;
  }

  .nvg-pricing-from {
    font-size: 0.9rem;
  }

  .nvg-pricing-desc {
    font-size: 0.82rem;
  }

  .nvg-pricing-features li {
    font-size: 0.8rem;
  }

  .nvg-pricing-features img {
    width: 13px;
    height: 13px;
  }

  .nvg-pricing-note {
    font-size: 0.85rem;
  }

  /* About - Small Mobile */
  .nvg-about-grid {
    grid-template-columns: 1fr;
  }

  .nvg-about-image {
    height: 350px;
  }

  .nvg-about-badge {
    padding: var(--spacing-xs);
  }

  .nvg-about-badge-number {
    font-size: 1.8rem;
  }

  .nvg-about-badge-text {
    font-size: 0.75rem;
  }

  .nvg-about-text {
    font-size: 0.92rem;
  }

  .nvg-about-features {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
  }

  .nvg-about-feature-icon {
    width: 40px;
    height: 40px;
  }

  .nvg-about-feature-icon img {
    width: 24px;
    height: 24px;
  }

  .nvg-about-feature-content h4 {
    font-size: 0.97rem;
  }

  .nvg-about-feature-content p {
    font-size: 0.82rem;
  }

  /* Reviews - Small Mobile */
  .nvg-reviews-grid {
    grid-template-columns: 1fr;
  }

  .nvg-review-card {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .nvg-review-name {
    font-size: 1.05rem;
  }

  .nvg-review-service {
    font-size: 0.78rem;
  }

  .nvg-review-rating {
    font-size: 1.05rem;
  }

  .nvg-review-comment {
    font-size: 0.88rem;
  }

  .nvg-review-date {
    font-size: 0.78rem;
  }

  /* Blog - Small Mobile */
  .nvg-blog-grid {
    grid-template-columns: 1fr;
  }

  .nvg-blog-img {
    height: 180px;
  }

  .nvg-blog-content {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .nvg-blog-title {
    font-size: 1.05rem;
  }

  .nvg-blog-excerpt {
    font-size: 0.82rem;
  }

  .nvg-blog-category {
    font-size: 0.7rem;
    padding: 0.25rem 0.65rem;
  }

  .nvg-blog-link {
    font-size: 0.85rem;
  }

  /* FAQ - Small Mobile */
  .nvg-faq-item {
    margin-bottom: var(--spacing-xs);
  }

  .nvg-faq-question {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.97rem;
  }

  .nvg-faq-icon {
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
  }

  .nvg-faq-answer p {
    padding: 0 var(--spacing-sm) var(--spacing-xs);
    font-size: 0.88rem;
  }

  /* Contact New - Small Mobile */
  .nvg-contact-new-form-section {
    padding: var(--spacing-sm);
  }

  .nvg-contact-new-title {
    font-size: 1.7rem;
  }

  .nvg-contact-new-subtitle {
    font-size: 0.95rem;
  }

  .nvg-contact-new-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .nvg-contact-new-emergency {
    padding: var(--spacing-sm);
    flex-direction: column;
    text-align: center;
  }

  .nvg-contact-new-emergency-phone {
    font-size: 1.3rem;
  }

  .nvg-contact-new-emergency-icon {
    width: 50px;
    height: 50px;
  }

  .nvg-contact-new-details {
    padding: var(--spacing-sm);
  }

  .nvg-contact-new-details h4 {
    font-size: 1.15rem;
  }

  .nvg-contact-new-detail-item {
    padding: var(--spacing-xs);
  }

  .nvg-contact-new-detail-icon {
    width: 38px;
    height: 38px;
  }

  .nvg-contact-new-detail-text strong {
    font-size: 0.78rem;
  }

  .nvg-contact-new-detail-text span {
    font-size: 0.92rem;
  }

  .nvg-contact-new-feature {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .nvg-contact-new-feature span {
    font-size: 0.88rem;
  }

  /* Contact - Small Mobile */
  .nvg-contact-grid {
    grid-template-columns: 1fr;
  }

  .nvg-contact-info h3 {
    font-size: 1.55rem;
  }

  .nvg-contact-item {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  /* SEO Text - Small Mobile */
  .nvg-seo-content {
    padding: 0 var(--spacing-xs);
  }

  .nvg-seo-content h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
  }

  .nvg-seo-content h3 {
    font-size: 1.2rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
  }

  .nvg-seo-content p {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: var(--spacing-sm);
  }

  .nvg-seo-text h2 {
    font-size: 1.75rem;
  }

  .nvg-seo-text h3 {
    font-size: 1.35rem;
  }

  .nvg-seo-text p {
    font-size: 0.92rem;
  }

  /* Footer - Small Mobile */
  .dw-footer-emergency {
    padding: var(--spacing-md) 0;
  }

  .dw-footer-emergency-badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  .dw-footer-emergency-badge img {
    width: 16px;
    height: 16px;
  }

  .dw-footer-emergency-title {
    font-size: 1.35rem;
  }

  .dw-footer-emergency-text {
    font-size: 0.9rem;
  }

  .dw-footer-emergency-button {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .dw-footer-emergency-button-icon {
    width: 40px;
    height: 40px;
  }

  .dw-footer-emergency-button-icon img {
    width: 20px;
    height: 20px;
  }

  .dw-footer-emergency-button-label {
    font-size: 0.75rem;
  }

  .dw-footer-emergency-button-number {
    font-size: 1.2rem;
  }

  .dw-footer-main {
    padding: var(--spacing-md) 0;
  }

  .dw-footer-grid {
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
  }

  .dw-footer-logo img {
    max-width: 120px;
  }

  .dw-footer-tagline {
    font-size: 1rem;
  }

  .dw-footer-description {
    font-size: 0.9rem;
  }

  .dw-footer-contact-item {
    font-size: 0.9rem;
  }

  .dw-footer-col-title {
    font-size: 0.95rem;
  }

  .dw-footer-link {
    font-size: 0.85rem;
  }

  .dw-footer-badge {
    padding: var(--spacing-xs);
  }

  .dw-footer-badge-icon {
    width: 32px;
    height: 32px;
  }

  .dw-footer-badge-icon img {
    width: 24px;
    height: 24px;
  }

  .dw-footer-badge-title {
    font-size: 0.85rem;
  }

  .dw-footer-badge-text {
    font-size: 0.75rem;
  }

  .dw-footer-areas {
    padding: var(--spacing-sm);
  }

  .dw-footer-areas-title {
    font-size: 0.95rem;
  }

  .dw-footer-area-tag {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
  }

  /* Fixed Call Button - Small Mobile */
  .nvg-fixed-call {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .nvg-fixed-call img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 375px) {
  .nvg-container {
    padding: 0 var(--spacing-sm);
  }

  /* Section Spacing - Extra Small */
  section {
    padding: var(--spacing-md) 0;
  }

  section.nvg-hero {
    padding: var(--spacing-sm) 0;
  }

  .nvg-hero-title-main {
    font-size: 1.75rem;
  }

  .nvg-hero-title-sub {
    font-size: 1rem;
  }

  .nvg-hero-description {
    font-size: 0.95rem;
  }

  .nvg-hero-feature {
    font-size: 0.85rem;
  }

  .nvg-hero-feature img {
    width: 18px;
    height: 18px;
  }

  .nvg-hero-btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
  }

  .nvg-hero-btn-number {
    font-size: 0.95rem;
  }

  .nvg-hero-image-label {
    padding: 0.7rem 1rem;
  }

  .nvg-hero-image-label strong {
    font-size: 1.1rem;
  }

  .nvg-hero-image-label span {
    font-size: 0.7rem;
  }

  /* Services - Extra Small */
  .nvg-services-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.9rem;
  }

  .nvg-services-title {
    font-size: 1.6rem;
  }

  .nvg-services-subtitle {
    font-size: 0.9rem;
  }

  .nvg-service-item {
    padding: var(--spacing-md);
  }

  .nvg-service-icon-circle {
    width: 70px;
    height: 70px;
  }

  .nvg-service-icon-circle img {
    width: 35px;
    height: 35px;
  }

  .nvg-service-number {
    font-size: 2.5rem;
  }

  .nvg-service-featured-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.8rem;
  }

  .nvg-service-heading {
    font-size: 1.15rem;
  }

  .nvg-service-text {
    font-size: 0.85rem;
  }

  .nvg-service-list li {
    font-size: 0.8rem;
  }

  .nvg-service-list li img {
    width: 16px;
    height: 16px;
  }

  .nvg-services-additional-title {
    font-size: 1.3rem;
  }

  .nvg-services-grid {
    grid-template-columns: 1fr;
  }

  .nvg-service-compact {
    padding: var(--spacing-sm);
  }

  .nvg-service-compact-icon {
    width: 50px;
    height: 50px;
  }

  .nvg-service-compact-icon img {
    width: 26px;
    height: 26px;
  }

  .nvg-service-compact-title {
    font-size: 0.9rem;
  }

  .nvg-service-compact-desc {
    font-size: 0.8rem;
  }

  .nvg-section-cta {
    padding: var(--spacing-md);
  }

  .nvg-section-cta p {
    font-size: 0.9rem;
  }

  .nvg-section-cta .nvg-btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.2rem;
  }

  /* Geography - Extra Small */
  .nvg-geo-badge {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }

  .nvg-geo-badge img {
    width: 18px;
    height: 18px;
  }

  .nvg-geo-title {
    font-size: 1.5rem;
  }

  .nvg-geo-desc {
    font-size: 0.88rem;
  }

  .nvg-geo-regions {
    gap: var(--spacing-xs);
  }

  .nvg-geo-region {
    padding: var(--spacing-sm);
  }

  .nvg-geo-region-icon {
    width: 45px;
    height: 45px;
  }

  .nvg-geo-region-icon img {
    width: 24px;
    height: 24px;
  }

  .nvg-geo-region-name {
    font-size: 1.2rem;
  }

  .nvg-geo-region-cities {
    gap: 0.4rem;
  }

  .nvg-geo-region-cities li {
    font-size: 0.85rem;
  }

  .nvg-geo-region-cities li img {
    width: 12px;
    height: 12px;
  }

  .nvg-geo-region-time {
    padding: 0.4rem 0.6rem;
  }

  .nvg-geo-region-time img {
    width: 12px;
    height: 12px;
  }

  .nvg-geo-region-time span {
    font-size: 0.8rem;
  }

  .nvg-geo-cta {
    padding: var(--spacing-sm);
  }

  .nvg-geo-cta-icon {
    width: 52px;
    height: 52px;
  }

  .nvg-geo-cta-icon img {
    width: 24px;
    height: 24px;
  }

  .nvg-geo-cta-title {
    font-size: 1.2rem;
  }

  .nvg-geo-cta-subtitle {
    font-size: 0.85rem;
  }

  .nvg-geo-cta .nvg-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .nvg-contact-badges {
    gap: var(--spacing-xs);
  }

  /* Contact Section - Extra Small */
  .nvg-contact-new-title {
    font-size: 1.5rem;
  }

  .nvg-contact-new-form-section,
  .nvg-contact-new-details {
    padding: var(--spacing-md);
  }

  .nvg-contact-new-emergency {
    padding: var(--spacing-sm);
  }

  .nvg-contact-new-emergency-icon {
    width: 50px;
    height: 50px;
  }

  .nvg-contact-new-emergency-phone {
    font-size: 1.3rem;
  }

  /* Footer - Extra Small */
  .dw-footer-emergency-title {
    font-size: 1.3rem;
  }

  .dw-footer-emergency-button {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .dw-footer-emergency-button-icon {
    width: 40px;
    height: 40px;
  }

  .dw-footer-emergency-button-number {
    font-size: 1.3rem;
  }

  .dw-footer-areas-tags {
    gap: 0.5rem;
  }

  .dw-footer-area-tag {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
  }

  /* Why Choose Us - Extra Small */
  .nvg-why-header-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }

  .nvg-why-header-badge img {
    width: 22px;
    height: 22px;
  }

  .nvg-why-header-title {
    font-size: 1.5rem;
  }

  .nvg-why-header-desc {
    font-size: 0.88rem;
  }

  .nvg-why-layout {
    gap: var(--spacing-sm);
  }

  .nvg-why-main {
    gap: var(--spacing-xs);
  }

  .nvg-why-main-card {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  .nvg-why-main-icon {
    width: 70px;
    height: 70px;
  }

  .nvg-why-main-icon img {
    width: 38px;
    height: 38px;
  }

  .nvg-why-main-title {
    font-size: 1.1rem;
  }

  .nvg-why-main-desc {
    font-size: 0.85rem;
  }

  .nvg-why-main-list li {
    font-size: 0.8rem;
  }

  .nvg-why-main-list li img {
    width: 16px;
    height: 16px;
  }

  .nvg-why-side {
    gap: var(--spacing-xs);
  }

  .nvg-why-side-card {
    padding: var(--spacing-sm);
  }

  .nvg-why-side-icon {
    width: 52px;
    height: 52px;
  }

  .nvg-why-side-icon img {
    width: 30px;
    height: 30px;
  }

  .nvg-why-side-title {
    font-size: 1rem;
  }

  .nvg-why-side-desc {
    font-size: 0.82rem;
  }

  /* Work Process - Extra Small */
  .nvg-section-label {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .nvg-section-title {
    font-size: 1.5rem;
  }

  .nvg-section-desc {
    font-size: 0.88rem;
  }

  .nvg-process-timeline::before {
    left: 25px;
  }

  .nvg-process-step {
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
  }

  .nvg-process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .nvg-process-content {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .nvg-process-content .nvg-process-title {
    font-size: 1.05rem;
  }

  .nvg-process-desc {
    font-size: 0.82rem;
  }

  .nvg-process-icon {
    width: 45px;
    height: 45px;
  }

  .nvg-process-icon img {
    width: 22px;
    height: 22px;
  }

  /* Portfolio - Extra Small */
  .nvg-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .nvg-portfolio-img {
    height: 180px;
  }

  .nvg-portfolio-content {
    padding: var(--spacing-xs);
  }

  .nvg-portfolio-title {
    font-size: 0.95rem;
  }

  .nvg-portfolio-desc {
    font-size: 0.8rem;
  }

  .nvg-portfolio-meta {
    font-size: 0.7rem;
  }

  .nvg-portfolio-meta li img {
    width: 11px;
    height: 11px;
  }

  .nvg-portfolio-tag {
    font-size: 0.65rem;
    padding: 0.28rem 0.65rem;
  }

  /* Blog - Extra Small */
  .nvg-blog-title {
    font-size: 1.5rem;
  }

  .nvg-blog-grid {
    grid-template-columns: 1fr;
  }

  .nvg-blog-item-title {
    font-size: 1.05rem;
  }

  /* Pricing - Extra Small */
  .nvg-pricing-grid {
    grid-template-columns: 1fr;
  }

  .nvg-pricing-card {
    padding: var(--spacing-xs);
  }

  .nvg-pricing-badge {
    font-size: 0.68rem;
    padding: 0.28rem 0.8rem;
  }

  .nvg-pricing-header h3 {
    font-size: 1rem;
  }

  .nvg-pricing-header img {
    width: 30px;
    height: 30px;
  }

  .nvg-pricing-amount {
    font-size: 2.1rem;
  }

  .nvg-pricing-currency {
    font-size: 1.1rem;
  }

  .nvg-pricing-from {
    font-size: 0.85rem;
  }

  .nvg-pricing-desc {
    font-size: 0.8rem;
  }

  .nvg-pricing-features li {
    font-size: 0.78rem;
  }

  .nvg-pricing-features img {
    width: 12px;
    height: 12px;
  }

  .nvg-pricing-note {
    font-size: 0.82rem;
    padding: var(--spacing-xs);
  }

  /* About - Extra Small */
  .nvg-about-grid {
    grid-template-columns: 1fr;
  }

  .nvg-about-image {
    height: 320px;
  }

  .nvg-about-badge {
    padding: var(--spacing-xs);
    left: var(--spacing-xs);
    bottom: var(--spacing-xs);
  }

  .nvg-about-badge-number {
    font-size: 1.6rem;
  }

  .nvg-about-badge-text {
    font-size: 0.7rem;
  }

  .nvg-about-content {
    padding: var(--spacing-xs);
  }

  .nvg-about-text {
    font-size: 0.88rem;
  }

  .nvg-about-features {
    grid-template-columns: 1fr;
  }

  .nvg-about-feature-icon {
    width: 38px;
    height: 38px;
  }

  .nvg-about-feature-icon img {
    width: 22px;
    height: 22px;
  }

  .nvg-about-feature-content h4 {
    font-size: 0.92rem;
  }

  .nvg-about-feature-content p {
    font-size: 0.8rem;
  }

  /* Reviews - Extra Small */
  .nvg-reviews-grid {
    grid-template-columns: 1fr;
  }

  .nvg-review-card {
    padding: var(--spacing-xs);
  }

  .nvg-review-name {
    font-size: 1rem;
  }

  .nvg-review-service {
    font-size: 0.75rem;
    padding: 0.2rem 0.65rem;
  }

  .nvg-review-rating {
    font-size: 1rem;
  }

  .nvg-review-comment {
    font-size: 0.85rem;
  }

  .nvg-review-date {
    font-size: 0.75rem;
  }

  /* Blog - Extra Small */
  .nvg-blog-grid {
    grid-template-columns: 1fr;
  }

  .nvg-blog-img {
    height: 170px;
  }

  .nvg-blog-content {
    padding: var(--spacing-xs);
  }

  .nvg-blog-title {
    font-size: 1rem;
  }

  .nvg-blog-excerpt {
    font-size: 0.8rem;
  }

  .nvg-blog-category {
    font-size: 0.68rem;
    padding: 0.22rem 0.6rem;
  }

  .nvg-blog-link {
    font-size: 0.82rem;
  }

  /* FAQ - Extra Small */
  .nvg-faq-question {
    padding: var(--spacing-xs);
    font-size: 0.92rem;
  }

  .nvg-faq-icon {
    width: 22px;
    height: 22px;
    font-size: 1.1rem;
  }

  .nvg-faq-answer p {
    padding: 0 var(--spacing-xs) var(--spacing-xs);
    font-size: 0.85rem;
  }

  /* Contact New - Extra Small */
  .nvg-contact-new-form-section {
    padding: var(--spacing-xs);
  }

  .nvg-contact-new-title {
    font-size: 1.5rem;
  }

  .nvg-contact-new-subtitle {
    font-size: 0.9rem;
  }

  .nvg-contact-new-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.9rem;
  }

  .nvg-contact-new-badge img {
    width: 14px;
    height: 14px;
  }

  .nvg-contact-new-emergency {
    padding: var(--spacing-xs);
  }

  .nvg-contact-new-emergency-phone {
    font-size: 1.2rem;
  }

  .nvg-contact-new-emergency-label {
    font-size: 0.8rem;
  }

  .nvg-contact-new-emergency-status {
    font-size: 0.85rem;
  }

  .nvg-contact-new-emergency-icon {
    width: 45px;
    height: 45px;
  }

  .nvg-contact-new-emergency-icon img {
    width: 28px;
    height: 28px;
  }

  .nvg-contact-new-details {
    padding: var(--spacing-xs);
  }

  .nvg-contact-new-details h4 {
    font-size: 1.1rem;
  }

  .nvg-contact-new-detail-item {
    padding: var(--spacing-xs);
  }

  .nvg-contact-new-detail-icon {
    width: 36px;
    height: 36px;
  }

  .nvg-contact-new-detail-icon img {
    width: 18px;
    height: 18px;
  }

  .nvg-contact-new-detail-text strong {
    font-size: 0.75rem;
  }

  .nvg-contact-new-detail-text span {
    font-size: 0.88rem;
  }

  .nvg-contact-new-feature {
    padding: var(--spacing-xs);
  }

  .nvg-contact-new-feature img {
    width: 22px;
    height: 22px;
  }

  .nvg-contact-new-feature span {
    font-size: 0.85rem;
  }

  /* SEO Text - Extra Small */
  .nvg-seo-content {
    padding: 0 var(--spacing-xs);
  }

  .nvg-seo-content h2 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
  }

  .nvg-seo-content h3 {
    font-size: 1.15rem;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
  }

  .nvg-seo-content p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
  }

  .nvg-seo-text h2 {
    font-size: 1.5rem;
  }

  .nvg-seo-text h3 {
    font-size: 1.2rem;
  }

  .nvg-seo-text p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* Footer - Extra Small */
  .dw-container {
    padding: 0 var(--spacing-xs);
  }

  .dw-footer-emergency {
    padding: var(--spacing-sm) 0;
  }

  .dw-footer-emergency-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.65rem;
    gap: 0.35rem;
  }

  .dw-footer-emergency-badge img {
    width: 14px;
    height: 14px;
  }

  .dw-footer-emergency-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
  }

  .dw-footer-emergency-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .dw-footer-emergency-button {
    padding: var(--spacing-xs);
    gap: var(--spacing-xs);
    flex-direction: column;
    text-align: center;
  }

  .dw-footer-emergency-button-icon {
    width: 36px;
    height: 36px;
  }

  .dw-footer-emergency-button-icon img {
    width: 18px;
    height: 18px;
  }

  .dw-footer-emergency-button-label {
    font-size: 0.7rem;
  }

  .dw-footer-emergency-button-number {
    font-size: 1.1rem;
  }

  .dw-footer-main {
    padding: var(--spacing-sm) 0;
  }

  .dw-footer-grid {
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
  }

  .dw-footer-logo img {
    max-width: 110px;
  }

  .dw-footer-tagline {
    font-size: 0.95rem;
  }

  .dw-footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .dw-footer-contacts {
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
  }

  .dw-footer-contact-item {
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .dw-footer-contact-item img {
    width: 18px;
    height: 18px;
  }

  .dw-footer-col-title {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
  }

  .dw-footer-col-title img {
    width: 16px;
    height: 16px;
  }

  .dw-footer-nav {
    gap: 0.15rem;
  }

  .dw-footer-link {
    font-size: 0.8rem;
    padding: 0.25rem 0;
  }

  .dw-footer-badge {
    padding: 0.35rem 0.5rem;
  }

  .dw-footer-badge-icon {
    width: 30px;
    height: 30px;
  }

  .dw-footer-badge-icon img {
    width: 22px;
    height: 22px;
  }

  .dw-footer-badge-title {
    font-size: 0.8rem;
  }

  .dw-footer-badge-text {
    font-size: 0.7rem;
  }

  .dw-footer-areas {
    padding: var(--spacing-xs);
  }

  .dw-footer-areas-header {
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
  }

  .dw-footer-areas-header img {
    width: 20px;
    height: 20px;
  }

  .dw-footer-areas-title {
    font-size: 0.9rem;
  }

  .dw-footer-area-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.65rem;
  }

  /* Fixed Call Button - Extra Small */
  .nvg-fixed-call {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .nvg-fixed-call img {
    width: 22px;
    height: 22px;
  }
}

/* Mobile Styles (Tablet and below) */
@media (max-width: 768px) {
  /* Contact Section - Mobile */
  .nvg-contact-new::before {
    width: 250px;
    height: 250px;
    left: -50px;
  }

  .nvg-contact-new::after {
    width: 300px;
    height: 300px;
    right: -50px;
  }

  .nvg-contact-new-header {
    margin-bottom: var(--spacing-lg);
  }

  .nvg-contact-new-header-content {
    padding: 0 var(--spacing-sm);
  }

  .nvg-contact-new-title {
    font-size: 1.75rem;
  }

  .nvg-contact-new-subtitle {
    font-size: 1rem;
  }

  .nvg-contact-new-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .nvg-contact-new-form-section {
    padding: var(--spacing-lg);
    order: 2;
  }

  .nvg-contact-new-form-header h3 {
    font-size: 1.5rem;
  }

  .nvg-contact-new-sidebar {
    order: 1;
  }

  .nvg-contact-new-emergency {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-md);
  }

  .nvg-contact-new-emergency-icon {
    width: 60px;
    height: 60px;
  }

  .nvg-contact-new-emergency-phone {
    font-size: 1.5rem;
  }

  .nvg-contact-new-details {
    padding: var(--spacing-md);
  }

  .nvg-contact-new-details h4 {
    font-size: 1.1rem;
  }

  .nvg-contact-new-detail-item {
    padding: var(--spacing-sm);
  }

  .nvg-contact-new-detail-icon {
    width: 40px;
    height: 40px;
  }

  .nvg-contact-new-detail-text strong {
    font-size: 0.75rem;
  }

  .nvg-contact-new-detail-text span {
    font-size: 0.9rem;
  }

  .nvg-contact-new-feature {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .nvg-contact-new-feature span {
    font-size: 0.85rem;
  }

  /* Contact Form - Mobile */
  .cn-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dcr-input,
  .cn-input,
  .dw-contact-wow-input,
  .dcr-textarea,
  .cn-textarea,
  .dw-contact-wow-textarea {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  .dcr-btn,
  .dcr-btn-primary,
  .cn-submit-btn,
  .dw-contact-wow-submit {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .dw-contact-wow-submit-arrow {
    font-size: 1.3rem;
  }

  /* Footer - Mobile */
  .dw-footer-emergency-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .dw-footer-emergency-title {
    font-size: 1.5rem;
  }

  .dw-footer-emergency-text {
    font-size: 1rem;
  }

  .dw-footer-emergency-right {
    justify-content: center;
  }

  .dw-footer-emergency-button {
    width: 100%;
    max-width: 400px;
  }

  .dw-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .dw-footer-col-title {
    font-size: 1rem;
  }

  .dw-footer-trust-badges {
    grid-template-columns: 1fr;
  }

  .dw-footer-areas {
    padding: var(--spacing-md);
  }

  .dw-footer-areas-title {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  .nvg-header,
  .nvg-fixed-call,
  .nvg-mobile-toggle,
  .nvg-hero-cta,
  .nvg-contact-new-form-section {
    display: none;
  }

  body {
    max-width: 100%;
  }
}
