/*
Theme Name: Vaskehelten
Theme URI: https://vaskehelten.dk
Author: Vaskehelten
Author URI: https://vaskehelten.dk
Description: Premium WordPress tema 2026 til Vaskehelten - Professionel rengøringsservice. Flytterengøring, privatrengøring, hovedrengøring, trappevask og kontorrengøring. Dansk SEO-venligt tema med glassmorphism design, Bootstrap 5, Swiper.js og GSAP animationer.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flavor
Tags: cleaning-service, danish, seo, glassmorphism, bootstrap, responsive, premium

Vaskehelten - Professionel rengøringsservice i hele Sjælland
Premium Edition 2026
*/

/* ==========================================================================
   CSS Custom Properties / Design Tokens - PREMIUM 2026
   ========================================================================== */

:root {
    /* Brand Colors - GRØN & BLÅ (Vaskehelten) */
    --vh-primary: #68bd45;
    --vh-primary-dark: #4a9130;
    --vh-primary-light: #8cd46a;
    --vh-primary-rgb: 104, 189, 69;

    --vh-secondary: #4eace1;
    --vh-secondary-dark: #3a8ab8;
    --vh-secondary-light: #7cc5ec;
    --vh-secondary-rgb: 78, 172, 225;

    /* Neutral Colors */
    --vh-white: #ffffff;
    --vh-black: #231f20;
    --vh-dark: #1a1a2e;
    --vh-gray-50: #fafafa;
    --vh-gray-100: #f5f5f7;
    --vh-gray-200: #e5e5e5;
    --vh-gray-300: #d4d4d4;
    --vh-gray-400: #a3a3a3;
    --vh-gray-500: #737373;
    --vh-gray-600: #525252;
    --vh-gray-700: #404040;
    --vh-gray-800: #262626;
    --vh-gray-900: #171717;

    /* Accent Colors */
    --vh-success: #68bd45;
    --vh-warning: #f59e0b;
    --vh-danger: #ef4444;
    --vh-info: #3b82f6;

    /* Glassmorphism - Synlig på baggrunde */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-medium: rgba(255, 255, 255, 0.15);
    --glass-bg-strong: rgba(255, 255, 255, 0.2);
    --glass-bg-white: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-strong: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(20px);
    --glass-blur-strong: blur(30px);

    /* Dark Glassmorphism */
    --glass-dark: rgba(0, 0, 0, 0.5);
    --glass-dark-strong: rgba(0, 0, 0, 0.7);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', var(--font-primary);

    /* Font Sizes - Refined 2026 */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.375rem;
    --fs-3xl: 1.625rem;
    --fs-4xl: 1.875rem;
    --fs-5xl: 2.25rem;
    --fs-6xl: 2.75rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    --spacing-5xl: 8rem;

    /* Border Radius - MODERNE 2026 */
    --radius-none: 0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

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

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--vh-gray-700);
    background-color: var(--vh-white);
    overflow-x: hidden;
}

::selection {
    background-color: var(--vh-primary);
    color: var(--vh-white);
}

:focus-visible {
    outline: 2px solid var(--vh-primary);
    outline-offset: 2px;
}

.container {
    max-width: 1320px !important;
    width: 100% !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--vh-gray-900);
    margin-bottom: var(--spacing-md);
}

h1, .h1 { font-size: clamp(1.75rem, 4vw, var(--fs-6xl)); }
h2, .h2 { font-size: clamp(1.5rem, 3vw, var(--fs-5xl)); }
h3, .h3 { font-size: clamp(1.25rem, 2.5vw, var(--fs-4xl)); }
h4, .h4 { font-size: var(--fs-2xl); }
h5, .h5 { font-size: var(--fs-xl); }
h6, .h6 { font-size: var(--fs-lg); }

p {
    margin-bottom: var(--spacing-md);
}

.lead {
    font-size: var(--fs-xl);
    font-weight: 400;
    color: var(--vh-gray-600);
}

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

a:hover {
    color: var(--vh-primary-dark);
}

/* ==========================================================================
   Glassmorphism Components
   ========================================================================== */

.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.glass-strong {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur-strong);
    -webkit-backdrop-filter: var(--glass-blur-strong);
    border: 1px solid var(--glass-border-strong);
}

.glass-card {
    background: var(--vh-white);
    border: 1px solid var(--vh-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.glass-dark {
    background: var(--glass-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Buttons - MODERNE 2026
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* Button Shine Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--vh-primary) 0%, var(--vh-primary-dark) 100%);
    color: var(--vh-white);
    border-color: var(--vh-primary);
    box-shadow: 0 4px 15px rgba(104, 189, 69, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--vh-primary-light) 0%, var(--vh-primary) 100%);
    border-color: var(--vh-primary);
    color: var(--vh-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(104, 189, 69, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(104, 189, 69, 0.2);
}

.btn-secondary {
    background: var(--vh-secondary);
    color: var(--vh-white);
    border-color: var(--vh-secondary);
}

.btn-secondary:hover {
    background: var(--vh-secondary-dark);
    border-color: var(--vh-secondary-dark);
    color: var(--vh-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(78, 172, 225, 0.3);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(78, 172, 225, 0.2);
}

.btn-outline-primary {
    background: transparent;
    color: var(--vh-primary);
    border-color: var(--vh-primary);
}

.btn-outline-primary:hover {
    background: var(--vh-primary);
    color: var(--vh-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(104, 189, 69, 0.25);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    color: var(--vh-white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
    background: var(--vh-white);
    color: var(--vh-primary);
    border-color: var(--vh-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-outline-gold {
    background: transparent;
    color: var(--vh-secondary);
    border-color: var(--vh-secondary);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--fs-base);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--fs-xs);
}

/* ==========================================================================
   Header & Navigation - SPLIT MED CENTRERET LOGO
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: var(--spacing-md) 0;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    padding: var(--spacing-xs) 0;
}

.site-header.scrolled .header-inner {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xs) var(--spacing-xl);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

/* Left Logo */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.site-logo {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all var(--transition-base);
    cursor: pointer;
}

/* Logo hover animation */
.header-logo a:hover .site-logo,
.footer-logo-link:hover .footer-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(104, 189, 69, 0.3));
}

/* Logo click animation */
.site-logo.logo-clicked,
.footer-logo.logo-clicked {
    animation: logo-bounce 0.3s ease-out;
}

@keyframes logo-bounce {
    0% { transform: scale(1); }
    50% { transform: scale(0.92); }
    100% { transform: scale(1); }
}

.site-header.scrolled .site-logo {
    height: 70px;
}

/* Right Navigation + CTA */
.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--spacing-xl);
    flex-shrink: 0;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-cta-text-short {
    display: none;
}

@media (max-width: 1199.98px) {
    .header-cta-text-long {
        display: none;
    }
    .header-cta-text-short {
        display: inline;
    }
}

/* Nav Links - always dark on white header */
.nav-link {
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--vh-gray-800);
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

/* Hover underline only for non-dropdown nav links */
.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vh-secondary);
    transition: width var(--transition-base);
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
    width: 100%;
}

/* Dropdown toggle arrow */
.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    border: solid currentColor;
    border-width: 0 1.5px 1.5px 0;
    padding: 2.5px;
    transform: rotate(45deg);
    vertical-align: middle;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
}

.nav-link:hover,
.nav-link.active {
    color: var(--vh-primary);
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--vh-gray-800);
}

.header-phone i {
    font-size: var(--fs-lg);
    color: var(--vh-secondary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--vh-white);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-sm);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 1000;
    pointer-events: none;
}

