/* ========================================
   Arioni Gebäudereinigung - Premium 2026 Stylesheet
   Modern, Elegant, Professional German Design
   ======================================== */

/* CSS Variables - Premium Color Palette */
:root {
    --primary-blue: #1E90C8;
    --primary-blue-dark: #1679A8;
    --primary-blue-light: #4AA8D8;
    --dark-blue: #0F2A3D;
    --dark-blue-deep: #0A1E2B;
    --dark-blue-light: #1A3D54;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --light-blue: #E8F4FC;
    --border-gray: #E2E8F0;
    --text-gray: #475569;
    --text-light: #64748B;
    --success: #10B981;
    --error: #EF4444;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(15, 42, 61, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 42, 61, 0.08), 0 2px 4px -2px rgba(15, 42, 61, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(15, 42, 61, 0.1), 0 4px 6px -4px rgba(15, 42, 61, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 42, 61, 0.1), 0 8px 10px -6px rgba(15, 42, 61, 0.04);
    --shadow-glow: 0 0 30px rgba(30, 144, 200, 0.35);
    --shadow-card: 0 4px 20px rgba(15, 42, 61, 0.06);
    
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons - Premium Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-align: center;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 144, 200, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 200, 0.4);
}

.btn-glow:hover {
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--border-gray);
}

.btn-outline-dark:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark-blue);
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Section Labels & Titles - Premium Typography */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all var(--transition-fast);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark-blue);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ========================================
   Header - Premium Sticky Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(15, 42, 61, 0.08);
    border-bottom-color: var(--border-gray);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

/* Logo - Only Image, No Text */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
    transition: transform var(--transition-fast);
}

@media (max-width: 767px) {
    .logo img {
        height: 65px;
    }
}

.logo:hover img {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
    position: relative;
    padding: 10px 4px;
    letter-spacing: 0.3px;
    transition: all var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    transition: all var(--transition-fast);
    border-radius: 2px;
    transform: translateX(-50%);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-blue);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    z-index: 1001;
    padding: 100px 32px 32px;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--light-bg);
    border: none;
    cursor: pointer;
    color: var(--dark-blue);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--primary-blue);
    color: var(--white);
}

.mobile-nav-cta {
    margin-top: 32px;
    width: 100%;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 42, 61, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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

/* ========================================
   Hero Section - Premium Dark Blue Overlay
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.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;
}

/* Dark Blue Overlay - Premium Contrast - Enhanced for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 25, 40, 0.88) 0%, rgba(10, 30, 45, 0.82) 50%, rgba(6, 18, 30, 0.86) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 780px;
    padding: 140px 0 100px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 10px 22px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInDown 0.6s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-icon {
    width: 22px;
    height: 22px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Hero Title - Pure White with text-shadow for maximum readability */
.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4), 0 4px 20px rgba(0,0,0,0.3);
}

.title-line {
    display: block;
}

/* Removed highlight gradient - all text is now pure white */
.title-line.highlight {
    color: var(--white);
}

/* Hero Subtitle - White with high contrast */
.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 580px;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.scroll-indicator:hover {
    color: var(--white);
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* ========================================
   Trust Section
   ======================================== */
.trust {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    padding: 56px 0;
    border-bottom: 1px solid var(--border-gray);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.trust-icon-wrapper {
    position: relative;
}

.trust-icon {
    position: relative;
    z-index: 1;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.trust-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(15px);
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-blue);
}

.trust-subtext {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--light-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

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

.about-image:hover img {
    transform: scale(1.03);
}

.about-image-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--white);
    padding: 22px 32px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.shape-1 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    opacity: 0.1;
    top: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 90px;
    height: 90px;
    background: var(--primary-blue);
    opacity: 0.08;
    bottom: 50px;
    left: -70px;
    animation: float 8s ease-in-out infinite reverse;
}

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

.about-content .section-title {
    text-align: left;
}

.about-text {
    margin-bottom: 32px;
}

.about-text p {
    margin-bottom: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 15px;
}

.about-feature svg {
    color: var(--success);
    flex-shrink: 0;
}

/* ========================================
   Services Preview Section
   ======================================== */
.services-preview {
    background: var(--white);
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

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

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 42, 61, 0.4) 100%);
}

.service-content {
    padding: 32px;
}

.service-icon {
    color: var(--primary-blue);
    margin-bottom: 20px;
    width: 56px;
    height: 56px;
    background: var(--light-bg);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 14px;
}

