/* ahangariAPPS - Klassisches Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Klassische Farbpalette */
    --primary-blue: #2c3e50;
    --secondary-blue: #34495e;
    --primary-purple: #7f8c8d;
    --secondary-purple: #95a5a6;
    --primary-green: #2c3e50;
    --secondary-green: #34495e;
    --primary-orange: #5d6d7e;
    --secondary-orange: #6c7a89;
    --primary-pink: #7f8c8d;
    --secondary-pink: #95a5a6;
    --primary-cyan: #34495e;
    --secondary-cyan: #4a5f7f;
    --primary-yellow: #b8860b;
    --secondary-yellow: #daa520;
    
    /* Neutrale Farben */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --border-light: #d0d0d0;
    
    /* Schatten */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.18);
    
    /* Übergänge */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: #f5f5f5;
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header Styles */
header {
    background: #2c3e50;
    color: var(--white);
    padding: 30px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #34495e;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    animation: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #daa520;
    transition: var(--transition-smooth);
}

.logo:hover::after {
    width: 100%;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.header-intro h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.header-intro p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Navigation Styles */
nav {
    background: #34495e;
    padding: 0;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 18px 28px;
    display: block;
    transition: var(--transition-smooth);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: var(--transition-smooth);
}

nav ul li a:hover::before {
    left: 100%;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #daa520;
    transform: translateX(-50%);
    transition: var(--transition-smooth);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 80%;
}

nav ul li a.active {
    background: rgba(255, 255, 255, 0.15);
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Main Content Styles */
main {
    min-height: calc(100vh - 400px);
    padding: 60px 0;
    position: relative;
}

.content-section {
    background: #ffffff;
    padding: 50px 50px 50px 60px;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: visible;
    transition: var(--transition-smooth);
    animation: fadeIn 0.6s ease;
    border-left: 4px solid #2c3e50;
}

.content-section:nth-child(2n) {
    border-left-color: #34495e;
}

.content-section:nth-child(3n) {
    border-left-color: #5d6d7e;
}

.content-section:nth-child(4n) {
    border-left-color: #7f8c8d;
}

.content-section:nth-child(5n) {
    border-left-color: #95a5a6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.content-section h1,
.content-section h2 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

.content-section h1 {
    font-size: 3rem;
    border-bottom: none;
    padding-bottom: 20px;
    position: relative;
}

.content-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #2c3e50;
    border-radius: 0;
}

.content-section h2 {
    font-size: 2rem;
    margin-top: 40px;
    padding-left: 20px;
    border-left: 3px solid #2c3e50;
}

.content-section:nth-child(2n) h2 {
    border-left-color: #34495e;
}

.content-section:nth-child(3n) h2 {
    border-left-color: #5d6d7e;
}

.content-section:nth-child(4n) h2 {
    border-left-color: #7f8c8d;
}

.content-section h3 {
    color: var(--text-medium);
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    position: relative;
    padding-left: 0;
}

.content-section h3::before {
    content: '';
    display: none;
}

.content-section p {
    margin-bottom: 20px;
    color: var(--text-medium);
    text-align: justify;
    line-height: 1.9;
    font-size: 1.05rem;
}

.content-section ul {
    margin-left: 40px;
    margin-bottom: 25px;
}

.content-section ul li {
    margin-bottom: 15px;
    color: var(--text-medium);
    position: relative;
    padding-left: 10px;
    line-height: 1.8;
}

.content-section ul li::marker {
    color: #2c3e50;
}

.content-section ul li:nth-child(2n)::marker {
    color: #34495e;
}

.content-section ul li:nth-child(3n)::marker {
    color: #5d6d7e;
}

.content-section ul li:nth-child(4n)::marker {
    color: #7f8c8d;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #2c3e50;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:nth-child(2)::before {
    background: #34495e;
}

.service-card:nth-child(3)::before {
    background: #5d6d7e;
}

.service-card:nth-child(4)::before {
    background: #7f8c8d;
}

.service-card:nth-child(5)::before {
    background: #95a5a6;
}

.service-card:nth-child(6)::before {
    background: #2c3e50;
}

.service-card:nth-child(7)::before {
    background: #b8860b;
}

.service-card:nth-child(8)::before {
    background: #7f8c8d;
}

.service-card:nth-child(9)::before {
    background: #2c3e50;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #2c3e50;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
    padding: 20px 0;
    margin-bottom: 60px;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #d0d0d0;
    padding: 45px 35px;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2c3e50;
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: transparent;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.pricing-card:hover::after {
    width: 0;
    height: 0;
}

.pricing-card:hover {
    border-color: #2c3e50;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #7f8c8d;
    border-width: 3px;
    background: #ffffff;
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured::before {
    transform: scaleX(1);
    height: 4px;
    background: #7f8c8d;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.pricing-card.featured h3 {
    color: #7f8c8d;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin: 30px 0;
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
}

.pricing-card.featured .price {
    color: #7f8c8d;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    display: block;
    margin-top: 10px;
}

.price-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.pricing-features {
    text-align: left;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-light);
    position: relative;
    z-index: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
    list-style: none;
    padding-left: 30px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-features li:hover {
    color: var(--text-dark);
    padding-left: 35px;
}

/* Contact Info */
.contact-info {
    background: #f5f5f5;
    padding: 50px;
    border-radius: 4px;
    margin-top: 40px;
    border: 2px solid #d0d0d0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    animation: none;
}

.contact-info:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.contact-info p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.phone-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.8rem;
    display: inline-block;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.phone-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2c3e50;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.phone-link:hover::after {
    transform: scaleX(1);
}

.phone-link:hover {
    transform: translateX(5px) scale(1.05);
}

/* Footer Styles */
footer {
    background: #2c3e50;
    color: var(--white);
    padding: 70px 0 30px 0;
    margin-top: 100px;
    position: relative;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #34495e;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section {
    animation: fadeIn 0.8s ease;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #b8860b;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 2;
    transition: var(--transition-fast);
}

.footer-section a {
    display: block;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '';
    display: none;
}

.footer-section a:hover::before {
    display: none;
    opacity: 1;
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 25px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: none;
    backdrop-filter: blur(15px);
    border-top: 3px solid #34495e;
    overflow: hidden;
}

#cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    animation: none;
}

@keyframes shimmerBanner {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

#cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cookie-icon {
    display: none;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-text a {
    color: #daa520;
    text-decoration: none;
    border-bottom: 2px solid #daa520;
    transition: var(--transition-fast);
    font-weight: 600;
}

.cookie-text a:hover {
    color: #b8860b;
    border-bottom-color: #b8860b;
    text-shadow: none;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-shadow: none;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cookie-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cookie-btn.accept {
    background: #2c3e50;
    color: var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    background: #34495e;
}

.cookie-btn.decline {
    background: #7f8c8d;
    color: var(--white);
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cookie-btn.decline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    background: #95a5a6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: #2c3e50;
    border-radius: 0;
    border: 2px solid var(--off-white);
}

::-webkit-scrollbar-thumb:hover {
    background: #34495e;
}

/* Selection Style */
::selection {
    background: #2c3e50;
    color: var(--white);
}

::-moz-selection {
    background: #2c3e50;
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    header {
        padding: 25px 0;
    }

    .logo {
        font-size: 2rem;
    }

    .header-intro h1 {
        font-size: 1.3rem;
    }

    .header-intro p {
        font-size: 0.95rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        padding: 15px 20px;
    }

    main {
        padding: 40px 0;
    }

    .content-section {
        padding: 35px 25px 35px 35px;
        border-radius: 12px;
    }

    .content-section h1 {
        font-size: 2.2rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
        padding-left: 15px;
    }

    .content-section h3 {
        font-size: 1.3rem;
    }

    .service-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .contact-info {
        padding: 35px 25px;
    }

    .phone-link {
        font-size: 1.5rem;
    }

    footer {
        padding: 50px 0 20px 0;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-icon {
        font-size: 3rem;
    }

    .cookie-text {
        min-width: 100%;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 20px 0;
    }

    .logo {
        font-size: 1.8rem;
    }

    .header-intro h1 {
        font-size: 1.1rem;
    }

    .header-intro p {
        font-size: 0.9rem;
    }

    nav ul li a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    main {
        padding: 30px 0;
    }

    .content-section {
        padding: 25px 20px 25px 30px;
        border-left-width: 4px;
    }

    .content-section h1 {
        font-size: 1.8rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }

    .content-section p {
        font-size: 1rem;
    }

    .service-card {
        padding: 25px 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 2.8rem;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .phone-link {
        font-size: 1.3rem;
    }

    footer {
        padding: 40px 0 20px 0;
    }

    #cookie-banner {
        padding: 15px;
    }

    .cookie-icon {
        font-size: 2.5rem;
    }

    .cookie-text h3 {
        font-size: 1.2rem;
    }

    .cookie-text p {
        font-size: 0.9rem;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
}
