:root {
    --yellow: #FFC52D;
    --yellow-rgb: 255, 197, 45;
    --orange: #FF8F18;
    --orange-rgb: 255, 143, 24;
    --rose: #FD3449;
    --pink : #C81678;
    --magenta: #E91E8C;
    --magenta-rgb: 233, 30, 140;
    --purple: #b43fea;
    --purple-rgb: 180, 63, 234;
    --cyan: #00D9FF;
    --cyan-rgb: 0, 217, 255;
    --blue: #440db7;
    --dark-blue: #230152;
    --very-dark-blue: #07011e;
    --dark-blue-rgb: 35, 1, 82;
}


body {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans';
}
.image-body {
    background-color: var(--very-dark-blue);
    position: relative;
    color: white;
}
.image-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url('/assets/img/background.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.2;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

h1 {
    color: var(--purple);
}
#website {
    display: none;
}

.h1-style {
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    font-size: 2.5rem !important;
    font-weight: 400;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--magenta), var(--orange)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    padding-left: 0 !important;
}

.heavy-text-card .h1-style::before {
    display: none !important;
}

.navbar {
    background: rgba(7, 1, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--magenta-rgb), 0.15);
    box-shadow: 0 5px 20px rgba(0,0,0, 0.3);
    transition: all 0.3s ease;
}

.nav-logo {
    width: 30px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(var(--purple-rgb), 0.4));
    transition: all 0.3s ease;
}

.navbar-brand:hover .nav-logo {
    filter: drop-shadow(0 0 12px rgba(var(--purple-rgb), 0.6));
}

.nav-link {
    color: white!important;
    position: relative;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--magenta), var(--orange));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--magenta)!important;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: 1px solid rgba(var(--magenta-rgb), 0.5);
    padding: 0.35rem 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: var(--magenta);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(var(--magenta-rgb), 0.25);
    outline: none;
}

.navbar-toggler-icon {
    width: 1.2rem;
    height: 1.2rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(233, 30, 140, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(233, 30, 140, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e");
}

main {
    margin-top: 0;
}

.home-section {
    padding-top: calc(70px + 2rem);
    padding-bottom: 2rem;
}

/* Scroll Offset für alle Anchor-Sections */
#start,
#notfall,
#praevention,
#services,
#about,
#contact {
    scroll-margin-top: 90px;
}

@media (min-width: 768px) {
    .home-section {
        padding-top: calc(70px + 3rem);
        padding-bottom: 3rem;
    }

    #start,
    #notfall,
    #praevention,
    #services,
    #about,
    #contact {
        scroll-margin-top: 100px;
    }
}

@media (min-width: 992px) {
    .home-section {
        padding-top: calc(70px + 5rem);
        padding-bottom: 5rem;
    }

    #start,
    #notfall,
    #praevention,
    #services,
    #about,
    #contact {
        scroll-margin-top: 110px;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
    }

    .navbar .btn {
        margin-top: 1rem;
        width: 100%;
    }
}

.main-logo {
    width: 100%;
    height: auto;
    max-width: 140px;
    filter: drop-shadow(0 0 20px rgba(var(--purple-rgb), 0.5));
}
.btn {
    box-shadow: none;
    outline: none!important;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--rose);
    border: none;
    box-shadow: 0 4px 15px rgba(253, 52, 73, 0.3);
}

.btn-primary:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 52, 73, 0.4);
}

.heavy-text-card {
    max-width: 700px;
    position: relative;
}

.heavy-text-card h1 {
    font-size: 2.5rem;
    font-weight: 400;
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.heavy-text-card h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.heavy-text-card h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(180deg, var(--magenta), var(--orange));
}

.heavy-text-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.no-decoration {
    text-decoration: none!important;
}

.card {
    background: linear-gradient(145deg, rgba(var(--dark-blue-rgb), 0.5), rgba(var(--dark-blue-rgb), 0.7));
    backdrop-filter: blur(10px);
}

.card-link-glow {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card-link-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--magenta), var(--orange));
    opacity: 1;
    transition: opacity 0.3s ease;
}

.card-link-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--purple-rgb), 0.3);
}

.card-link-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 3px 8px rgba(var(--orange), 0.3));
    transition: all 0.3s ease;
}