.service-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
}

.services-cta {
    text-align: center;
    margin-top: 56px;
}

/* ========================================
   Why Section
   ======================================== */
.why {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 120px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.why-icon-wrapper {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all var(--transition-normal);
}

.why-card:hover .why-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
}

.why-icon {
    color: var(--primary-blue);
    transition: color var(--transition-normal);
}

.why-card:hover .why-icon {
    color: var(--white);
}

.why-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 14px;
}

.why-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 36px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
}

.cta-feature svg {
    color: var(--success);
    flex-shrink: 0;
}

.cta-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 28px;
}

.cta-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.cta-form .form-group {
    margin-bottom: 18px;
}

.cta-form .form-row .form-group {
    margin-bottom: 0;
}

.cta-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--white);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 144, 200, 0.1);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: var(--text-light);
}

.cta-form textarea {
    resize: vertical;
    min-height: 110px;
}

.cta-compact {
    padding: 90px 0;
}

.cta-content-centered {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--white);
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 26px;
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-fast);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-icon-wrapper {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    color: var(--white);
}

.contact-details h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.contact-link {
    font-size: 17px;
    color: var(--dark-blue);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-blue);
}

.contact-note {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
}

.contact-social {
    padding: 28px;
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 14px;
}

.contact-social p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 22px;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-blue);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: none;
}

/* ========================================
   Footer - Premium Modern Design
   ======================================== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 0 0 32px;
    position: relative;
}

.footer-wave {
    background: var(--white);
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 56px;
    padding: 72px 0 56px;
}

/* Larger Footer Logo */
.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 16px;
    transition: transform var(--transition-fast);
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo-link:hover .footer-logo {
    transform: scale(1.04);
}

.footer-experience {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.footer-company {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.footer-slogan {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--primary-blue);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--primary-blue);
}

/* Clickable Address Styling */
.footer-contact .address-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    line-height: 1.6;
}

.footer-contact .address-link:hover {
    color: var(--primary-blue);
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer-social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* ========================================
   Page Hero (for subpages)
   ======================================== */
.page-hero {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.page-hero-small {
    min-height: 450px;
}

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

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(5, 15, 25, 0.97) 0%, 
        rgba(4, 12, 20, 0.95) 40%, 
        rgba(3, 10, 16, 0.93) 100%
    );
    z-index: -1;
}

.page-hero-content {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
    transition: all var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--white);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 0, 0, 0.4);
}

.page-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.98);
    max-width: 650px;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 4px 14px rgba(0, 0, 0, 0.45);
}

/* ========================================
   Services Detail Page - Enhanced
   ======================================== */
.services-detail {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 100px 0;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gray);
    transition: all var(--transition-normal);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.service-detail-card.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.service-detail-card.reverse .service-detail-image {
    order: 2;
}

.service-detail-card.reverse .service-detail-content {
    order: 1;
}

.service-detail-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 360px;
}

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

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

.service-detail-content {
    padding: 20px 0;
}

.service-detail-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 28px;
    box-shadow: 0 8px 25px rgba(30, 144, 200, 0.3);
}

.service-detail-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-detail-description {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 28px;
}

.service-detail-list {
    list-style: none;
    margin-bottom: 36px;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--text-gray);
    font-size: 15px;
    border-bottom: 1px solid var(--border-gray);
    transition: all var(--transition-fast);
}

.service-detail-list li:hover {
    padding-left: 8px;
    color: var(--dark-blue);
}

.service-detail-list li:last-child {
    border-bottom: none;
}

.service-detail-list li::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.more-services {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 2px solid var(--border-gray);
}

.more-services-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 50px;
}

.more-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.more-service-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
}

.more-service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary-blue);
}

.more-service-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin: 0 auto 20px;
    transition: all var(--transition-normal);
}

.more-service-card:hover .more-service-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.more-service-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.more-service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   About Page
   ======================================== */
.about-story {
    background: var(--white);
    padding: 90px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-story-content .section-title {
    text-align: left;
}

.about-story-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 16px;
}

.about-story-text p:last-child {
    margin-bottom: 0;
}

.about-story-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.story-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    padding: 18px 28px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-highlight {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.values {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 120px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.value-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 52px;
    font-weight: 800;
    color: var(--light-bg);
    line-height: 1;
}

.value-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin: 0 auto 24px;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 14px;
}

