/*
* gutachteranwalt.de - Custom Styles
* Ein Service der Kanzlei Basun
* Design: Nord Template mit angepassten Farben
*/

/* ========================================
   VARIABLES & COLORS
======================================== */
:root {
    --primary-color: #2eca7f;
    --dark-blue: #1a2d62;
    --text-gray: #888;
    --white: #fff;
    --light-bg: #f9f9f9;
    --black: #000;
    --black-2: #252525;
}

/* ========================================
   GENERAL STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
    color: var(--black-2);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

.txt-1 {
    color: var(--dark-blue) !important;
}

.txt-2 {
    color: var(--primary-color) !important;
}

.txt-3 {
    color: var(--light-bg) !important;
}

p {
    margin-bottom: 15px;
    line-height: 1.9;
    color: var(--black-2);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cont-hero {
    max-width: 1260px;
}

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

.section-padding {
    padding: 100px 0;
}

.pt-150 {
    padding-top: 150px;
}

.pb-130 {
    padding-bottom: 130px;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch optimization for mobile devices */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    a, button, .btn-primary, .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .btn-primary:hover,
    .btn-secondary:hover,
    a:hover {
        transform: none;
    }

    /* Prevent double-tap zoom */
    * {
        touch-action: manipulation;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   SCROLL TO TOP
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--dark-blue);
    transform: translateY(-5px);
}

/* Performance optimizations for animations */
.parallax-bg,
[data-parallax],
.scroll-top,
.animate-fadeInUp,
.animate-scaleIn {
    will-change: transform;
}

/* Disable will-change for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .parallax-bg,
    [data-parallax] {
        will-change: auto;
        transform: none !important;
    }

    .animate-fadeInUp,
    .animate-scaleIn {
        will-change: auto;
        animation: none !important;
    }
}

/* ========================================
   BUTTONS
======================================== */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 14px 34px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: white;
}

.db-btn-arrow {
    background: var(--primary-color);
    padding: 16px 30px;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.db-btn-arrow i {
    transition: transform 0.3s ease;
}

.db-btn-arrow:hover i {
    transform: translateX(5px);
}

/* ========================================
   HEADER
======================================== */
.header__area {
    background: #fff;
    padding: 20px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.header__inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo a {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-blue);
}

.header__logo span {
    color: var(--primary-color);
}

.header__logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.header__subtitle {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-gray);
    margin: 2px 0 0 0;
}

.header__subtitle a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header__subtitle a:hover {
    color: var(--primary-color);
}

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