/* Bridge element to prevent gap between trigger and menu */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Nav link icons - Gold when at top, Blue when scrolled */
.nav-link .nav-icon {
    margin-right: 0.5rem;
    color: var(--vh-secondary);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.site-header.scrolled .nav-link .nav-icon {
    color: var(--vh-primary);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: var(--fs-sm);
    color: var(--vh-gray-700);
    transition: all var(--transition-fast);
}

.dropdown-item i {
    color: var(--vh-primary);
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
}

.dropdown-item:hover {
    background: var(--vh-primary);
    color: var(--vh-white);
}

.dropdown-item:hover i {
    color: var(--vh-white);
}

/* Areas Dropdown - 2 columns */
.dropdown-menu-areas {
    min-width: 320px;
}

.dropdown-areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.dropdown-areas-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-areas-list li {
    margin: 0;
}

.dropdown-areas-footer {
    border-top: 1px solid var(--vh-gray-200);
    padding: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.dropdown-item-all {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--vh-primary);
    font-weight: 600;
}

.dropdown-item-all:hover {
    color: var(--vh-primary-dark);
    background: var(--vh-gray-100);
}

/* Mobile Menu Toggle */
.navbar-toggler {
    display: none;
    border: none;
    padding: var(--spacing-sm);
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

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

.hamburger span {
    display: block;
    height: 2px;
    background: var(--vh-gray-800);
    transition: all var(--transition-base);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    max-height: 900px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        145deg,
        rgba(30, 80, 120, 0.88) 0%,
        rgba(55, 140, 190, 0.80) 40%,
        rgba(78, 172, 225, 0.75) 70%,
        rgba(80, 170, 80, 0.70) 100%
    );
    z-index: 1;
}

/* Hero Floating Bubbles */
.hero-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-bubbles .bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float-bubble 20s ease-in-out infinite;
}

.hero-bubbles .bubble-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-bubbles .bubble-2 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    animation-delay: -3s;
    background: rgba(104, 189, 69, 0.12);
}

.hero-bubbles .bubble-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 5%;
    animation-delay: -6s;
}

.hero-bubbles .bubble-4 {
    width: 50px;
    height: 50px;
    top: 70%;
    right: 15%;
    animation-delay: -9s;
    background: rgba(104, 189, 69, 0.08);
}

.hero-bubbles .bubble-5 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 30%;
    animation-delay: -12s;
    background: rgba(104, 189, 69, 0.12);
}

.hero-bubbles .bubble-6 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 25%;
    animation-delay: -15s;
}

/* Hero Decorative Sparkles */
.hero-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-sparkles .sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    animation: sparkle-pulse 4s ease-in-out infinite;
}

.hero-sparkles .sparkle-1 { top: 20%; left: 3%; animation-delay: 0s; font-size: 2rem; color: rgba(104, 189, 69, 0.35); }
.hero-sparkles .sparkle-2 { top: 15%; right: 5%; animation-delay: -1s; font-size: 1.5rem; }
.hero-sparkles .sparkle-3 { bottom: 30%; left: 8%; animation-delay: -2s; font-size: 1.25rem; color: rgba(104, 189, 69, 0.35); }
.hero-sparkles .sparkle-4 { bottom: 25%; right: 10%; animation-delay: -0.5s; font-size: 1.75rem; }

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
}

.hero-label {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(104, 189, 69, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(104, 189, 69, 0.4);
    border-radius: var(--radius-full);
    color: var(--vh-white);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--vh-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.hero-usp {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-usp-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--vh-white);
    font-weight: 500;
    font-size: var(--fs-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

a.hero-usp-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--vh-secondary);
    color: var(--vh-white);
}

.hero-usp-item i {
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease, color 0.3s ease;
}

a.hero-usp-item:hover i {
    color: var(--vh-white);
}

/* Icon Pulse Animation */
@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.hero-usp-item:hover i {
    animation: icon-pulse 0.6s ease;
}

/* Hero Service Typewriter */
.hero-service-typewriter {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--vh-white);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
    line-height: 1.5;
}

.hero-typewriter-prefix {
    opacity: 0.85;
}

.hero-typewriter-word {
    font-weight: 700;
    color: var(--vh-white);
    position: relative;
}

.hero-typewriter-cursor {
    font-weight: 300;
    animation: blink-cursor 0.75s step-end infinite;
    color: var(--vh-primary-light);
    margin-left: 1px;
}

@keyframes blink-cursor {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

/* Hero Form */
.hero-form-wrapper {
    position: relative;
    z-index: 10;
}

.hero-form {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-top: 3px solid var(--vh-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl) var(--spacing-2xl) var(--spacing-xl);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.08);
}

.hero-form-title {
    color: var(--vh-dark);
    font-size: var(--fs-2xl);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.hero-form-subtitle {
    color: var(--vh-gray-500);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: var(--fs-sm);
}

/* Hero Wave Separator */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 10;
    color: var(--vh-white);
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ==========================================================================
   Forms - MODERNE 2026
   ========================================================================== */

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

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--vh-gray-700);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    color: var(--vh-gray-800);
    background-color: var(--vh-white);
    border: 2px solid var(--vh-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--vh-primary);
    box-shadow: 0 0 0 4px rgba(104, 189, 69, 0.15);
}

.form-control::placeholder {
    color: var(--vh-gray-400);
}

.form-control-dark {
    background: var(--vh-gray-50);
    border: 2px solid var(--vh-gray-200);
    color: var(--vh-dark);
}

.form-control-dark::placeholder {
    color: var(--vh-gray-400);
}

.form-control-dark:focus {
    background: var(--vh-white);
    border-color: var(--vh-primary);
    box-shadow: 0 0 0 3px rgba(104, 189, 69, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23737373' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--vh-primary);
}

.form-check-label {
    font-size: var(--fs-sm);
    color: var(--vh-gray-600);
}

.form-message {
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    border-radius: var(--radius-md);
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--vh-success);
    color: var(--vh-success);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--vh-danger);
    color: var(--vh-danger);
    display: block;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
    padding: var(--spacing-5xl) 0;
    position: relative;
}

.section-sm {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-label {
    display: inline-block;
    width: fit-content;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vh-primary);
    margin-bottom: var(--spacing-md);
    padding: 6px 16px;
    background: rgba(104, 189, 69, 0.08);
    border-radius: var(--radius-full);
}

.section-title {
    margin-bottom: var(--spacing-md);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--vh-primary), var(--vh-secondary));
    margin: var(--spacing-lg) auto 0;
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: var(--fs-lg);
    color: var(--vh-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-light {
    background: var(--vh-gray-100);
}

.section-gradient {
    background: linear-gradient(180deg, var(--vh-gray-50) 0%, var(--vh-white) 100%);
}

.section-dark {
    background: var(--vh-dark);
    color: var(--vh-white);
}

.section-dark .section-title {
    background: linear-gradient(135deg, var(--vh-white), var(--vh-secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-dark .section-title::after {
    background: var(--vh-secondary);
}

.section-dark .section-label {
    color: var(--vh-secondary);
    background: rgba(78, 172, 225, 0.15);
}

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

.section-primary .section-title {
    background: none;
    -webkit-text-fill-color: var(--vh-white);
    color: var(--vh-white);
}

/* Section with Background Image */
.section-bg {
    position: relative;
}

.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.section-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(20, 45, 70, 0.90) 0%, rgba(35, 80, 120, 0.85) 50%, rgba(50, 130, 180, 0.80) 100%);
    z-index: 1;
}

.section-bg > .container {
    position: relative;
    z-index: 2;
}

.section-bg .section-title {
    background: linear-gradient(135deg, var(--vh-white), var(--vh-secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-bg .section-title::after {
    background: rgba(255, 255, 255, 0.4);
}

.section-bg .section-label {
    color: var(--vh-secondary-light);
    background: rgba(255, 255, 255, 0.1);
}

.section-bg .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}



/* ==========================================================================
   Image Text Section - BILLEDE SAMME HØJDE SOM TEKST
   ========================================================================== */

.image-text-section .row {
    align-items: stretch;
}

.image-text-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.image-text-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-text-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 50px;
    height: 50px;
    border-left: 3px solid var(--vh-primary);
    border-top: 3px solid var(--vh-primary);
    border-radius: 8px 0 0 0;
    z-index: 2;
}

.image-text-image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 50px;
    height: 50px;
    border-right: 3px solid var(--vh-secondary);
    border-bottom: 3px solid var(--vh-secondary);
    border-radius: 0 0 8px 0;
    z-index: 2;
}

.image-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: var(--spacing-2xl) 0;
}

.image-text-label {
    display: inline-block;
    width: fit-content;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vh-primary);
    margin-bottom: var(--spacing-md);
    padding: 6px 16px;
    background: rgba(104, 189, 69, 0.08);
    border-radius: var(--radius-full);
}