.value-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.process {
    background: var(--white);
    padding: 120px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light));
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(30, 144, 200, 0.3);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page {
    background: var(--white);
    padding: 90px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-page-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-fast);
}

.contact-page-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-page-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-page-details h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.contact-page-link {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    transition: color var(--transition-fast);
}

.contact-page-link:hover {
    color: var(--primary-blue);
}

.contact-page-note {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 6px;
}

.contact-social-card {
    padding: 28px;
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
}

.contact-social-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.contact-social-card p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    color: var(--dark-blue);
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.social-link-large:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-form-column {
    position: relative;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gray);
}

.form-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.form-subheading {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form .form-row .form-group {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-gray);
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 144, 200, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.map-section {
    background: var(--light-bg);
    padding: 60px 0 100px;
}

.map-wrapper {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.quick-cta {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
    padding: 90px 0;
}

.quick-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.quick-cta-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.quick-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
}

/* ========================================
   Legal Pages (Impressum / Datenschutz)
   ======================================== */
.legal-section {
    margin-bottom: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border-gray);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.legal-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 12px;
}

.legal-content a {
    color: var(--primary-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--primary-blue-dark);
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content ul li {
    margin-bottom: 6px;
}

/* ========================================
   References Section
   ======================================== */
.references {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 120px 0;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.reference-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-gray);
}

.reference-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.reference-image {
    height: 220px;
    overflow: hidden;
}

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

.reference-card:hover .reference-image img {
    transform: scale(1.06);
}

.reference-content {
    padding: 24px;
}

.reference-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-blue);
    background: var(--light-blue);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.reference-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.reference-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Cookie Notice
   ======================================== */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    color: var(--white);
    padding: 20px 24px;
    z-index: 9997;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-notice.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-text a {
    color: var(--primary-blue-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
    }
}

/* ========================================
   Scroll Reveal Animations
   ======================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="left"].revealed {
    transform: translateX(0);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="right"].revealed {
    transform: translateX(0);
}

/* Stagger delays */
[data-reveal]:nth-child(1) { transition-delay: 0ms; }
[data-reveal]:nth-child(2) { transition-delay: 100ms; }
[data-reveal]:nth-child(3) { transition-delay: 200ms; }
[data-reveal]:nth-child(4) { transition-delay: 300ms; }
[data-reveal]:nth-child(5) { transition-delay: 400ms; }

/* ========================================
   Notification System
   ======================================== */
.notification {
    position: fixed;
    top: 100px;
    right: 24px;
    max-width: 420px;
    padding: 20px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: var(--success);
    color: var(--white);
}