.card-link-icon-fa {
    font-size: 40px;
    color: white;
    filter: drop-shadow(0 3px 8px rgba(var(--orange), 0.3));
    transition: all 0.3s ease;
}

.card-link-glow:hover .card-link-icon {
    filter: drop-shadow(0 5px 12px rgba(var(--orange), 0.5));
}

.card-link-glow:hover .card-link-icon-fa {
    filter: drop-shadow(0 5px 12px rgba(var(--orange), 0.5));
}

.card-link-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 0px!important;
}

.card-link-highlight {
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Anton', sans-serif;
    margin-bottom: 0px!important;
    margin-top: -5px;
}

/* Smaller action cards */
.card-link-small .card-link-icon {
    width: 30px;
    height: 30px;
}

.card-link-small .card-link-icon-fa {
    font-size: 30px;
}

.card-link-small .card-link-text {
    font-size: 0.85rem;
}

.card-link-small .card-link-highlight {
    font-size: 1.1rem;
}

.card-link-highlight-magenta {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--magenta);
}

.card-link-highlight-orange {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--orange);
}

.card-link-highlight-rose {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--rose);
}

.card-link-highlight-purple {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--purple);
}

.card-link-highlight-yellow {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: var(--yellow);
}

.card-link-border-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3%;
    color: var(--magenta);
    font-size: 2rem;
    opacity: 0.25;
    transition: all 0.3s ease;
}

.card-link-border-icon-orange {
    color: var(--orange);
}

.card-link-border-icon-rose {
    color: var(--rose);
}

.card-link-border-icon-purple {
    color: var(--purple);
}

.card-link-border-icon-yellow {
    color: var(--yellow);
}

.card-link-glow:hover .card-link-border-icon {
    opacity: 0.6;
    right: 1%;
}

/* Facts Banner */
.facts-banner {
    background: linear-gradient(145deg, rgba(var(--dark-blue-rgb), 0.3), rgba(var(--dark-blue-rgb), 0.5));
    backdrop-filter: blur(10px);
    padding: 4rem 0;
    margin-top: 8rem;
    margin-bottom: 5rem;
    position: relative;
}

.facts-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--magenta), var(--orange), transparent);
    opacity: 0.3;
}

.facts-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--magenta), var(--orange), transparent);
    opacity: 0.3;
}

.fact-item {
    text-align: center;
    padding: 2rem 1rem;
}

.fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.fact-item:hover .fact-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(var(--magenta-rgb), 0.4);
}

.fact-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1rem;
}

.fact-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .heavy-text-card p {
        font-size: 1rem;
    }
    .main-logo {
        width: 100%;
        height: auto;
        max-width: 150px;
    }
}

@media (min-width: 768px) {
    .main-logo {
        width: 100%;
        height: auto;
        max-width: 160px;
    }
}

@media (min-width: 992px) {
    .card-link-border-icon {
        right: 5%;
    }
    .card-link-glow:hover .card-link-border-icon {
        right: 2%;
    }
    .heavy-text-card p {
        font-size: 1.1rem;
    }
    .main-logo {
        width: 100%;
        height: auto;
        max-width: 180px;
    }
    .card-link-text {
        font-size: 1.1rem;
    }

    .card-link-highlight {
        font-size: 1.8rem;
    }
    .card-link-icon {
        width: 50px;
        height: 50px;
    }

    .card-link-icon-fa {
        font-size: 50px;
    }

    .card-link-small .card-link-icon {
        width: 35px;
        height: 35px;
    }

    .card-link-small .card-link-icon-fa {
        font-size: 35px;
    }

    .card-link-small .card-link-text {
        font-size: 0.95rem;
    }

    .card-link-small .card-link-highlight {
        font-size: 1.3rem;
    }
}

@media (min-width: 1200px) {
    .main-logo {
        width: 100%;
        height: auto;
        max-width: 195px;
    }
}

@media (min-width: 1400px) {
    .main-logo {
        width: 100%;
        height: auto;
        max-width: 210px;
    }
}

/* Emergency Section - Red Theme */
.section-emergency {
    position: relative;
    margin-bottom: 5rem;
}

.emergency-title {
    color: var(--magenta);
    text-transform: none;
}