.image-text-title {
    margin-bottom: var(--spacing-lg);
    color: var(--vh-gray-900);
}

.image-text-text {
    color: var(--vh-gray-600);
    margin-bottom: var(--spacing-xl);
}

.image-text-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

/* ==========================================================================
   Service Cards
   ========================================================================== */

.service-card {
    position: relative;
    background: var(--vh-white);
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vh-primary), var(--vh-secondary));
    z-index: 2;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(104, 189, 69, 0.2);
}

.service-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.06), transparent);
    pointer-events: none;
    z-index: 1;
}

.service-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vh-gray-100) 0%, var(--vh-gray-200) 100%);
}

.service-card-image-placeholder i {
    font-size: 3rem;
    color: var(--vh-gray-300);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-body {
    padding: var(--spacing-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--spacing-sm);
}

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

.service-card-title a:hover {
    color: var(--vh-primary);
}

/* Service card icon (when no image) - make icon prominent */
.service-card-title i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(104, 189, 69, 0.1), rgba(78, 172, 225, 0.1));
    color: var(--vh-primary);
    font-size: 1.25rem;
    margin-right: var(--spacing-sm);
    vertical-align: middle;
    transition: all var(--transition-base);
}

.service-card:hover .service-card-title i {
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    color: var(--vh-white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(104, 189, 69, 0.3);
}

.service-card-image {
    display: block;
}

.service-card-text {
    color: var(--vh-gray-600);
    flex: 1;
    margin-bottom: var(--spacing-md);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    color: var(--vh-primary);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.service-card-link:hover {
    border-bottom-color: var(--vh-primary);
}

.service-card-link i {
    transition: transform var(--transition-fast);
}

.service-card-link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Feature Cards
   ========================================================================== */

.feature-card {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--vh-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    background: var(--vh-primary);
    border-radius: var(--radius-lg);
    font-size: var(--fs-2xl);
    color: var(--vh-white);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(104, 189, 69, 0.3);
}

.feature-card-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--spacing-sm);
}

.feature-card-text {
    color: var(--vh-gray-600);
}

/* ==========================================================================
   Customer Types
   ========================================================================== */

.customer-type-card {
    position: relative;
    padding: var(--spacing-2xl);
    background: var(--vh-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
}

.customer-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--vh-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.customer-type-card:hover::before {
    transform: scaleX(1);
}

.customer-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.customer-type-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    background: var(--vh-gray-100);
    border-radius: var(--radius-lg);
    font-size: var(--fs-3xl);
    color: var(--vh-primary);
    transition: all var(--transition-base);
}

.customer-type-card:hover .customer-type-icon {
    background: var(--vh-primary);
    color: var(--vh-white);
}

.customer-type-title {
    font-size: var(--fs-xl);
    margin-bottom: var(--spacing-sm);
}

.customer-type-text {
    color: var(--vh-gray-600);
}

/* ==========================================================================
   Contact Info Box
   ========================================================================== */

.contact-info-box {
    background: var(--vh-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-2xl);
    position: relative;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--vh-primary);
}

.contact-info-title {
    font-size: var(--fs-2xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--vh-gray-200);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--vh-gray-100);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vh-primary);
    border-radius: var(--radius-md);
    color: var(--vh-white);
    font-size: var(--fs-lg);
    flex-shrink: 0;
}

.contact-info-content {
    width: 100%;
}

.contact-info-content h5 {
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--vh-gray-900);
}

.contact-info-content p,
.contact-info-content a {
    color: var(--vh-gray-600);
    margin: 0;
}

.contact-info-content a:hover {
    color: var(--vh-primary);
}

/* ==========================================================================
   Benefit Cards
   ========================================================================== */

/* Benefit Grid */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

@media (max-width: 767px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--vh-gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--vh-gray-200);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    margin-bottom: 0;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--vh-primary);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(104, 189, 69, 0.1), rgba(78, 172, 225, 0.1));
    border-radius: var(--radius-md);
    font-size: var(--fs-lg);
    color: var(--vh-primary);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    color: var(--vh-white);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: var(--fs-sm);
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit-text {
    color: var(--vh-gray-600);
    margin: 0;
    font-size: var(--fs-xs);
    line-height: 1.4;
}

/* Process Section */
.process-section {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--vh-gray-200);
}

.process-section .section-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.process-section .section-title::after {
    margin: var(--spacing-md) 0 0;
}

.process-steps {
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--vh-gray-100);
    position: relative;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step::before {
    content: counter(step-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    color: var(--vh-white);
    font-size: var(--fs-sm);
    font-weight: 700;
    flex-shrink: 0;
}

.process-step-content {
    flex: 1;
    min-width: 0;
}

.process-step-title {
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: 4px;
}

.process-step-text {
    color: var(--vh-gray-600);
    margin: 0;
    font-size: var(--fs-sm);
    line-height: 1.5;
}

/* Service Content - Heading Consistency */
.service-content h2,
.service-content-heading {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--vh-dark);
    position: relative;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--vh-gray-200);
}

.service-content h2::after,
.service-content-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--vh-primary), var(--vh-secondary));
}

.service-content ul {
    padding-left: 0;
    list-style: none;
}

.service-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.service-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
}

.service-content ul li strong {
    color: var(--vh-dark);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background: var(--vh-primary);
    color: var(--vh-white);
    position: relative;
    overflow: hidden;
}

.cta-geo {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.cta-geo-1 {
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    transform: rotate(45deg);
}

.cta-geo-2 {
    bottom: 15%;
    left: 5%;
    width: 60px;
    height: 60px;
    transform: rotate(45deg);
}

.cta-title {
    color: var(--vh-white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

.cta-title .highlight {
    color: var(--vh-secondary);
}

.cta-text {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

/* ==========================================================================
   Service List
   ========================================================================== */

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-xl);
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
}

.service-list li i {
    color: var(--vh-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ==========================================================================
   Page Headers - Premium 2026 Design
   ========================================================================== */

.page-header {
    position: relative;
    padding: calc(var(--spacing-2xl) + 100px) 0 var(--spacing-4xl);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(
        145deg,
        rgba(30, 80, 120, 0.95) 0%,
        rgba(55, 140, 190, 0.92) 40%,
        rgba(78, 172, 225, 0.88) 70%,
        rgba(80, 170, 80, 0.82) 100%
    );
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        145deg,
        rgba(30, 80, 120, 0.88) 0%,
        rgba(55, 140, 190, 0.80) 40%,
        rgba(78, 172, 225, 0.75) 70%,
        rgba(80, 170, 80, 0.70) 100%
    );
    z-index: 1;
}

/* Page Header Floating Bubbles */
.page-header-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.page-header-bubbles .bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-bubble 15s ease-in-out infinite;
}

.page-header-bubbles .bubble-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.page-header-bubbles .bubble-2 {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 15%;
    animation-delay: -3s;
}

.page-header-bubbles .bubble-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 10%;
    animation-delay: -6s;
}

.page-header-bubbles .bubble-4 {
    width: 40px;
    height: 40px;
    top: 70%;
    right: 20%;
    animation-delay: -9s;
}

.page-header-bubbles .bubble-5 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 35%;
    animation-delay: -12s;
}