.main-menu ul li a {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.main-menu ul li a:hover {
    color: var(--primary-color);
}

.mandanten-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__others {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header__others .btn-primary {
    padding: 12px 30px;
    font-size: 14px;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-blue);
    cursor: pointer;
    padding: 5px;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-close {
    display: none;
}

/* Header Mobile Optimization */
@media (max-width: 992px) {
    .header__others .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }

    .header__others .btn-primary i {
        display: none;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .header__area {
        padding: 12px 0;
    }

    .header__inner {
        padding: 0 10px;
    }

    .header__others {
        gap: 8px;
    }

    .header__others .btn-primary {
        padding: 8px 12px;
        font-size: 12px;
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 9999;
        padding: 80px 30px 30px;
        display: block !important;
        overflow-y: auto;
    }

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

    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--dark-blue);
        cursor: pointer;
        padding: 5px;
        min-width: 44px;
        min-height: 44px;
        z-index: 10000;
    }

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

    .main-menu ul {
        flex-direction: column;
        gap: 0;
        list-style: none;
    }

    .main-menu ul li {
        width: 100%;
    }

    .main-menu ul li a {
        color: #1a2d62;
        display: block;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

    .main-menu ul li a:hover {
        color: var(--primary-color);
        padding-left: 10px;
    }

    .main-menu ul li:last-child a {
        border-bottom: none;
    }

    .mandanten-link {
        background: var(--primary-color);
        color: #fff !important;
        padding: 15px 20px !important;
        border-radius: 8px;
        text-align: center;
        border: none !important;
        margin-top: 20px;
    }

    .mandanten-link:hover {
        background: var(--secondary-color);
        padding-left: 20px !important;
    }
}

@media (max-width: 480px) {
    .header__logo-img {
        height: 35px;
    }

    .header__others .btn-primary {
        padding: 6px 10px;
        font-size: 11px;
    }

    .mobile-menu-toggle {
        font-size: 22px;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero__text {
        font-size: 15px;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-number {
        font-size: 24px;
    }

    .service-card {
        padding: 18px;
    }

    .sec-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .sec-subtitle {
        font-size: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-padding {
        padding: 50px 0;
    }

    /* Contact Form */
    .contact-form-container {
        padding: 20px;
    }

    .contact-form .form-group label {
        font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 14px;
        padding: 10px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* ========================================
   HERO AREA (Nord Style)
======================================== */
.hero__area_1 {
    position: relative;
    background: linear-gradient(185deg, rgb(192 252 242 / 77%) 0%, rgb(255, 255, 255) 70%, rgba(46, 202, 127, 0.3) 100%);
    overflow: hidden;
    padding: 30px 0 100px;
}

.hero-grid-pattern {
    position: absolute;
    width: 200%;
    height: 200%;
    left: -50%;
    background-image:
        linear-gradient(to right, var(--primary-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--primary-color) 1px, transparent 1px);
    background-size: 40px 40px;
    mix-blend-mode: soft-light;
    opacity: 0.4;
    z-index: 3;
    pointer-events: none;
}

.hero-grid-top {
    top: -50%;
    transform: rotate(-15deg);
    animation: bg-animation-reverse 10s linear infinite;
}

.hero__area_1::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    bottom: -50%;
    left: -50%;
    background-image:
        linear-gradient(to right, var(--primary-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--primary-color) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(15deg);
    animation: bg-animation 10s linear infinite;
    mix-blend-mode: soft-light;
    opacity: 0.3;
    z-index: 0;
}

@keyframes bg-animation {
    0% {
        transform: rotate(15deg) translateX(0);
    }

    100% {
        transform: rotate(15deg) translateX(-100px);
    }
}

@keyframes bg-animation-reverse {
    0% {
        transform: rotate(-15deg) translateX(0);
    }

    100% {
        transform: rotate(-15deg) translateX(100px);
    }
}

.roundblue-bg {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 0;
}

.roundblue-bg-02 {
    top: -2px;
    left: 0;
}

.roundblue-bg-bottom {
    bottom: -2px;
    left: 0;
}

.hero-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.hero__content {
    padding: 40px 0;
}

.hero__title {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--dark-blue);
}

.logo-txt {
    color: var(--primary-color);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 48px;
}

.pulse-ico {
    width: 40px;
    height: auto;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
    position: relative;
    top: -2px;
    margin: 0 35px 0 5px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.pulse-ico:hover {
    transform: scale(1.2);
}

.hero-main {
    color: var(--dark-blue);
}

.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.highlight-secondary {
    color: #1a2d62;
    font-weight: bold;
}

.hero__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--black-2);
    margin-bottom: 30px;
}

.hero__features {
    margin-bottom: 40px;
}

.hero__features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--black-2);
    font-size: 16px;
}

.hero__features li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    background: rgba(26, 45, 98, 0.08);
    backdrop-filter: blur(10px);
    color: var(--dark-blue);
    border: 2px solid rgba(26, 45, 98, 0.15);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(46, 202, 127, 0.12);
}

.btn-secondary i {
    font-size: 14px;
}

.btn-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.hero__image-wrapper {
    position: relative;
    margin-top: 20px;
}

.hero__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 10;
    max-width: 200px;
    border: 1px solid rgba(46, 202, 127, 0.15);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.hero__badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.badge-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color), #1a8f5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.15;
    position: relative;
    bottom: 6px;
}

.hero__main-image {
    width: 100%;
    max-height: 290px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
    transition: all 0.6s ease;
}

.hero__image-wrapper:hover .hero__main-image {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 0;
    padding: 20px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--black-2);
    line-height: 1.4;
}

.hero__services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 60px;
}