.emergency-banner {
    text-align: center;
    margin-bottom: 3rem;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(253, 52, 73, 0.2), rgba(255, 143, 24, 0.2));
    border: 2px solid var(--rose);
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rose);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.emergency-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.emergency-badge:hover::before {
    left: 100%;
}

.emergency-badge i {
    font-size: 1.3rem;
    animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.emergency-card {
    background: linear-gradient(145deg, rgba(var(--dark-blue-rgb), 0.4), rgba(var(--dark-blue-rgb), 0.6));
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid var(--rose);
}

.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 52, 73, 0.3);
    border-left-color: var(--orange);
}

.emergency-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--rose), var(--orange));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(253, 52, 73, 0.3);
    transition: all 0.3s ease;
}

.emergency-card:hover .emergency-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(253, 52, 73, 0.5);
}

.emergency-card-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.emergency-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.emergency-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.emergency-list li:hover {
    color: white;
    transform: translateX(5px);
}

.emergency-list li i {
    color: var(--rose);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.emergency-notice {
    background: linear-gradient(145deg, rgba(253, 52, 73, 0.15), rgba(255, 143, 24, 0.15));
    border: 1px solid rgba(253, 52, 73, 0.3);
    border-left: 4px solid var(--rose);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.emergency-notice:hover {
    border-left-width: 6px;
    background: linear-gradient(145deg, rgba(253, 52, 73, 0.2), rgba(255, 143, 24, 0.2));
}

.emergency-notice-icon {
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--rose);
}

.emergency-notice-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.emergency-notice-content strong {
    color: var(--rose);
    font-weight: 700;
}

.emergency-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(145deg, rgba(var(--dark-blue-rgb), 0.5), rgba(var(--dark-blue-rgb), 0.7));
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--rose);
    position: relative;
    overflow: hidden;
}

.emergency-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(253, 52, 73, 0.2), transparent);
    transition: width 0.3s ease;
}

.emergency-cta:hover::before {
    width: 100%;
}

.emergency-cta:hover {
    transform: translateX(5px);
    color: white;
    box-shadow: 0 5px 20px rgba(253, 52, 73, 0.3);
}

.emergency-cta i:first-child {
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.emergency-cta i:last-child {
    font-size: 1.2rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.emergency-cta:hover i:last-child {
    opacity: 1;
    transform: translateX(5px);
}

.emergency-cta-red {
    border-left-color: var(--rose);
}

.emergency-cta-red i:first-child {
    color: var(--rose);
}

.emergency-cta-red:hover {
    box-shadow: 0 5px 20px rgba(253, 52, 73, 0.4);
}

.emergency-cta-orange {
    border-left-color: var(--orange);
}

.emergency-cta-orange i:first-child {
    color: var(--orange);
}

.emergency-cta-orange:hover {
    box-shadow: 0 5px 20px rgba(255, 143, 24, 0.4);
}

.emergency-cta-purple {
    border-left-color: var(--purple);
}

.emergency-cta-purple i:first-child {
    color: var(--purple);
}

.emergency-cta-purple:hover {
    box-shadow: 0 5px 20px rgba(var(--purple-rgb), 0.4);
}

@media (min-width: 992px) {
    .emergency-card-title {
        font-size: 1.5rem;
    }

    .emergency-list li {
        font-size: 1rem;
    }

    .emergency-cta {
        font-size: 1.05rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
}

.section-emergency .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
}

.section-emergency .service-icon-wrapper {
    background: var(--magenta);
    box-shadow: 0 5px 15px rgba(var(--magenta-rgb), 0.3);
}

.section-emergency .service-card:hover .service-icon-wrapper {
    box-shadow: 0 8px 20px rgba(var(--magenta-rgb), 0.4);
}

.section-emergency .service-title::after {
    background: var(--magenta);
}

.section-emergency .service-item > i {
    color: var(--magenta);
}

.section-emergency .service-card:hover {
    box-shadow: 0 10px 30px rgba(var(--magenta-rgb), 0.2);
}

/* Prevention Section - Orange Theme */
.section-prevention {
    position: relative;
    margin-bottom: 5rem;
}

.prevention-title {
    color: var(--orange);
    text-transform: none;
}

.section-prevention .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
}

.prevention-category {
    position: relative;
}

.prevention-category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    position: relative;
}

.prevention-category-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--orange);
}