/* Page Header Decorative Sparkles */
.page-header-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.page-header-sparkles .sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    animation: sparkle-pulse 3s ease-in-out infinite;
}

.page-header-sparkles .sparkle-1 { top: 25%; left: 5%; animation-delay: 0s; }
.page-header-sparkles .sparkle-2 { top: 15%; right: 8%; animation-delay: -1s; font-size: 1.2rem; }
.page-header-sparkles .sparkle-3 { bottom: 35%; left: 12%; animation-delay: -2s; font-size: 1rem; }
.page-header-sparkles .sparkle-4 { bottom: 25%; right: 15%; animation-delay: -0.5s; }

@keyframes sparkle-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.6; transform: scale(1.2) rotate(10deg); }
}

/* Remove old geo elements */
.page-header-geo {
    display: none;
}

.page-header-geo-1,
.page-header-geo-2 {
    display: none;
}

.page-header-content {
    position: relative;
    z-index: 5;
}

/* Page Label - Premium Badge Style */
.page-label {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--vh-white);
    background: rgba(255, 255, 255, 0.2);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(4px);
}

.page-label::before {
    content: '✦';
    font-size: 0.7em;
}

.page-title {
    color: var(--vh-white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Page Header Wave Separator */
.page-header-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 4;
    color: var(--vh-white);
    line-height: 0;
}

.page-header-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* Breadcrumb - Updated Style */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    list-style: none;
    padding: var(--spacing-xs) var(--spacing-md);
    margin: var(--spacing-lg) 0 0;
    font-size: var(--fs-sm);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--vh-white);
}

.breadcrumb-item.active {
    color: var(--vh-white);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    padding-right: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Page Header Variants - all use same hero-style gradient */
.page-header--blue,
.page-header--dark {
    background: linear-gradient(
        145deg,
        rgba(30, 80, 120, 0.95) 0%,
        rgba(55, 140, 190, 0.92) 40%,
        rgba(78, 172, 225, 0.88) 70%,
        rgba(80, 170, 80, 0.82) 100%
    );
}

/* ==========================================================================
   Area Tags - Område-sider
   ========================================================================== */

.area-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--vh-white);
    border-radius: var(--radius-full);
    color: var(--vh-gray-700);
    font-size: var(--fs-sm);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--vh-gray-200);
    transition: all var(--transition-base);
}

.area-tag i {
    color: var(--vh-primary);
    font-size: var(--fs-xs);
}

.area-tag:hover {
    background: var(--vh-primary);
    color: var(--vh-white);
    border-color: var(--vh-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.area-tag:hover i {
    color: var(--vh-white);
}

/* Area Section */
.area-section {
    background: var(--vh-gray-100);
}

.area-section .area-tags-wrapper {
    justify-content: flex-start;
}

.area-map-container {
    background: var(--vh-white);
    padding: 0;
    box-shadow: var(--shadow-lg);
}

.area-map-container img {
    width: 100%;
    height: auto;
}

/* Leaflet Map */
#vh-area-map,
#vh-areas-archive-map,
#vh-single-area-map {
    box-shadow: var(--shadow-md);
    border: 2px solid var(--vh-gray-200);
    height: 350px;
    border-radius: var(--radius-lg);
}

@media (min-width: 992px) {
    #vh-area-map,
    #vh-areas-archive-map,
    #vh-single-area-map {
        height: 400px;
    }
}

/* Custom Marker Styling */
.custom-marker {
    position: relative;
}

.marker-pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: var(--vh-primary);
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
}

.marker-pin::after {
    content: '';
    width: 14px;
    height: 14px;
    margin: 8px 0 0 8px;
    background: var(--vh-white);
    position: absolute;
    border-radius: 50%;
}

/* Marker Hover States */
.marker-highlight {
    z-index: 1000 !important;
}

.marker-highlight .marker-pin {
    background: var(--vh-secondary);
    transform: rotate(-45deg) scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.marker-dimmed .marker-pin {
    opacity: 0.3;
    transform: rotate(-45deg) scale(0.9);
}

/* Tag Hover States */
.tag-highlight {
    background: var(--vh-primary);
    color: var(--vh-white);
    border-color: var(--vh-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tag-highlight i {
    color: var(--vh-white);
}

.tag-dimmed {
    opacity: 0.4;
}

/* Map Popup Styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
}

.leaflet-popup-content {
    margin: 0;
}

.map-popup {
    padding: var(--spacing-md);
    text-align: center;
}

.map-popup strong {
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--vh-gray-900);
    font-size: var(--fs-base);
}

.map-popup-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--vh-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--fs-sm);
    transition: color var(--transition-fast);
}

.map-popup-link:hover {
    color: var(--vh-secondary);
}

.map-popup-link i {
    font-size: 12px;
}

/* ==========================================================================
   Footer - MODERN PREMIUM 2026
   ========================================================================== */

/* Premium CTA Section - Hero Style */
.footer-cta-premium {
    position: relative;
    padding: var(--spacing-5xl) 0 var(--spacing-4xl);
    overflow: hidden;
}

.footer-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.footer-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        145deg,
        rgba(30, 80, 120, 0.90) 0%,
        rgba(55, 140, 190, 0.85) 40%,
        rgba(78, 172, 225, 0.80) 70%,
        rgba(80, 170, 80, 0.75) 100%
    );
    z-index: 1;
}

.footer-cta-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: var(--vh-white);
    line-height: 0;
    z-index: 2;
}

.footer-cta-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-cta-label {
    display: inline-block;
    width: fit-content;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(104, 189, 69, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(104, 189, 69, 0.4);
    border-radius: var(--radius-full);
    color: var(--vh-white);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
}

/* Floating bubbles */
.footer-cta-bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-bubble 20s infinite ease-in-out;
}

.bubble-1 { width: 200px; height: 200px; left: -50px; bottom: -50px; animation-delay: 0s; }
.bubble-2 { width: 120px; height: 120px; right: 10%; top: 20%; animation-delay: -5s; }
.bubble-3 { width: 80px; height: 80px; left: 30%; top: 10%; animation-delay: -10s; }
.bubble-4 { width: 150px; height: 150px; right: -30px; bottom: -30px; animation-delay: -15s; }
.bubble-5 { width: 60px; height: 60px; left: 60%; bottom: 20%; animation-delay: -8s; }

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

.footer-cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    z-index: 5;
}