.notification-error {
    background: var(--error);
    color: var(--white);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.notification-message {
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    opacity: 1;
}

/* ========================================
   Responsive Design - Enhanced
   ======================================== */
@media (max-width: 1199px) {
    .section-title {
        font-size: 34px;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-grid::before {
        display: none;
    }
    
    .more-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 44px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .cta-form-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-grid,
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        order: -1;
    }
    
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-card.reverse .service-detail-image,
    .service-detail-card.reverse .service-detail-content {
        order: unset;
    }
    
    .service-detail-image {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-header {
        margin-bottom: 44px;
    }
    
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo img {
        height: 56px;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-content {
        padding: 120px 0 90px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .trust-grid {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image-badge {
        right: 12px;
        bottom: -12px;
        padding: 16px 22px;
    }
    
    .services-grid,
    .why-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .more-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .references {
        padding: 60px 0;
    }
    
    .reference-image {
        height: 200px;
    }
    
    .cta-form .form-row,
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-title,
    .page-hero-title {
        font-size: 32px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
    
    .contact-map iframe {
        min-height: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 16px;
        height: 85px;
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-experience {
        text-align: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .page-hero {
        min-height: 380px;
    }
    
    .page-hero-title {
        font-size: 34px;
    }
    
    .cta-form-wrapper,
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .quick-cta-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 479px) {
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-title,
    .page-hero-title {
        font-size: 28px;
    }
    
    .more-services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-form-wrapper,
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .quick-cta-content h2 {
        font-size: 26px;
    }
    
    .service-detail-title {
        font-size: 28px;
    }
    
    .service-detail-image {
        height: 240px;
    }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}



/* ========================================
   Additional Mobile Fixes - Enhanced
   ======================================== */

/* Fix for contact page cards on mobile */
@media (max-width: 767px) {
    .contact-page-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .contact-page-icon {
        margin: 0 auto 16px;
    }

    .contact-page-details {
        text-align: center;
    }

    .contact-page-link {
        font-size: 18px;
        word-break: break-word;
    }

    .contact-social-card {
        text-align: center;
    }

    .contact-social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-link-large {
        width: 100%;
        justify-content: center;
    }

    /* Fix form on mobile */
    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .form-heading {
        font-size: 24px;
    }

    .form-subheading {
        font-size: 14px;
    }

    /* Fix map on mobile */
    .map-wrapper iframe {
        min-height: 300px !important;
        border-radius: 12px !important;
    }

    /* Fix quick CTA */
    .quick-cta {
        padding: 60px 0;
    }

    .quick-cta-content h2 {
        font-size: 26px;
    }

    /* Fix page hero for mobile - ENHANCED READABILITY */
    .page-hero {
        min-height: 320px;
        padding-top: 80px;
    }

    .page-hero-content {
        padding: 50px 0;
    }

    .page-hero-title {
        font-size: 28px;
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 4px 10px rgba(0, 0, 0, 0.4);
    }

    .page-hero-subtitle {
        font-size: 16px;
        font-weight: 500;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .breadcrumb {
        font-size: 13px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    /* Fix service detail cards */
    .service-detail-card {
        padding: 24px 20px;
    }

    .service-detail-image {
        height: 200px;
    }

    .service-detail-title {
        font-size: 24px;
    }

    .service-detail-description {
        font-size: 15px;
    }

    .service-detail-list li {
        font-size: 14px;
    }

    /* Fix more services grid */
    .more-services {
        margin-top: 60px;
        padding-top: 40px;
    }

    .more-services-title {
        font-size: 26px;
    }

    /* Fix about story */
    .about-story {
        padding: 60px 0;
    }

    .about-story-image {
        margin-bottom: 30px;
    }

    .story-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-flex;
    }

    /* Fix values section */
    .values {
        padding: 60px 0;
    }

    .value-card {
        padding: 28px 20px;
    }

    .value-number {
        font-size: 36px;
    }

    /* Fix process section */
    .process {
        padding: 60px 0;
    }

    .process-grid {
        gap: 30px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    /* Fix CTA section */
    .cta {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-compact {
        padding: 60px 0;
    }

    /* Fix contact section on index */
    .contact {
        padding: 60px 0;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .contact-icon-wrapper {
        margin: 0 auto 16px;
    }

    .contact-details {
        text-align: center;
    }

    .contact-link {
        font-size: 16px;
    }

    .contact-social {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Fix trust section */
    .trust {
        padding: 40px 0;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .trust-icon-wrapper {
        margin: 0 auto;
    }

    .trust-content {
        text-align: center;
    }

    /* Fix about section */
    .about {
        padding: 60px 0;
    }

    .about-image-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-flex;
    }

    .about-features {
        gap: 12px;
    }

    /* Fix services preview */
    .services-preview {
        padding: 60px 0;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 24px 20px;
    }

    /* Fix why section */
    .why {
        padding: 60px 0;
    }

    .why-card {
        padding: 28px 20px;
    }

    /* Fix hero section */
    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* Fix footer */
    .footer-grid {
        padding: 40px 0;
        gap: 32px;
    }

    .footer-logo {
        height: 60px;
    }

    .footer h4 {
        margin-bottom: 16px;
    }

    .footer-nav ul {
        gap: 10px;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    /* Fix WhatsApp button on mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Extra small devices */
@media (max-width: 479px) {
    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-label {
        font-size: 11px;
    }

    .hero-title {
        font-size: 26px;
    }

    .page-hero-title {
        font-size: 24px;
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 4px 8px rgba(0, 0, 0, 0.4);
    }

    .page-hero-subtitle {
        font-size: 14px;
        font-weight: 500;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .contact-page-link {
        font-size: 16px;
    }

    .service-detail-title {
        font-size: 22px;
    }

    .form-heading {
        font-size: 22px;
    }

    .cta-title,
    .quick-cta-content h2 {
        font-size: 22px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 24px;
    }
}

/* Fix for very small devices */
@media (max-width: 359px) {
    .hero-title {
        font-size: 24px;
    }

    .page-hero-title {
        font-size: 22px;
    }

    .contact-page-link {
        font-size: 14px;
    }

    .service-detail-title {
        font-size: 20px;
    }
}


/* Print styles */
@media print {
    .header,
    .mobile-menu,
    .mobile-overlay,
    .hero-buttons,
    .hero-scroll,
    .cta-form-wrapper,
    .contact-form-wrapper,
    .contact-map,
    .footer-wave,
    .footer,
    .whatsapp-float {
        display: none !important;
    }
    
    .hero,
    .page-hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-title,
    .page-hero-title {
        color: #000;
    }
    
    .hero-subtitle,
    .page-hero-subtitle {
        color: #333;
    }
}


/* ========================================
   ADDITIONAL RESPONSIVE IMPROVEMENTS
   ======================================== */

/* Tablet improvements */
@media (max-width: 991px) {
    .page-hero {
        min-height: 400px;
    }

    .page-hero-content {
        padding: 70px 0;
    }

    .about-story-image {
        margin-bottom: 30px;
    }

    .story-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-flex;
    }
}

/* Mobile improvements */
@media (max-width: 767px) {
    .page-hero {
        min-height: 350px;
        padding-top: 70px;
    }

    .page-hero-content {
        padding: 40px 0;
    }

    .page-hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .page-hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .breadcrumb {
        margin-bottom: 20px;
        font-size: 13px;
    }

    /* About story section */
    .about-story {
        padding: 60px 0;
    }

    .about-story-grid {
        gap: 40px;
    }

    .about-story-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Values section */
    .values {
        padding: 60px 0;
    }

    .value-card {
        padding: 28px 20px;
    }

    .value-number {
        font-size: 42px;
    }

    .value-icon {
        width: 56px;
        height: 56px;
    }

    .value-title {
        font-size: 18px;
    }

    /* Process section */
    .process {
        padding: 60px 0;
    }

    .process-grid {
        gap: 30px;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    /* Services detail */
    .services-detail {
        padding: 60px 0;
    }

    .service-detail-card {
        padding: 24px;
        gap: 30px;
    }

    .service-detail-image {
        height: 220px;
    }

    .service-detail-title {
        font-size: 26px;
    }

    .service-detail-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .more-services {
        margin-top: 60px;
        padding-top: 40px;
    }

    .more-services-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .more-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .more-service-card {
        padding: 24px 16px;
    }

    .more-service-icon {
        width: 56px;
        height: 56px;
    }

    /* Contact page */
    .contact-page {
        padding: 60px 0;
    }

    .contact-page-card {
        padding: 20px;
        gap: 16px;
    }

    .contact-page-icon {
        width: 48px;
        height: 48px;
    }

    .contact-page-link {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-heading {
        font-size: 24px;
    }

    /* Map section */
    .map-section {
        padding: 40px 0 60px;
    }

    .map-wrapper iframe {
        min-height: 350px;
    }

    /* Quick CTA */
    .quick-cta {
        padding: 60px 0;
    }

    .quick-cta-content h2 {
        font-size: 26px;
    }

    .quick-cta-content p {
        font-size: 15px;
    }

    /* CTA section */
    .cta-compact {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-text {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

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

/* Extra small devices */
@media (max-width: 479px) {
    .container {
        padding: 0 16px;
    }

    .page-hero {
        min-height: 300px;
    }

    .page-hero-title {
        font-size: 24px;
    }

    .page-hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-label {
        font-size: 11px;
    }

    .more-services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 20px;
    }

    .service-detail-title {
        font-size: 22px;
    }

    .service-detail-image {
        height: 180px;
    }

    .contact-page-card {
        flex-direction: column;
        text-align: center;
    }

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

    .contact-social-links {
        flex-direction: column;
    }

    .social-link-large {
        width: 100%;
        justify-content: center;
    }

    .quick-cta-content h2 {
        font-size: 22px;
    }

    .cta-title {
        font-size: 22px;
    }
}

/* Large desktop improvements */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Fix for images */
.about-story-image img,
.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure proper image display */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix for logo */
.logo img {
    max-height: 68px;
    width: auto;
}

@media (max-width: 767px) {
    .logo img {
        max-height: 50px;
    }
}

/* ========================================
   Form Checkbox Styles
   ======================================== */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
    padding: 16px;
    background: var(--light-bg);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-gray);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray);
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

.form-checkbox label a:hover {
    color: var(--primary-blue-dark);
}

/* Checkbox error state */
.form-checkbox:has(input:invalid:not(:placeholder-shown)) {
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.05);
}

@media (max-width: 479px) {
    .form-checkbox {
        padding: 12px;
        gap: 10px;
    }

    .form-checkbox label {
        font-size: 13px;
    }
}