.prevention-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(var(--orange-rgb), 0.3);
    flex-shrink: 0;
}

.prevention-category-title {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--orange);
    margin: 0;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.section-prevention .service-icon-wrapper {
    background: var(--orange);
    box-shadow: 0 5px 15px rgba(var(--orange-rgb), 0.3);
}

.section-prevention .service-card:hover .service-icon-wrapper {
    box-shadow: 0 8px 20px rgba(var(--orange-rgb), 0.4);
}

.section-prevention .service-title::after {
    background: var(--orange);
}

.section-prevention .service-item > i {
    color: var(--orange);
}

.section-prevention .service-card:hover {
    box-shadow: 0 10px 30px rgba(var(--orange-rgb), 0.2);
}

@media (min-width: 992px) {
    .prevention-category-title {
        font-size: 1.8rem;
    }
}

/* REAKTIVE Section - Magenta Theme */
.section-reactive .section-title {
    color: var(--magenta);
}

.section-reactive .service-icon-wrapper {
    background: var(--magenta);
    box-shadow: 0 5px 15px rgba(var(--magenta-rgb), 0.3);
}

.section-reactive .service-card:hover .service-icon-wrapper {
    box-shadow: 0 8px 20px rgba(var(--magenta-rgb), 0.4);
}

.section-reactive .service-title::after {
    background: var(--magenta);
}

.section-reactive .service-item > i {
    color: var(--magenta);
}

.section-reactive .service-card:hover {
    box-shadow: 0 10px 30px rgba(var(--magenta-rgb), 0.2);
}

/* PRÄVENTIVE Section - Orange Theme */
.section-preventive .section-title {
    color: var(--orange);
}

.section-preventive .service-icon-wrapper {
    background: var(--orange);
    box-shadow: 0 5px 15px rgba(var(--orange-rgb), 0.3);
}

.section-preventive .service-card:hover .service-icon-wrapper {
    box-shadow: 0 8px 20px rgba(var(--orange-rgb), 0.4);
}

.section-preventive .service-title::after {
    background: var(--orange);
}

.section-preventive .service-item > i {
    color: var(--orange);
}

.section-preventive .service-card:hover {
    box-shadow: 0 10px 30px rgba(var(--orange-rgb), 0.2);
}

/* Service Cards */
.service-card {
    background: linear-gradient(145deg, rgba(var(--dark-blue-rgb), 0.4), rgba(var(--dark-blue-rgb), 0.6));
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
}

/* Service Icons */
.service-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 1.8rem;
    color: white;
}

/* Service Title */
.service-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    transition: width 0.3s ease;
}

.service-card:hover .service-title::after {
    width: 100px;
}

/* Service Items */
.service-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(3px);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item > i {
    flex-shrink: 0;
    font-size: 1.3rem;
    width: 25px;
    margin-top: 3px;
    opacity: 0.9;
}

.service-item-title {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about-title {
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card {
    background: linear-gradient(145deg, rgba(var(--dark-blue-rgb), 0.4), rgba(var(--dark-blue-rgb), 0.6));
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--magenta-rgb), 0.2);
}

.about-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.about-logo-wrapper {
    padding: 15px;
}

.about-logo {
    width: 100%;
    max-height: 40px;
    height: auto;
    filter: brightness(0) invert(1);
}

.about-card-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
}

.about-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* About Features */
.about-feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.about-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--orange);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: white;
}

.about-feature h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--orange);
    margin-bottom: 1rem;
}

.about-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(var(--dark-blue-rgb), 0.5), rgba(var(--dark-blue-rgb), 0.7));
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--magenta), var(--orange));
}

.about-cta h3 {
    font-size: 2rem;
    font-weight: 400;
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-title {
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text {
    padding: 2rem 0;
}

.contact-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--magenta);
    margin-bottom: 1.5rem;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.contact-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.contact-logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(var(--magenta-rgb), 0.4));
    transition: all 0.3s ease;
}

.contact-logo-wrapper:hover .contact-logo {
    filter: drop-shadow(0 0 40px rgba(var(--orange-rgb), 0.6));
    transform: scale(1.05);
}

.contact-card {
    background: linear-gradient(145deg, rgba(var(--dark-blue-rgb), 0.5), rgba(var(--dark-blue-rgb), 0.7));
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--magenta), var(--orange));
}