.footer-cta-premium .footer-cta-title {
    color: var(--vh-white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.footer-cta-premium .footer-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-cta-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: var(--fs-lg);
    font-weight: 600;
}

.btn-light {
    background: var(--vh-white);
    color: var(--vh-primary);
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--vh-white);
    color: var(--vh-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Modern Footer */
.site-footer-modern {
    background: linear-gradient(180deg, var(--vh-gray-900) 0%, #0d0d12 100%);
    padding: var(--spacing-5xl) 0 0;
    color: var(--vh-gray-400);
    position: relative;
}

.site-footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vh-primary), var(--vh-secondary), var(--vh-primary));
    background-size: 200% 100%;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

/* Brand Column */
.footer-brand {
    padding-right: var(--spacing-xl);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    height: 70px;
    width: auto;
    transition: all var(--transition-base);
}

.footer-tagline {
    color: var(--vh-gray-400);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    font-size: var(--fs-sm);
}

.footer-social-modern {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social-modern a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--vh-white);
    font-size: var(--fs-xl);
    transition: all var(--transition-base);
}

.footer-social-modern a:hover {
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(104, 189, 69, 0.3);
}

/* Footer Columns */
.footer-column {
    min-width: 0;
}

.footer-heading {
    color: var(--vh-white);
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-heading i {
    color: var(--vh-primary);
    font-size: var(--fs-lg);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: var(--spacing-sm);
}

.footer-nav a {
    color: var(--vh-gray-400);
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--vh-primary);
    transition: width var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--vh-white);
    padding-left: 8px;
}

.footer-nav a:hover::before {
    width: 100%;
}

.footer-nav-compact {
    columns: 2;
    column-gap: var(--spacing-lg);
}

.footer-see-all {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--vh-primary);
    font-size: var(--fs-sm);
    font-weight: 500;
    margin-top: var(--spacing-md);
    transition: all var(--transition-fast);
}

.footer-see-all:hover {
    color: var(--vh-primary-light);
    gap: var(--spacing-sm);
}

/* Contact Cards */
.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.footer-contact-card {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.footer-contact-card:hover {
    background: rgba(104, 189, 69, 0.1);
    border-color: rgba(104, 189, 69, 0.3);
    transform: translateY(-2px);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vh-primary);
    border-radius: var(--radius-md);
    color: var(--vh-white);
    font-size: var(--fs-base);
    flex-shrink: 0;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-contact-label {
    font-size: var(--fs-xs);
    color: var(--vh-gray-500);
    display: block;
    line-height: 1.3;
}

.footer-contact-value {
    color: var(--vh-white);
    font-weight: 600;
    font-size: var(--fs-sm);
    display: block;
    line-height: 1.3;
    word-break: break-all;
}

.footer-address {
    color: var(--vh-gray-500);
    font-size: var(--fs-sm);
    line-height: 1.8;
}

.footer-address i {
    color: var(--vh-primary);
    margin-right: var(--spacing-xs);
}

.footer-address strong {
    color: var(--vh-white);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    margin-top: var(--spacing-4xl);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-copyright {
    color: var(--vh-gray-500);
    font-size: var(--fs-sm);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--vh-gray-400);
    font-size: var(--fs-xs);
}

.footer-badge i {
    color: var(--vh-primary);
}

/* Footer Responsive */
@media (max-width: 1199.98px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    .footer-cta-premium {
        padding: var(--spacing-4xl) 0 var(--spacing-3xl);
    }

    .footer-cta-premium .footer-cta-title {
        font-size: var(--fs-2xl);
    }

    .footer-cta-actions {
        flex-direction: column;
    }

    .footer-cta-actions .btn {
        width: 100%;
    }

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

    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }

    .footer-social-modern {
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-heading {
        justify-content: center;
    }

    .footer-nav a::before {
        display: none;
    }

    .footer-nav a:hover {
        transform: none;
    }

    .footer-nav-compact {
        columns: 1;
    }

    .footer-see-all {
        justify-content: center;
    }

    .footer-contact-cards {
        align-items: center;
    }

    .footer-contact-card {
        width: 100%;
        max-width: 300px;
    }

    .footer-address {
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vh-white);
    border-radius: var(--radius-full);
    border: none;
    font-size: var(--fs-xl);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   Loading
   ========================================================================== */

.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--vh-gray-300);
    border-top-color: var(--vh-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.btn.loading {
    color: transparent;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-primary { color: var(--vh-primary) !important; }
.text-secondary { color: var(--vh-secondary) !important; }
.text-white { color: var(--vh-white) !important; }
.text-muted { color: var(--vh-gray-500) !important; }

.bg-primary { background-color: var(--vh-primary) !important; }
.bg-secondary { background-color: var(--vh-secondary) !important; }
.bg-light { background-color: var(--vh-gray-100) !important; }
.bg-dark { background-color: var(--vh-gray-900) !important; }

.fw-medium { font-weight: 500 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }

/* GSAP Animation Classes */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(20px);
}

.gsap-fade-left {
    opacity: 0;
    transform: translateX(-20px);
}

.gsap-fade-right {
    opacity: 0;
    transform: translateX(20px);
}

.gsap-scale {
    opacity: 0;
    transform: scale(0.98);
}

/* Card initial state for stagger animations */
.service-card,
.feature-card,
.customer-type-card,
.why-card,
.benefit-card {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

/* When GSAP has initialized, allow visibility */
.gsap-initialized .service-card,
.gsap-initialized .feature-card,
.gsap-initialized .customer-type-card,
.gsap-initialized .why-card,
.gsap-initialized .benefit-card {
    visibility: visible;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1199.98px) {
    .nav-right > .nav-link,
    .nav-right > .dropdown {
        display: none;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        gap: var(--spacing-sm);
    }

    .nav-right {
        gap: var(--spacing-sm);
    }

    .navbar-toggler {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .site-logo {
        height: 55px;
    }

    .header-inner {
        padding: var(--spacing-xs) var(--spacing-md);
        gap: var(--spacing-sm);
    }

    .hero-form {
        margin-top: var(--spacing-2xl);
    }

    .image-text-image {
        min-height: 350px;
        margin-bottom: var(--spacing-xl);
    }

    .image-text-image::before,
    .image-text-image::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: var(--spacing-3xl) 0;
    }

    .testimonials-section {
        padding: var(--spacing-3xl) 0;
    }

    .image-text-section:last-child {
        padding-bottom: 0;
    }

    .hero-section {
        height: auto;
        max-height: none;
        min-height: auto;
        padding: calc(var(--spacing-4xl) + 60px) 0 var(--spacing-3xl);
    }

    .hero-form-wrapper {
        margin-top: var(--spacing-2xl);
    }

    /* On mobile, fade left/right should fade up instead to prevent horizontal overflow */
    .gsap-fade-left,
    .gsap-fade-right {
        transform: translateY(20px);
    }

    .hero-usp {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .image-text-image {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .site-logo {
        height: 42px;
    }

    .header-cta-btn.btn-sm {
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .header-cta {
        flex-shrink: 1;
        min-width: 0;
    }

    .header-phone {
        display: none !important;
    }

    .btn:not(.btn-sm) {
        width: 100%;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-icon {
        margin: 0 auto;
    }
}

/* ==========================================================================
   Mobile Navigation (from header.php)
   ========================================================================== */

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        145deg,
        rgba(30, 80, 120, 0.97) 0%,
        rgba(55, 140, 190, 0.95) 40%,
        rgba(78, 172, 225, 0.93) 70%,
        rgba(80, 170, 80, 0.90) 100%
    );
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Nav Header - Logo + Close */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    flex-shrink: 0;
}

.mobile-nav-logo img {
    height: 50px;
    width: auto;
}

.mobile-nav-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--vh-white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Mobile Nav Content - Links */
.mobile-nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--spacing-xl);
}

.mobile-nav .nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--vh-white);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav .nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav .nav-link:hover {
    color: var(--vh-white);
    padding-left: var(--spacing-sm);
}

.mobile-nav-icon {
    font-size: 1rem;
    opacity: 0.7;
    width: 24px;
    text-align: center;
}

.mobile-nav-cta {
    margin-top: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-cta .btn {
    width: 100%;
    font-size: var(--fs-base);
}

/* Mobile Nav Footer - Contact Info */
.mobile-nav-footer {
    flex-shrink: 0;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-nav-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-sm);
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-nav-contact:hover {
    color: var(--vh-white);
}

.mobile-nav-contact i {
    font-size: var(--fs-base);
    width: 20px;
    text-align: center;
}

@media (min-width: 1200px) {
    .mobile-nav,
    .navbar-toggler {
        display: none !important;
    }
}

/* ==========================================================================
   Footer Components (from footer.php)
   ========================================================================== */

.footer-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

/* ==========================================================================
   Quote Form (from quote-form.php)
   ========================================================================== */

.quote-form-wrapper {
    position: sticky;
    top: 100px;
    padding: 0;
    overflow: hidden;
}

.quote-form-header {
    background: var(--vh-primary);
    color: var(--vh-white);
    padding: var(--spacing-lg);
    text-align: center;
}

.quote-form-header h3 {
    color: var(--vh-white);
    font-size: var(--fs-xl);
}

.quote-form-header p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: var(--fs-sm);
}

.quote-form-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--vh-gray-100);
    gap: var(--spacing-sm);
}