.service-card {
    background: #E8F5E9;
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-animate {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    animation: unfoldCard 0.6s ease-out forwards;
}

@keyframes unfoldCard {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.service-card-icon {
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 80px;
    color: white;
}

.service-card-blue {
    background: #E3F2FD;
}

.service-card-alt {
    background: #FFF9C4;
}

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

.service-text {
    font-size: 15px;
    color: var(--black-2);
    line-height: 1.6;
}

/* ========================================
   SERVICE AREA
======================================== */
.service__area {
    background: #2eca7f;
    color: white;
}

.service__header {
    margin-bottom: 60px;
}

.sec-subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.sec-subtitle span {
    color: var(--primary-color);
}

.sec-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.sec-text {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

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

.service__item {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    transition: all 0.4s ease;
}

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

.service__icon {
    width: 80px;
    height: 80px;
    background: #1a2d62;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service__icon i {
    font-size: 36px;
    color: white;
}

.service__title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.service__content p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ========================================
   ADVANTAGES NEW DESIGN (Vorteile)
======================================== */
.advantages-intro {
    padding-right: 40px;
}

.sec-title-white {
    font-size: 38px;
    margin-bottom: 25px;
    color: white;
    line-height: 1.3;
}

.advantages-lead {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.advantage-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.advantage-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.advantage-badge i {
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.advantage-badge span {
    font-size: 15px;
    font-weight: 600;
    color: white;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .advantages-intro {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .sec-title-white {
        font-size: 32px;
    }

    .advantages-lead {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .advantages-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .advantage-badge {
        padding: 18px 16px;
    }

    .advantage-badge i {
        font-size: 22px;
    }

    .advantage-badge span {
        font-size: 14px;
    }

    .sec-title-white {
        font-size: 28px;
    }

    .advantages-lead {
        font-size: 16px;
    }
}

/* ========================================
   ABOUT AREA
======================================== */
.about__area {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.about-item i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.about-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.about-item p {
    color: var(--text-gray);
    font-size: 15px;
}

.about__content {
    text-align: center;
}

.image-wrapper {
    position: relative;
    margin-bottom: 40px;
    border-radius: 25px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    border-radius: 25px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 45, 98, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 80px;
    color: white;
}

.about__content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: var(--black-2);
}

/* ========================================
   COUNTER AREA
======================================== */
.counter__area {
    background: white;
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
}

.parallax-section .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/dsfsdfs32ffw.webp);
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    z-index: 0;
}

.counter__area .container {
    position: relative;
    z-index: 1;
}

.counter__area .sec-subtitle,
.counter__area .sec-title {
    color: white;
}

.counter__area .sec-subtitle span {
    color: var(--primary-color);
}

.counter__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 80px;
}

.counter__item {
    padding: 40px 30px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.counter__item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.counter__number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 15px;
}

.counter__title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
}

/* CTA Overlay */
.cta-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 0;
    margin-top: 60px;
    background: rgba(26, 45, 98, 0.85);
    border-radius: 25px;
    color: white;
}

.cta-overlay h2 {
    color: white;
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-overlay p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

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

.cta-overlay .btn-primary {
    border: 1px solid #ffffff00;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-overlay .btn-primary:hover {
    color: white !important;
    background: var(--primary-color);
}

.cta-overlay .btn-primary-alt {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-overlay .btn-primary-alt:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white !important;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-overlay .btn-primary i {
    font-size: 18px;
}

/* ========================================
   LEGAL PAGES (Impressum & Datenschutz)
======================================== */
.legal-section {
    background: var(--light-bg);
    min-height: 60vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.legal-content h1 {
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-size: 48px;
}

.legal-content h2 {
    color: var(--dark-blue);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 32px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.legal-content h2:first-of-type {
    margin-top: 30px;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--black-2);
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 0;
}

.legal-content ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--black-2);
}

.legal-content ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    border-bottom: 1px solid var(--primary-color);
}

.legal-content blockquote {
    background: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
}

.legal-content hr {
    border: none;
    border-top: 2px solid #f0f0f0;
    margin: 40px 0;
}

.legal-content strong {
    color: var(--dark-blue);
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2eca7f 0%, #1a2d62 100%);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Barlow', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9f9f9;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(46, 202, 127, 0.1);
}

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

.contact-form .checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 14px;
    line-height: 1.6;
    color: var(--black-2);
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    font-size: 16px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: fit-content;
}

.contact-info h4 {
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-size: 22px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    min-width: 24px;
}

.info-item strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 16px;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    color: var(--black-2);
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-intro p {
    font-size: 18px;
    line-height: 1.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.contact-icon i {
    font-size: 36px;
    color: white;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: #0f1934;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
}

.footer__logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

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

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

.footer-bottom a {
    color: var(--primary-color);
}

/* ========================================
   GRID UTILITIES
======================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-8 {
    flex: 0 0 66.667%;
    max-width: 66.667%;
    padding: 0 15px;
}

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

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .hero__area_1 {
        padding: 140px 0 80px;
    }

    .hero__title {
        font-size: 48px;
    }

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

@media (max-width: 768px) {
    .header__logo-img {
        height: 40px;
    }

    .footer__logo-img {
        height: 50px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .col-lg-6,
    .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

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

    .hero__area_1 {
        padding: 100px 0 60px;
    }

    .hero__title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero__text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero__image-wrapper {
        margin-top: 30px;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .hero__services {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 40px;
    }

    .service-card {
        padding: 20px;
    }

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

    .service-text {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 25px;
    }

    .btn-primary {
        padding: 12px 28px;
        font-size: 15px;
    }

    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 28px;
        font-size: 15px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Sections Padding */
    .section-padding {
        padding: 60px 0;
    }

    .pt-150 {
        padding-top: 80px !important;
    }

    .pb-130 {
        padding-bottom: 70px !important;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .cta-buttons .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-container {
        padding: 30px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info {
        padding: 30px;
    }

    .legal-content {
        padding: 40px 30px;
    }

    .legal-content h1 {
        font-size: 36px;
    }

    .legal-content h2 {
        font-size: 28px;
    }

    .legal-content h3 {
        font-size: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 36px;
    }

    .logo-txt {
        font-size: 32px;
    }

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

    .counter__inner {
        grid-template-columns: 1fr;
    }

    .counter__number {
        font-size: 42px;
    }
}

/* ========================================
   PROCESS AREA
======================================== */
.process__area {
    background: var(--light-bg);
}

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

.sec-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-item {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.process-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    z-index: 2;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-icon i {
    font-size: 40px;
    color: var(--dark-blue);
}

.process-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.process-item p {
    font-size: 15px;
    color: var(--text-gray);
}

/* ========================================
   DIGITAL PORTAL AREA
======================================== */
.digital-portal__area {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.digital-portal-wrapper {
    position: relative;
    z-index: 2;
}

.digital-portal-content {
    padding-right: 40px;
}

.portal-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.portal-features {
    margin-bottom: 30px;
}

.portal-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.portal-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.portal-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portal-feature-icon i {
    font-size: 28px;
    color: white;
}

.portal-feature-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.portal-feature-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Portal Buttons */
.portal-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.portal-buttons .btn-secondary {
    background: rgba(26, 45, 98, 0.08);
    backdrop-filter: blur(10px);
    color: var(--dark-blue);
    border: 2px solid rgba(26, 45, 98, 0.15);
}

.portal-buttons .btn-secondary:hover {
    background: rgba(46, 202, 127, 0.12);
    color: var(--dark-blue);
    border-color: var(--primary-color);
}

/* Portal Visual/Mockup */
.digital-portal-visual {
    position: relative;
    perspective: 1000px;
}

.portal-mockup {
    transform: rotateY(-5deg);
    transition: all 0.6s ease;
}

.digital-portal-visual:hover .portal-mockup {
    transform: rotateY(0deg) translateY(-10px);
}

.portal-screen {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 8px solid var(--dark-blue);
}

.portal-screen-header {
    background: var(--dark-blue);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portal-header-animate {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.digital-portal-visual.animated .portal-header-animate {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.portal-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.portal-logo i {
    font-size: 24px;
    color: var(--primary-color);
}

.portal-logo span {
    font-size: 18px;
    font-weight: 700;
}

.portal-user i {
    font-size: 32px;
    color: white;
}

.portal-screen-content {
    padding: 30px 25px;
    background: #f8f9fa;
}

.portal-stat-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.portal-stat-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.portal-stat-card i {
    font-size: 32px;
    color: var(--primary-color);
}

.portal-card-animate {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.digital-portal-visual.animated .portal-card-animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

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

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #2eca7f;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 5px;
}

.portal-case-list {
    margin-bottom: 20px;
}

.portal-case-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.portal-case-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portal-case-item.active {
    border-left: 4px solid var(--primary-color);
}

.portal-case-animate {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.digital-portal-visual.animated .portal-case-animate {
    opacity: 1;
    transform: translateX(0);
}

.digital-portal-visual.animated .portal-case-animate:nth-child(1) {
    transition-delay: 0.4s;
}

.digital-portal-visual.animated .portal-case-animate:nth-child(2) {
    transition-delay: 0.5s;
}

.digital-portal-visual.animated .portal-case-animate:nth-child(3) {
    transition-delay: 0.6s;
}

.case-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.case-status.new {
    background: #ffc107;
}

.case-status.processing {
    background: var(--primary-color);
    animation: pulse-status 2s infinite;
}

.case-status.complete {
    background: #28a745;
}

@keyframes pulse-status {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.case-info {
    flex: 1;
}

.case-info h5 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-blue);
}

.case-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.case-date {
    font-size: 12px;
    color: var(--text-gray);
}

.case-progress {
    min-width: 150px;
    text-align: right;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.progress-animate {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s ease-out;
}

.digital-portal-visual.animated .progress-animate {
    transform: scaleX(1);
    transition-delay: 0.8s;
}

.progress-fill.complete {
    background: #28a745;
}

.case-progress span {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
}

.portal-upload-zone {
    background: white;
    border: 2px dashed var(--primary-color);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portal-upload-zone:hover {
    background: #f0fdf4;
    border-color: var(--dark-blue);
}

.portal-upload-zone i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.portal-upload-zone p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    font-weight: 600;
}

/* ========================================
   FEATURES GRID
======================================== */
.features-grid__area {
    background: #ededed;
    padding-bottom: 370px;
}

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

.feature-card {
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-gray);
}

/* ========================================
   EMAIL PROTECTION STYLES
======================================== */
.email-protected {
    transition: opacity 0.3s ease;
}

.email-protected:not(.active) {
    opacity: 0.7;
}

.email-protected.active {
    opacity: 1;
}

/* Honeypot - hidden from users, visible to bots */
.email-honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ========================================
   CTA PHONE AREA
======================================== */
.cta-phone__area {
    position: relative;
    z-index: 10;
    padding: 0;
    margin: -200px 0;
}

.cta-phone__inner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-blue) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 70%;
    margin: 0 auto;
    padding: 45px 40px;
    border-radius: 25px;
    box-shadow: 13px 15px 7px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    text-align: center;
    color: white;
}

.cta-phone__title {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-phone__text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: -10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone__number {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: white;
    padding: 0;
    border-radius: 0;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-phone__number:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.cta-phone__number i {
    font-size: 60px;
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials__area {
    background: white;
    padding-top: 370px;
}

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

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    border-top: 2px solid var(--light-bg);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    font-size: 18px;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-gray);
}

/* ========================================
   FAQ AREA
======================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h4 {
    font-size: 18px;
    color: var(--dark-blue);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 10px 25px 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

/* ========================================
   LEGAL INFO AREA
======================================== */
.legal-info-box {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px 0 0 25px;
}

.legal-info-content {
    padding: 60px 50px;
}

.legal-info-content .sec-title {
    margin-bottom: 20px;
}

.legal-info-content>p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: var(--text-gray);
}

.legal-points {
    margin-bottom: 30px;
}

.legal-point {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.legal-point i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.legal-point h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.legal-point p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

.mt-4 {
    margin-top: 2rem;
}

/* ========================================
   RESPONSIVE FOR NEW SECTIONS
======================================== */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .legal-info-image {
        margin-bottom: 30px;
    }

    .legal-info-content {
        padding: 40px 30px;
    }

    .features-grid__area {
        padding-bottom: 240px;
    }

    .testimonials__area {
        padding-top: 240px;
    }

    .cta-phone__area {
        margin: -160px 0;
    }

    .cta-phone__inner {
        max-width: 85%;
        padding: 40px 30px;
    }

    .cta-phone__title {
        font-size: 32px;
    }

    .cta-phone__number {
        font-size: 44px;
        letter-spacing: 2px;
    }

    .cta-phone__number i {
        font-size: 44px;
    }

    /* Digital Portal Responsive */
    .digital-portal-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .portal-mockup {
        transform: rotateY(0deg);
    }

    .portal-stat-cards {
        grid-template-columns: 1fr;
    }

    .case-progress {
        min-width: 120px;
    }

    .portal-case-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .case-progress {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .process-item h4 {
        font-size: 18px;
    }

    .legal-info-content {
        padding: 30px 20px;
    }

    .features-grid__area {
        padding-bottom: 200px;
    }

    .testimonials__area {
        padding-top: 200px;
    }

    .cta-phone__area {
        margin: -120px 0;
    }

    .cta-phone__inner {
        max-width: 95%;
        padding: 35px 25px;
    }

    .cta-phone__title {
        font-size: 28px;
    }

    .cta-phone__number {
        font-size: 32px;
        letter-spacing: 1.5px;
    }

    .cta-phone__number i {
        font-size: 32px;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ========================================
   CONTACT PAGE
======================================== */
/* Old contact-hero styles - removed, using new styles in KONTAKT PAGE STYLES section */

.contact-details-section {
    padding: 60px 0;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #25b56f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
}

.contact-card h3 {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

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

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--dark-blue);
}

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

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-consent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 45, 98, 0.95) 0%, rgba(30, 58, 111, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.map-consent-content {
    text-align: center;
    color: white;
    max-width: 500px;
    padding: 40px;
}

.map-consent-content i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
}

.map-consent-content h3 {
    font-size: 28px;
    color: white;
    margin-bottom: 20px;
}

.map-consent-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.map-privacy-note {
    margin-top: 20px;
}

.map-privacy-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Office Hours Section */
.office-hours-section {
    padding: 80px 0;
}

.office-hours-content h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.info-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.info-box h4 {
    color: var(--dark-blue);
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box h4 i {
    color: var(--primary-color);
    font-size: 20px;
}

.info-box p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0;
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

.office-hours-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hours-card > i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
}

.hours-card h3 {
    font-size: 28px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.hours-card > p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.contact-methods .method {
    text-align: center;
}

.contact-methods .method i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.contact-methods .method span {
    font-size: 14px;
    color: var(--text-gray);
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 40px;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

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

    .map-wrapper {
        height: 300px;
        border-radius: 8px;
    }

    .map-consent-content {
        padding: 30px 20px;
    }

    .map-consent-content h3 {
        font-size: 24px;
    }

    .map-consent-content i {
        font-size: 48px;
    }

    .contact-methods {
        flex-direction: column;
        gap: 20px;
    }

    .hours-card {
        padding: 40px 30px;
    }

    .info-box {
        padding: 20px;
    }
}

/* ========================================
   KONTAKT PAGE STYLES
======================================== */
.contact__area {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding-top: 120px;
    padding-bottom: 100px;
}

.contact-hero {
    margin-bottom: 60px;
    background: transparent;
    padding: 0;
}

.contact-hero .sec-subtitle {
    color: #1a2d62;
    font-weight: 600;
}

.contact-hero .sec-subtitle span {
    color: #2eca7f;
}

.contact-hero .sec-title {
    color: #1a2d62;
}

.contact-hero .form-intro-text {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2eca7f 0%, #1a2d62 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(46, 202, 127, 0.15);
}

.contact-card-highlight {
    background: linear-gradient(135deg, #2eca7f 0%, #26b570 100%);
    color: white;
}

.contact-card-highlight .contact-info-title,
.contact-card-highlight .contact-info-text {
    color: white;
}

.contact-card-highlight .contact-info-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2eca7f 0%, #26b570 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-icon i {
    font-size: 32px;
    color: white;
}

.contact-info-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a2d62;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.contact-info-text {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 12px;
}

.contact-info-text strong {
    color: #1a2d62;
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-info-text a {
    color: #2eca7f;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-info-text a:hover {
    color: #1a2d62;
    padding-left: 5px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2eca7f;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-link:hover {
    gap: 12px;
    color: #1a2d62;
}

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

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: white;
    font-size: 15px;
}

.contact-feature i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-feature span {
    line-height: 1.4;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.map-header {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.map-header-content {
    max-width: 600px;
}

.map-header-content .sec-subtitle {
    margin-bottom: 15px;
}

.map-header-content .sec-title {
    margin-bottom: 20px;
}

.map-header-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.map-address-card {
    background: linear-gradient(135deg, #2eca7f 0%, #26b570 100%);
    padding: 35px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(46, 202, 127, 0.3);
    display: flex;
    gap: 20px;
}

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

.address-icon i {
    font-size: 28px;
    color: white;
}

.address-details h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.address-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.address-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.address-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
    color: white;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fa 100%);
}

.map-placeholder-content {
    padding: 80px 40px;
    text-align: center;
}

.map-placeholder-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2eca7f 0%, #26b570 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.map-placeholder-icon i {
    font-size: 45px;
    color: white;
}

.map-placeholder-content h3 {
    color: #1a2d62;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
}

.map-placeholder-content p {
    color: #666;
    margin-bottom: 35px;
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-load-map {
    margin-bottom: 30px;
}

.map-privacy-notice {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 20px 25px;
    border-radius: 15px;
    margin-top: 30px;
    font-size: 13px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 1.6;
    color: #666;
}

.map-privacy-notice i {
    color: #2eca7f;
    margin-right: 8px;
    font-size: 16px;
}

.map-privacy-notice strong {
    color: #1a2d62;
}

.map-privacy-notice a {
    color: #2eca7f;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-privacy-notice a:hover {
    color: #1a2d62;
    text-decoration: underline;
}

.map-frame {
    display: none;
    width: 100%;
    height: 600px;
    border: 0;
}

.map-frame.loaded {
    display: block;
}

/* Contact Form Section */
.contact-form-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46, 202, 127, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Form Info Side */
.form-info-side {
    background: linear-gradient(135deg, #1a2d62 0%, #2eca7f 100%);
    padding: 60px 50px;
    border-radius: 25px;
    color: white;
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 60px rgba(26, 45, 98, 0.3);
}

.form-info-content .sec-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.form-info-content .sec-subtitle span {
    color: white;
}

.form-info-content .sec-title {
    color: white;
    margin-bottom: 20px;
}

.form-side-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.form-features {
    margin-bottom: 40px;
}

.form-feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

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

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-text h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.form-contact-options {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.form-contact-options h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-contact-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    color: white;
}

.quick-contact-btn i {
    font-size: 18px;
}

/* Form Container */
.contact-form-centered {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro-text {
    color: #666;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Form Success Message */
.form-success-message {
    text-align: center;
    padding: 60px 40px;
    animation: fadeInUp 0.6s ease;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #2eca7f 0%, #26b570 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 50px;
    color: white;
}

.form-success-message h3 {
    font-size: 28px;
    color: #1a2d62;
    margin-bottom: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-success-message p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact__area {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .contact-hero h3 {
        font-size: 32px;
    }

    /* Form Section */
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-info-side {
        position: relative;
        top: 0;
        padding: 50px 40px;
    }

    .contact-form-container {
        padding: 40px;
    }

    .form-success-message {
        padding: 40px 30px;
    }

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

    .map-header {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .map-address-card {
        padding: 30px;
    }

    .map-frame {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .contact__area {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .contact-hero h3 {
        font-size: 28px;
    }

    .contact-info-card {
        padding: 35px 25px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
    }

    .contact-info-icon i {
        font-size: 28px;
    }

    .contact-info-title {
        font-size: 20px;
    }

    /* Form Section Mobile */
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        gap: 30px;
    }

    .form-info-side {
        padding: 35px 25px;
    }

    .form-feature-item {
        padding: 15px;
        margin-bottom: 15px;
    }

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

    .feature-icon i {
        font-size: 20px;
    }

    .feature-text h4 {
        font-size: 15px;
    }

    .feature-text p {
        font-size: 13px;
    }

    .quick-contact-btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .form-intro-text {
        font-size: 15px;
    }

    .form-success-message {
        padding: 30px 20px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon i {
        font-size: 40px;
    }

    .form-success-message h3 {
        font-size: 24px;
    }

    .form-success-message p {
        font-size: 15px;
    }

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

    .map-header {
        gap: 20px;
        margin-bottom: 30px;
    }

    .map-header-content .sec-title {
        font-size: 28px;
    }

    .map-header-text {
        font-size: 15px;
    }

    .map-address-card {
        padding: 25px;
        flex-direction: column;
    }

    .address-icon {
        width: 50px;
        height: 50px;
    }

    .address-icon i {
        font-size: 24px;
    }

    .address-details h4 {
        font-size: 18px;
    }

    .map-placeholder-content {
        padding: 50px 20px;
    }

    .map-placeholder-icon {
        width: 80px;
        height: 80px;
    }

    .map-placeholder-icon i {
        font-size: 36px;
    }

    .map-placeholder-content h3 {
        font-size: 24px;
    }

    .map-frame {
        height: 350px;
    }
}