.contact-avatar {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    position: relative;
    padding: 5px;
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    border-radius: 50%;
}

.contact-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.contact-name {
    font-size: 2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-role {
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.contact-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(var(--magenta-rgb), 0.3);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: rgba(var(--magenta-rgb), 0.5);
    transform: translateY(-2px);
}

.contact-company {
    color: rgba(255, 255, 255, 0.85);
}

.contact-company p {
    margin: 0;
}

.contact-social .btn {
    font-size: 1rem;
}

.contact-social .btn i {
    margin-right: 0.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .about-card-title {
        font-size: 2rem;
    }

    .about-cta h3 {
        font-size: 2.2rem;
    }

    .contact-card {
        padding: 3rem;
    }
}

@media (min-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.6rem;
    }

    .service-item-title {
        font-size: 1.05rem;
    }

    .service-item p {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(var(--dark-blue-rgb), 0.95), rgba(7, 1, 30, 0.98));
    backdrop-filter: blur(10px);
    position: relative;
    margin-top: 5rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--magenta), var(--orange));
}

.footer-main {
    padding: 4rem 0 3rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(var(--magenta-rgb), 0.3));
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(var(--magenta-rgb), 0.4);
    color: white;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--magenta);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--magenta);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    color: var(--magenta);
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.scroll-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(var(--magenta-rgb), 0.5);
    color: white;
}

@media (max-width: 991px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-section {
        margin-bottom: 2.5rem;
    }

    .footer-logo {
        max-width: 180px;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-logo {
        max-width: 160px;
        margin: 0 auto;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-contact li {
        margin-bottom: 1rem;
    }

    .footer-contact li i {
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .scroll-to-top {
        margin: 0 auto;
    }
}

/* Contact Form Styles */
.contact-form-card {
    background: linear-gradient(145deg, rgba(var(--dark-blue-rgb), 0.5), rgba(var(--dark-blue-rgb), 0.7));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--magenta-rgb), 0.2);
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--magenta), var(--orange));
}

.contact-form .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(var(--dark-blue-rgb), 0.6);
    border: 1px solid rgba(var(--magenta-rgb), 0.3);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(var(--dark-blue-rgb), 0.8);
    border-color: var(--magenta);
    box-shadow: 0 0 0 0.2rem rgba(var(--magenta-rgb), 0.25);
    color: white;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23E91E8C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.contact-form .form-select option {
    background: var(--dark-blue);
    color: white;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--magenta-rgb), 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--magenta-rgb), 0.5);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.5rem;
    }
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(145deg, rgba(var(--dark-blue-rgb), 0.5), rgba(var(--dark-blue-rgb), 0.7));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--magenta-rgb), 0.2);
    border-radius: 0;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--magenta));
}

.contact-info-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-family: 'Anton', sans-serif;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    font-size: 1.2rem;
    color: var(--magenta);
    min-width: 24px;
    margin-top: 0.2rem;
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--magenta);
}

.contact-info-item strong {
    color: white;
}

@media (max-width: 991px) {
    .contact-info-card {
        padding: 1.5rem;
        margin-top: 1rem;
    }
}

/* Captcha Styles */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.captcha-image {
    border: 1px solid rgba(var(--magenta-rgb), 0.3);
    border-radius: 0;
    padding: 0;
    background: linear-gradient(145deg, rgba(var(--dark-blue-rgb), 0.4), rgba(var(--dark-blue-rgb), 0.6));
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(var(--magenta-rgb), 0.2);
    display: block;
}

.captcha-image:hover {
    border-color: rgba(var(--magenta-rgb), 0.6);
    box-shadow: 0 0 30px rgba(var(--magenta-rgb), 0.4);
    transform: translateY(-2px);
}

.captcha-container .btn-outline-primary {
    border: 1px solid rgba(var(--magenta-rgb), 0.5);
    color: var(--magenta);
    background: transparent;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.captcha-container .btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--magenta), var(--orange));
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(var(--magenta-rgb), 0.4);
    transform: translateY(-2px);
}

.captcha-container .btn-outline-primary:active {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .captcha-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .captcha-image {
        width: 100%;
        max-width: 240px;
    }
}
.about-list {
    list-style: none;
    padding-left: 0;
}