.quote-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--vh-gray-400);
    font-size: var(--fs-sm);
    transition: all var(--transition-normal);
}

.quote-step.active {
    color: var(--vh-primary);
}

.quote-step.completed {
    color: var(--vh-success);
}

.quote-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
}

.quote-step.active .quote-step-number {
    background: var(--vh-primary);
    border-color: var(--vh-primary);
    color: var(--vh-white);
}

.quote-step.completed .quote-step-number {
    background: var(--vh-success);
    border-color: var(--vh-success);
    color: var(--vh-white);
}

.quote-step-line {
    flex: 1;
    max-width: 40px;
    height: 2px;
    background: var(--vh-gray-300);
}

.quote-form-multistep,
.quote-form {
    padding: var(--spacing-lg);
}

.quote-form-step {
    display: none;
}

.quote-form-step.active {
    display: block;
}

.quote-form-multistep .form-group,
.quote-form .form-group {
    margin-bottom: var(--spacing-md);
}

.quote-form-multistep .form-label,
.quote-form .form-label {
    font-size: var(--fs-sm);
    margin-bottom: var(--spacing-xs);
}

.quote-form-multistep .form-control,
.quote-form .form-control {
    padding: 0.6rem 0.875rem;
    font-size: var(--fs-sm);
}

.quote-btn-prev {
    padding: 0.6rem 1rem;
}

/* ==========================================================================
   Why Choose Us Section (from why-choose-us.php)
   ========================================================================== */

.why-choose-us-section {
    background: var(--vh-gray-50);
}

.why-choose-us-section.bg-dark {
    background: var(--vh-gray-900);
}

.why-choose-us-section.bg-dark .section-label {
    color: var(--vh-secondary);
}

.why-choose-us-section.bg-dark .section-title,
.why-choose-us-section.bg-dark .why-card-title {
    color: var(--vh-white);
}

.why-choose-us-section.bg-dark .why-card-text {
    color: var(--vh-gray-400);
}

.why-choose-us-section.bg-white {
    background: var(--vh-white);
}

.why-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--vh-white);
    border: 1px solid var(--vh-gray-200);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.why-choose-us-section.bg-dark .why-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: rgba(104, 189, 69, 0.3);
}

.why-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    background: var(--vh-primary);
    border-radius: var(--radius-lg);
    color: var(--vh-white);
    font-size: 1.75rem;
    transition: all var(--transition-base);
}

.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(104, 189, 69, 0.3);
}

.why-card-title {
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--vh-gray-900);
}

.why-card-text {
    font-size: var(--fs-sm);
    color: var(--vh-gray-600);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .why-card {
        padding: var(--spacing-lg);
    }

    .why-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Contact Form Box (from page-kontakt.php)
   ========================================================================== */

.contact-form-box {
    background: var(--vh-white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-premium, var(--shadow-xl));
    position: relative;
}

.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-right: 3px solid var(--vh-secondary);
    border-top: 3px solid var(--vh-secondary);
}

.contact-form-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-left: 3px solid var(--vh-secondary);
    border-bottom: 3px solid var(--vh-secondary);
}

@media (max-width: 767.98px) {
    .contact-form-box {
        padding: 2rem;
    }

    .contact-form-box::before,
    .contact-form-box::after {
        width: 50px;
        height: 50px;
    }
}

/* ==========================================================================
   Multistep Form (from page-tilbud.php)
   ========================================================================== */

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.form-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.form-progress-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vh-gray-200);
    border-radius: var(--radius-full);
    color: var(--vh-gray-500);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.form-progress-step.active .form-progress-number,
.form-progress-step.completed .form-progress-number {
    background: var(--vh-primary);
    color: var(--vh-white);
}

.form-progress-step.completed .form-progress-number {
    background: var(--vh-success);
}

.form-progress-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vh-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-progress-step.active .form-progress-label {
    color: var(--vh-primary);
}

.form-progress-line {
    flex: 1;
    height: 3px;
    background: var(--vh-gray-200);
    margin: 0 1rem;
    margin-bottom: 1.5rem;
    max-width: 80px;
}

.multistep-form-wrapper {
    background: var(--vh-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.multistep-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--vh-primary);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.form-step-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-step-subtitle {
    color: var(--vh-gray-600);
    text-align: center;
    margin-bottom: 2rem;
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.option-card {
    cursor: pointer;
}

.option-card input {
    display: none;
}

.option-card-content {
    padding: 1.5rem;
    border: 2px solid var(--vh-gray-200);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.option-card input:checked + .option-card-content {
    border-color: var(--vh-primary);
    background: rgba(54, 169, 225, 0.05);
}

.option-card:hover .option-card-content {
    border-color: var(--vh-primary);
}

.option-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--vh-gray-100);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--vh-primary);
    transition: all 0.3s ease;
}

.option-card input:checked + .option-card-content .option-card-icon {
    background: var(--vh-primary);
    color: var(--vh-white);
}

.option-card-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.option-card-content p {
    font-size: 0.875rem;
    color: var(--vh-gray-600);
    margin: 0;
}

.conditional-fields {
    display: none;
}

.conditional-fields.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Service Select Cards (Tilbud page step 1) */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 575.98px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-select-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border: 2px solid var(--vh-gray-200);
    border-radius: var(--radius-lg);
    background: var(--vh-white);
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.service-select-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vh-primary), var(--vh-secondary));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.service-select-card:hover {
    border-color: var(--vh-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(104, 189, 69, 0.15);
}

.service-select-card:hover::before {
    opacity: 1;
}

.service-select-card.selected {
    border-color: var(--vh-primary);
    background: rgba(104, 189, 69, 0.04);
    box-shadow: 0 0 0 3px rgba(104, 189, 69, 0.15);
}

.service-select-card.selected::before {
    opacity: 1;
}

.service-select-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(104, 189, 69, 0.1), rgba(78, 172, 225, 0.1));
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    color: var(--vh-primary);
    margin-bottom: 0.75rem;
    transition: all 0.25s ease;
}

.service-select-card:hover .service-select-card-icon,
.service-select-card.selected .service-select-card-icon {
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    color: var(--vh-white);
}

.service-select-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    color: var(--vh-dark);
}

.service-select-card-text {
    font-size: 0.75rem;
    color: var(--vh-gray-500);
    margin: 0.25rem 0 0;
    line-height: 1.3;
}

.tilbud-selected-service {
    font-weight: 700;
    color: var(--vh-primary);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--vh-gray-200);
}

.form-navigation .btn {
    min-width: 150px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--vh-gray-600);
    font-size: 0.875rem;
}

.trust-badge i {
    color: var(--vh-primary);
    font-size: 1.25rem;
}

@media (max-width: 767.98px) {
    .multistep-form-wrapper {
        padding: 1.5rem;
    }

    .form-progress-label {
        display: none;
    }

    .form-progress-line {
        margin-bottom: 0;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .form-navigation .btn {
        width: 100%;
    }

    .form-navigation .btn-prev {
        order: 3;
    }

    .form-navigation .btn-next {
        order: 1;
    }

    .form-navigation .btn-submit {
        order: 2;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ==========================================================================
   Mobile Bottom Menu
   ========================================================================== */

.mobile-bottom-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--vh-white);
    border-top: 1px solid var(--vh-gray-200);
    z-index: 1000;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
    .mobile-bottom-menu {
        display: flex;
        justify-content: space-around;
        align-items: stretch;
    }

    body {
        padding-bottom: 56px;
    }

    .mobile-bottom-menu {max-width: 100vw;}
    header { max-width: 100vw; }
    .page-header { max-width: 100vw;}
}

.mobile-bottom-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    color: var(--vh-gray-600);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 4px;
}

.mobile-bottom-item i {
    font-size: 20px;
    line-height: 1;
}

.mobile-bottom-item span {
    display: block;
    line-height: 1.2;
}

.mobile-bottom-item:hover,
.mobile-bottom-item:focus {
    color: var(--vh-primary);
    background: var(--vh-gray-100);
}

.mobile-bottom-item-cta {
    color: var(--vh-primary);
}

.mobile-bottom-item-cta i {
    color: var(--vh-secondary);
}

/* ==========================================================================
   Callback Modal
   ========================================================================== */

.callback-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.callback-modal.active {
    opacity: 1;
    visibility: visible;
}

.callback-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.callback-modal-content {
    position: relative;
    background: var(--vh-white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    width: 100%;
    max-width: 500px;
    padding: var(--spacing-xl);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.callback-modal.active .callback-modal-content {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .callback-modal {
        align-items: center;
    }

    .callback-modal-content {
        border-radius: var(--radius-xl);
        transform: translateY(20px) scale(0.95);
        max-width: 400px;
    }

    .callback-modal.active .callback-modal-content {
        transform: translateY(0) scale(1);
    }
}

.callback-modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--vh-gray-500);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.callback-modal-close:hover {
    color: var(--vh-gray-900);
}

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

.callback-modal-header h3 {
    color: var(--vh-gray-900);
    margin-bottom: var(--spacing-xs);
}

.callback-modal-header p {
    color: var(--vh-gray-600);
    margin: 0;
}

/* ==========================================================================
   Areas Page Grid
   ========================================================================== */

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.area-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--vh-white);
    border: 1px solid var(--vh-gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.area-card:hover {
    border-color: var(--vh-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.area-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vh-gray-100);
    border-radius: var(--radius-md);
    color: var(--vh-primary);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.area-card:hover .area-card-icon {
    background: var(--vh-primary);
    color: var(--vh-white);
}

.area-card-title {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--vh-gray-900);
    margin: 0;
}

.area-card-featured {
    border-color: var(--vh-secondary);
}

.area-card-featured .area-card-icon {
    background: var(--vh-secondary);
    color: var(--vh-white);
}

.area-card-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--vh-secondary);
    color: var(--vh-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    text-transform: uppercase;
}

.area-card-arrow {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    color: var(--vh-gray-400);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.area-card:hover .area-card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--vh-primary);
}

@media (max-width: 575.98px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .area-card {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .area-card-title {
        font-size: var(--fs-md);
    }
}

/* ==========================================================================
   Geometric Decorative Elements - 2026 Premium Design
   ========================================================================== */

.geometric-shape {
    position: absolute;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.geometric-circle {
    border-radius: 50%;
    background: var(--vh-primary);
}

.geometric-circle-outline {
    border-radius: 50%;
    border: 2px solid var(--vh-primary);
    background: transparent;
}

.geometric-square {
    transform: rotate(45deg);
    background: var(--vh-secondary);
}

.geometric-square-outline {
    transform: rotate(45deg);
    border: 2px solid var(--vh-secondary);
    background: transparent;
}

.dot-pattern {
    background-image: radial-gradient(circle, var(--vh-primary) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

.dot-pattern-light {
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

/* ==========================================================================
   Trust Badges Section
   ========================================================================== */

.trust-badges-section {
    position: relative;
    z-index: 20;
    margin-top: -55px;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

.trust-badges-section + .section {
    padding-top: var(--spacing-3xl);
}

.trust-badges-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
    background: var(--vh-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-xl);
    flex: 1;
    text-align: center;
    position: relative;
    transition: background var(--transition-base);
}

.trust-badge-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--vh-gray-200);
}

.trust-badge-item:hover {
    background: rgba(104, 189, 69, 0.04);
}

.trust-badge-icon-inline {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.trust-badge-item:nth-child(even) .trust-badge-icon-inline {
    background: linear-gradient(135deg, var(--vh-secondary), var(--vh-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-badge-text {
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--vh-gray-700);
}

@media (max-width: 991.98px) {
    .trust-badges-row {
        flex-wrap: wrap;
        border-radius: var(--radius-lg);
    }

    .trust-badge-item {
        flex: 1 1 50%;
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .trust-badge-item:nth-child(2)::after {
        display: none;
    }

    .trust-badge-item:nth-child(1),
    .trust-badge-item:nth-child(2) {
        border-bottom: 1px solid var(--vh-gray-100);
    }
}

@media (max-width: 767.98px) {
    .trust-badges-section {
        margin-top: -40px;
        padding: 0 var(--spacing-md);
    }

    .trust-badge-item {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .trust-badge-icon-inline {
        font-size: 1.25rem;
    }

    .trust-badge-text {
        font-size: var(--fs-xs);
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    padding: var(--spacing-5xl) 0;
    background: var(--vh-gray-100);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--vh-primary);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--vh-secondary);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(30%, 30%);
}

.testimonial-card {
    background: var(--vh-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl) var(--spacing-2xl) var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vh-primary), var(--vh-secondary));
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
    position: absolute;
    top: 12px;
    right: var(--spacing-xl);
    font-size: 6rem;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

.testimonial-text {
    font-size: var(--fs-lg);
    color: var(--vh-gray-700);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 1.125rem;
    filter: drop-shadow(0 1px 2px rgba(245, 158, 11, 0.3));
}

.testimonial-footer {
    margin-top: auto;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--vh-gray-200);
}

.testimonial-author {
    font-weight: 700;
    color: var(--vh-gray-900);
    margin-bottom: 2px;
    font-size: var(--fs-base);
}

.testimonial-location {
    font-size: var(--fs-sm);
    color: var(--vh-gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.testimonial-location::before {
    content: '\F3E7'; /* Bootstrap icon geo-alt */
    font-family: 'bootstrap-icons';
    font-size: 0.75rem;
}

/* Swiper Testimonials */
.testimonials-swiper {
    padding-bottom: var(--spacing-3xl);
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--vh-gray-300);
    opacity: 1;
    transition: all var(--transition-fast);
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--vh-primary);
    transform: scale(1.2);
}

/* Swiper Services */
.services-swiper {
    padding-bottom: var(--spacing-3xl);
}

.services-swiper .swiper-slide {
    height: auto;
}

.services-swiper .service-card {
    opacity: 1;
    transform: none;
    visibility: visible;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.services-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all var(--transition-fast);
}

.services-swiper .swiper-pagination-bullet-active {
    background: var(--vh-white);
    transform: scale(1.2);
}

/* ==========================================================================
   Floating CTA Button
   ========================================================================== */

.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--vh-secondary);
    color: var(--vh-white);
    border-radius: var(--radius-full);
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(78, 172, 225, 0.4);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.floating-cta-btn i {
    font-size: 1.2rem;
}

.floating-cta-label {
    font-size: var(--fs-sm);
    font-weight: 700;
}

.floating-cta-btn:hover {
    background: var(--vh-secondary-dark);
    color: var(--vh-white);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(78, 172, 225, 0.5);
}

@keyframes floating-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-cta.bounce .floating-cta-btn {
    animation: floating-bounce 1s ease infinite;
}

@media (max-width: 767.98px) {
    .floating-cta {
        bottom: 80px;
        right: 12px;
    }

    .floating-cta-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .floating-cta-label {
        font-size: var(--fs-xs);
    }
}

/* ==========================================================================
   Premium Page Transition - Logo Reveal
   ========================================================================== */

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
    overflow: hidden;
}

/* Top panel - slides down from top */
.page-transition-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, var(--vh-primary) 0%, var(--vh-primary-dark) 100%);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Bottom panel - slides up from bottom */
.page-transition-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, var(--vh-secondary) 0%, var(--vh-secondary-dark) 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Logo container - centered with white background */
.page-transition-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    opacity: 0;
    background: var(--vh-white);
    padding: 30px 40px;
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s,
                opacity 0.3s ease 0.3s;
}

.page-transition-logo img {
    width: 200px;
    height: auto;
    /* Show original logo colors */
    animation: none;
}

/* Active state - panels slide in, logo appears */
.page-transition.active {
    pointer-events: all;
}

.page-transition.active .page-transition-top {
    transform: translateY(0);
}

.page-transition.active .page-transition-bottom {
    transform: translateY(0);
}

.page-transition.active .page-transition-logo {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Logo pulse animation when active */
.page-transition.active .page-transition-logo img {
    animation: logo-pulse 1.2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Exiting state - reverse animation */
.page-transition.exiting .page-transition-logo {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1),
                opacity 0.2s ease;
}

.page-transition.exiting .page-transition-top {
    transform: translateY(-100%);
    transition-delay: 0.2s;
}

.page-transition.exiting .page-transition-bottom {
    transform: translateY(100%);
    transition-delay: 0.2s;
}

/* No transition state - for instant positioning on page load */
.page-transition.no-transition,
.page-transition.no-transition .page-transition-top,
.page-transition.no-transition .page-transition-bottom,
.page-transition.no-transition .page-transition-logo {
    transition: none !important;
}

/* Decorative elements on panels */
.page-transition-top::before,
.page-transition-bottom::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.page-transition-top::before {
    right: -100px;
    bottom: -150px;
}

.page-transition-bottom::before {
    left: -100px;
    top: -150px;
}

/* Loading dots animation under logo */
/*.page-transition-logo::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--vh-gray-200);
    border-radius: 2px;
    overflow: hidden;
}

.page-transition.active .page-transition-logo::after {
    animation: loading-bar 1.5s ease-in-out infinite;
}

@keyframes loading-bar {
    0% {
        background: linear-gradient(90deg, var(--vh-primary) 0%, var(--vh-gray-200) 0%);
    }
    50% {
        background: linear-gradient(90deg, var(--vh-primary) 100%, var(--vh-gray-200) 100%);
    }
    100% {
        background: linear-gradient(90deg, var(--vh-primary) 0%, var(--vh-gray-200) 0%);
    }
}*/

/* Content is always visible - curtain reveals it */
#main-content {
    opacity: 1;
}

/* ==========================================================================
   Section Label Badge Style
   ========================================================================== */

.section-label-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(104, 189, 69, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vh-primary);
    margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   Gradient Text Utility
   ========================================================================== */

.gradient-text {
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title,
.section-title,
.page-title,
.image-text-title {
    position: relative;
}

/* ==========================================================================
   Dropdown Staggered Items
   ========================================================================== */

.dropdown-menu .dropdown-item {
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.dropdown:hover .dropdown-menu .dropdown-item {
    opacity: 1;
    transform: translateY(0);
}

.dropdown:hover .dropdown-menu .dropdown-item:nth-child(1) { transition-delay: 0.04s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(2) { transition-delay: 0.08s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(3) { transition-delay: 0.12s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(4) { transition-delay: 0.16s; }
.dropdown:hover .dropdown-menu .dropdown-item:nth-child(5) { transition-delay: 0.20s; }

/* Areas dropdown list items */
.dropdown:hover .dropdown-areas-list li .dropdown-item {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Scroll Progress Indicator
   ========================================================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--vh-primary), var(--vh-secondary));
    z-index: 99998;
    transition: none;
    pointer-events: none;
}

/* ==========================================================================
   Form Label Focus-within
   ========================================================================== */

.form-group:focus-within .form-label,
.col-md-6:focus-within .form-label,
.col-12:focus-within .form-label {
    color: var(--vh-primary);
    transition: color var(--transition-fast);
}

/* ==========================================================================
   Button Ripple Effect
   ========================================================================== */

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==========================================================================
   Button Loading Spinner
   ========================================================================== */

.btn .spinner-border {
    width: 1em;
    height: 1em;
    border-width: 2px;
}

/* ==========================================================================
   Floating CTA Pulse Ring + Tooltip
   ========================================================================== */

.floating-cta-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    border: 2px solid var(--vh-secondary);
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.floating-cta-btn {
    position: relative;
}

/* Tooltip removed - text is always visible in the pill button */

/* ==========================================================================
   Skeleton Loading Screens
   ========================================================================== */

.skeleton {
    position: relative;
    overflow: hidden;
    background: var(--vh-gray-200);
    border-radius: var(--radius-md);
}

.skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-title {
    height: 1.5em;
    width: 60%;
    margin-bottom: 1em;
}

.skeleton-image {
    height: 200px;
}

.skeleton-card {
    padding: var(--spacing-xl);
    height: 300px;
}

/* ==========================================================================
   404 Page Enhanced Design
   ========================================================================== */

.error-404-illustration {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-2xl);
}

.error-404-number {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--vh-primary), var(--vh-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.error-404-search {
    max-width: 400px;
    margin: var(--spacing-xl) auto;
}

.error-404-search .search-wrapper {
    position: relative;
}

.error-404-search .form-control {
    padding-right: 50px;
}

.error-404-search .search-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 42px;
    border: none;
    background: var(--vh-primary);
    color: var(--vh-white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.error-404-search .search-btn:hover {
    background: var(--vh-primary-dark);
}

/* Testimonial avatar removed - kept for backwards compatibility */

/* ==========================================================================
   Footer Contact Card Glow
   ========================================================================== */

.footer-contact-card:hover {
    background: rgba(104, 189, 69, 0.1);
    border-color: rgba(104, 189, 69, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(104, 189, 69, 0.1);
}

/* ==========================================================================
   Parallax Floating Decorations
   ========================================================================== */

.image-text-section {
    position: relative;
}

.parallax-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}

.parallax-decoration.circle-1 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--vh-primary);
    top: 10%;
    right: 5%;
}

.parallax-decoration.circle-2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--vh-secondary);
    bottom: 15%;
    left: 3%;
}

/* ==========================================================================
   Service Card Border Transition
   ========================================================================== */

.service-card {
    border: 1px solid transparent;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
