/* =========================================
   GLOBAL
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    overflow-x: hidden;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    line-height: 1.6;

    background:
        linear-gradient(
            180deg,
            #fbfdfc 0%,
            #f7fbfa 45%,
            #fbfdfc 100%
        );
}

body.menu-open {
    overflow: hidden;
}

a,
button,
input,
textarea,
summary {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(0, 128, 128, 0.25);
    outline-offset: 3px;
}


/* =========================================
   SCROLL REVEAL
   ========================================= */

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.reveal.reveal-ready {
    opacity: 0;
    transform: translateY(24px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.reveal-ready.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   NAVIGATION
   ========================================= */

#navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 50px;

    background-color: transparent;

    z-index: 1000;

    transform: translateY(0);

    transition:
        transform 0.38s ease,
        padding 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}

#navbar.navbar-scrolled {
    padding-top: 13px;
    padding-bottom: 13px;

    background:
        linear-gradient(
            90deg,
            rgba(35, 56, 69, 0.96),
            rgba(27, 67, 70, 0.95)
        );

    box-shadow:
        0 10px 35px rgba(18, 43, 49, 0.16);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


/* NAVBAR SE SAKRIVA PRI SCROLLU PREMA DOLJE */

#navbar.navbar-hidden {
    transform: translateY(-110%);
}


/* LOGO */

.logo {
    position: relative;

    display: inline-block;

    color: #ffffff;

    text-decoration: none !important;

    font-size: 1.5rem;
    font-weight: 750;

    letter-spacing: -0.3px;

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.45);

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.logo::before,
.logo::after {
    display: none !important;
    content: none !important;
}

.logo:hover,
.logo:focus,
.logo:active,
.logo:visited {
    color: #ffffff;

    text-decoration: none !important;
}

.logo:hover {
    transform: translateY(-1px);
}


/* NAV LINKS */

.nav-links {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 24px;
}

.nav-links a {
    position: relative;

    color: #ffffff;

    text-decoration: none;

    font-size: 0.94rem;
    font-weight: 600;

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.5);

    transition:
        color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #55cfc4,
            #8ce4db
        );

    transition:
        width 0.3s ease;
}

.nav-links a:hover {
    color: #9be9e2;
}

.nav-links a:hover::after {
    width: 100%;
}


/* BURGER */

.burger {
    display: none;

    width: 44px;
    height: 44px;

    border: none;

    background: transparent;

    cursor: pointer;
}

.burger span {
    width: 26px;
    height: 2px;

    display: block;

    margin: 6px auto;

    border-radius: 10px;

    background-color: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.burger.active .line1 {
    transform:
        translateY(8px)
        rotate(45deg);
}

.burger.active .line2 {
    opacity: 0;
}

.burger.active .line3 {
    transform:
        translateY(-8px)
        rotate(-45deg);
}


/* =========================================
   HERO
   ========================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    overflow: hidden;

    text-align: center;

    color: #ffffff;

    background-image: url('images/team.jpg');
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;

    width: 100%;
    height: 100%;
    max-width: 1400px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 120px 40px 40px;
}

.hero-content h1 {
    max-width: 980px;

    margin-bottom: 10px;

    font-size: 3rem;

    letter-spacing: -0.7px;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.7);
}


/* HERO BUTTONS */

.hero-buttons {
    position: absolute;

    right: 40px;
    bottom: 40px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 14px;
}

.hero-btn {
    min-width: 240px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    padding: 14px 22px;

    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 128, 128, 0.92),
            rgba(14, 147, 141, 0.88)
        );

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;
    font-size: 1rem;

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.22);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.26);
}

.hero-btn::after {
    content: "→";
}

.hero-buttons .hero-btn:first-child::before {
    content: "✉";
}

.hero-buttons .hero-btn:last-child::before {
    content: "📍";
}

.hero-btn-outline {
    background:
        rgba(255, 255, 255, 0.14);
}

.hero-btn-outline:hover {
    background:
        rgba(255, 255, 255, 0.22);
}


/* =========================================
   GENERAL SECTIONS
   ========================================= */

.section {
    position: relative;

    padding: 95px 20px;

    scroll-margin-top: 75px;
}

.section > .container {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1000px;

    margin: 0 auto;

    text-align: center;
}

.section h2 {
    margin-bottom: 20px;

    color: #293f4c;

    font-size: 2.25rem;

    line-height: 1.2;

    letter-spacing: -0.6px;
}

.section p {
    max-width: 800px;

    margin: 0 auto;

    color: #566361;

    font-size: 1.05rem;
}

.bg-light {
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(0, 128, 128, 0.055),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(78, 174, 162, 0.05),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #f3faf8,
            #f8fbfa
        );
}


/* =========================================
   ÜBER UNS
   ========================================= */

#ueber-uns {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(0, 128, 128, 0.06),
            transparent 23%
        ),
        radial-gradient(
            circle at 7% 72%,
            rgba(76, 170, 159, 0.05),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfdfc 100%
        );
}

#ueber-uns::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    top: 120px;
    right: -270px;

    border: 70px solid rgba(0, 128, 128, 0.025);

    border-radius: 50%;
}

#ueber-uns::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    left: -80px;
    bottom: 150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 128, 128, 0.035),
            transparent 68%
        );
}

.about-eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: #008080;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.about-story {
    max-width: 820px;

    margin: 35px auto 0;

    text-align: left;
}

.about-story p {
    max-width: none;

    margin: 0 0 20px;

    color: #586462;

    font-size: 1.04rem;

    line-height: 1.8;
}

.about-story p:last-child {
    margin-bottom: 0;
}

.about-story strong {
    color: #293f4c;

    font-weight: 700;
}

.about-highlight-text {
    max-width: 820px !important;

    margin: 52px auto 0 !important;

    color: #293f4c !important;

    text-align: center;

    font-size: 1.22rem !important;
    font-weight: 800 !important;

    line-height: 1.65;
}

.about-highlight-text::after {
    content: "";

    display: block;

    width: 55px;
    height: 3px;

    margin: 22px auto 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #008080,
            #68c5ba
        );
}

.about-quote {
    position: relative;

    max-width: 850px;

    margin: 55px auto 0;

    padding: 45px 90px 35px;

    text-align: center;
}

.about-quote-open {
    position: absolute;

    top: -20px;
    left: 10px;

    color: rgba(0, 128, 128, 0.18);

    font-family: Georgia, 'Times New Roman', serif;

    font-size: 11rem;
    font-weight: 700;

    line-height: 1;

    user-select: none;

    z-index: 1;
}

.about-quote-close {
    position: absolute;

    right: 10px;
    bottom: -45px;

    color: rgba(0, 128, 128, 0.18);

    font-family: Georgia, 'Times New Roman', serif;

    font-size: 11rem;
    font-weight: 700;

    line-height: 1;

    user-select: none;

    z-index: 1;
}

.about-quote blockquote {
    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: 0 auto;

    color: #354846;

    font-family: Georgia, 'Times New Roman', serif;

    font-size: 2rem;
    font-style: italic;

    line-height: 1.55;
}

.about-quote-author {
    position: relative;

    z-index: 2;

    display: block;

    margin-top: 24px;

    color: #008080;

    font-size: 0.82rem;
    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


/* =========================================
   PRAXIS GALLERY
   ========================================= */

.praxis-gallery {
    width: 100%;
    max-width: 900px;

    margin: 70px auto 0;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.praxis-image-wrapper {
    position: relative;

    width: 100%;
    height: 300px;

    overflow: hidden;

    border:
        1px solid rgba(0, 128, 128, 0.09);

    border-radius: 18px;

    background-color: #eeeeee;

    box-shadow:
        0 14px 35px rgba(30, 68, 65, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.praxis-image-wrapper:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 42px rgba(30, 68, 65, 0.12);
}

.praxis-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.45s ease;
}

.praxis-image-wrapper:hover .praxis-image {
    transform:
        scale(1.035);
}


/* =========================================
   LEISTUNGEN
   ========================================= */

#leistungen {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(0, 128, 128, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 93% 70%,
            rgba(99, 189, 178, 0.055),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #eef8f5,
            #f6fbfa
        );
}

#leistungen::after {
    content: "";

    position: absolute;

    width: 390px;
    height: 390px;

    right: -250px;
    bottom: -180px;

    border:
        65px solid rgba(0, 128, 128, 0.028);

    border-radius: 50%;
}

.services-intro {
    margin-top: -5px !important;

    color: #74807e !important;

    font-size: 0.98rem !important;
}

.services-accordion {
    width: 100%;
    max-width: 900px;

    margin: 42px auto 0;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}

.service-accordion-item {
    align-self: start;

    overflow: hidden;

    border:
        1px solid rgba(0, 128, 128, 0.11);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.9);

    box-shadow:
        0 8px 25px rgba(27, 68, 65, 0.055);

    transition:
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.service-accordion-item:hover {
    border-color:
        rgba(0, 128, 128, 0.25);

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 32px rgba(27, 68, 65, 0.09);
}

.service-accordion-header {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    padding: 15px 17px;

    border: none;

    background: transparent;

    cursor: pointer;

    color: #293f4c;

    font-family: inherit;

    text-align: left;
}

.service-title-wrap {
    display: flex;
    align-items: center;

    gap: 13px;
}

.service-small-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    overflow: hidden;

    border:
        1.5px solid rgba(0, 128, 128, 0.35);

    border-radius: 50%;

    background-color: #ffffff;
}

.service-small-icon img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.service-name {
    font-weight: 700;
}

.service-plus {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf7f5;

    color: #008080;

    font-size: 1.35rem;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.service-accordion-item.active .service-plus {
    transform: rotate(45deg);

    background-color: #008080;

    color: #ffffff;
}

.service-accordion-content {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    padding: 0 18px;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease,
        padding 0.3s ease;
}

.service-accordion-item.active .service-accordion-content {
    max-height: 250px;

    opacity: 1;

    padding:
        0 18px 18px;
}

.service-accordion-content p {
    max-width: none !important;

    margin: 0 !important;

    padding-top: 14px;

    border-top:
        1px solid #e5eeec;

    text-align: left;

    font-size: 0.91rem !important;
}


/* =========================================
   AKUTE BESCHWERDEN
   ========================================= */

.acute-section {
    position: relative;

    overflow: hidden;

    padding: 85px 20px;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(0, 128, 128, 0.055),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffffff,
            #f3faf8
        );
}

.acute-section::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -150px;
    top: -110px;

    border:
        45px solid rgba(0, 128, 128, 0.025);

    border-radius: 50%;
}

.acute-container {
    position: relative;

    z-index: 2;

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 32px;

    padding: 40px 42px;

    overflow: hidden;

    border:
        1px solid rgba(0, 128, 128, 0.15);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(248, 252, 251, 0.94)
        );

    box-shadow:
        0 25px 60px rgba(30, 70, 66, 0.10);
}

.acute-container::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            #008080,
            #66c4b9
        );
}

.acute-icon {
    width: 78px;
    height: 78px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #008080,
            #13a199
        );

    color: #ffffff;

    font-size: 3rem;
    font-weight: 300;

    line-height: 1;

    box-shadow:
        0 12px 28px rgba(0, 128, 128, 0.22);
}

.acute-content {
    text-align: left;
}

.acute-eyebrow {
    display: inline-block;

    margin-bottom: 7px;

    color: #008080;

    font-size: 0.74rem;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.acute-content h2 {
    margin-bottom: 14px;

    color: #293f4c;

    font-size: 1.85rem;

    line-height: 1.25;
}

.acute-content p {
    max-width: 650px;

    margin: 0;

    color: #5d6967;

    font-size: 0.98rem;

    line-height: 1.7;
}

.acute-content p strong {
    color: #293f4c;
}

.acute-content .acute-small {
    margin-top: 9px;

    color: #7a8684;

    font-size: 0.86rem;
}

.acute-content .acute-callback-note {
    max-width: 620px;

    margin-top: 15px;

    padding: 12px 15px;

    border-left:
        3px solid #008080;

    border-radius:
        0 8px 8px 0;

    background:
        linear-gradient(
            90deg,
            #edf7f5,
            #f5faf9
        );

    color: #5b6966;

    font-size: 0.84rem;

    line-height: 1.6;
}

.acute-action {
    min-width: 230px;

    display: flex;
    flex-direction: column;

    gap: 9px;
}

.acute-action > span {
    color: #7c8987;

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}

.acute-phone-button {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 14px 18px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #008080,
            #0e9892
        );

    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 12px 28px rgba(0, 128, 128, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.acute-phone-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 17px 34px rgba(0, 128, 128, 0.25);
}

.acute-phone-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.13);

    font-size: 1.2rem;
}

.acute-phone-button small {
    display: block;

    margin-bottom: 1px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 0.7rem;

    text-transform: uppercase;
}

.acute-phone-button strong {
    display: block;

    color: #ffffff;

    font-size: 1rem;
}

.acute-action-note {
    color: #77827f;

    font-size: 0.74rem;

    line-height: 1.4;
}

.acute-emergency-note {
    position: relative;

    z-index: 2;

    max-width: 1000px;

    margin: 18px auto 0;

    color: #7d8584;

    text-align: center;

    font-size: 0.76rem;

    line-height: 1.5;
}

.acute-emergency-note strong {
    color: #66706f;
}


/* =========================================
   PANORAMA
   ========================================= */

.pano-banner {
    height: 93vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    background:
        url('images/Schlierseepano.jpg')
        center 40% / cover no-repeat;

    text-align: center;
}

.pano-content h2 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 3rem;

    letter-spacing: -0.7px;

    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.8);
}


/* =========================================
   GENERAL BUTTON
   ========================================= */

.btn {
    display: inline-block;

    padding: 12px 30px;

    border: none;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #008080,
            #119991
        );

    color: #ffffff;

    text-decoration: none;

    font-weight: 650;
    font-size: 1rem;

    font-family: inherit;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(0, 128, 128, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 14px 28px rgba(0, 128, 128, 0.19);
}


/* =========================================
   TEAM
   ========================================= */

#team {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(0, 128, 128, 0.05),
            transparent 24%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(99, 189, 178, 0.045),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #f8fbfa
        );
}

#team::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -210px;
    top: 100px;

    border:
        55px solid rgba(0, 128, 128, 0.025);

    border-radius: 50%;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 30px;

    margin-top: 45px;
}

.team-member {
    flex:
        0 1 calc(33.333% - 20px);

    max-width: 250px;

    padding: 22px 18px 24px;

    border:
        1px solid rgba(0, 128, 128, 0.09);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(248, 252, 251, 0.96)
        );

    text-align: center;

    box-shadow:
        0 12px 30px rgba(28, 68, 66, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.team-member:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(0, 128, 128, 0.20);

    box-shadow:
        0 18px 38px rgba(28, 68, 66, 0.10);
}

.team-photo-container {
    width: 100%;
    height: 260px;

    margin: 0 auto 17px;

    overflow: hidden;

    border:
        1px solid rgba(0, 128, 128, 0.25);

    border-radius: 14px;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.08);
}

.team-photo {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;

    display: block;
}

.team-member h3 {
    margin-bottom: 5px;

    color: #293f4c;

    font-size: 1.1rem;
}

.team-member p {
    color: #6d7775;

    font-size: 0.9rem;
}


/* FUNKCIJA U PRAXISU */

.team-position {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 8px;

    padding: 5px 10px;

    border:
        1px solid rgba(0, 128, 128, 0.16);

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #edf8f5,
            #f6fbfa
        );

    color: #008080;

    font-size: 0.72rem;
    font-weight: 750;

    letter-spacing: 0.35px;
}


/* =========================================
   KARRIERE
   ========================================= */

.career-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(0, 128, 128, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 75%,
            rgba(85, 178, 168, 0.07),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #eef8f5,
            #f8fbfa
        );
}

.career-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: 120px;
    right: -230px;

    border:
        70px solid rgba(0, 128, 128, 0.035);

    border-radius: 50%;
}

.career-section::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: 150px;
    left: -120px;

    border:
        35px solid rgba(0, 128, 128, 0.025);

    border-radius: 50%;
}

.career-container {
    position: relative;

    z-index: 2;

    max-width: 1100px;

    margin: 0 auto;
}

.career-heading {
    max-width: 750px;

    margin: 0 auto 45px;

    text-align: center;
}

.career-eyebrow {
    display: inline-block;

    margin-bottom: 9px;

    color: #008080;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.career-heading h2 {
    margin-bottom: 14px;

    color: #293f4c;

    font-size: 2.6rem;

    line-height: 1.15;

    letter-spacing: -0.7px;
}

.career-heading p {
    max-width: 620px;

    color: #687573;
}


/* CAREER HERO CARD */

.career-hero-card {
    min-height: 520px;

    display: grid;

    grid-template-columns:
        1.08fr 0.92fr;

    overflow: hidden;

    border:
        1px solid rgba(0, 128, 128, 0.12);

    border-radius: 28px;

    background-color: #ffffff;

    box-shadow:
        0 30px 75px rgba(30, 65, 65, 0.13);
}

.career-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;
}

.career-status {
    align-self: flex-start;

    margin-bottom: 20px;

    padding: 8px 13px;

    border:
        1px solid rgba(0, 128, 128, 0.08);

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #e2f3ef,
            #eff8f6
        );

    color: #008080;

    font-size: 0.76rem;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.career-hero-content h3 {
    margin-bottom: 20px;

    color: #293f4c;

    font-size: 2.5rem;

    line-height: 1.08;
}

.career-hero-content h3 span {
    display: block;

    margin-top: 5px;

    color: #008080;

    font-size: 1.4rem;

    font-weight: 600;
}

.career-hero-text {
    max-width: 520px !important;

    margin:
        0 0 28px !important;

    color: #66716f !important;

    text-align: left;

    line-height: 1.7;
}

.career-badges {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-bottom: 30px;
}

.career-badge {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 13px 15px;

    border:
        1px solid #e3ecea;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #f7fbfa,
            #f2f8f6
        );
}

.career-badge-icon {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #dff1ed;

    color: #008080;

    font-weight: 800;
}

.career-badge small {
    display: block;

    color: #7e8987;

    font-size: 0.69rem;
    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}

.career-badge strong {
    display: block;

    color: #293f4c;

    font-size: 0.92rem;
}

.career-main-button {
    align-self: flex-start;

    min-width: 210px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    padding: 15px 19px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #008080,
            #129991
        );

    color: #ffffff;

    text-decoration: none;

    font-weight: 800;

    box-shadow:
        0 12px 28px rgba(0, 128, 128, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.career-main-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 17px 34px rgba(0, 128, 128, 0.23);
}


/* CAREER IMAGE */

.career-visual {
    position: relative;

    min-height: 520px;

    background:
        url('images/schliersee1.jpg')
        center center / cover no-repeat;
}

.career-visual-overlay {
    position: absolute;

    inset: 0;

    background: transparent;

    pointer-events: none;
}

.career-location-badge {
    position: absolute;

    top: 28px;
    right: 28px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 12px 15px;

    border:
        1px solid rgba(255, 255, 255, 0.45);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.90);

    box-shadow:
        0 12px 34px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.career-location-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #e2f2ee;

    color: #008080;
}

.career-location-badge small {
    display: block;

    color: #7a8583;

    font-size: 0.66rem;
}

.career-location-badge strong {
    display: block;

    color: #293f4c;
}

.career-visual-quote {
    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 32px;

    padding: 16px 18px;

    border:
        1px solid rgba(255, 255, 255, 0.45);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.90);

    color: #293f4c;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 12px 34px rgba(0, 0, 0, 0.12);
}

.career-visual-quote span {
    display: block;

    margin-bottom: 5px;

    color: #008080;

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.career-visual-quote strong {
    display: block;

    max-width: 390px;

    font-size: 1.35rem;

    line-height: 1.25;
}


/* BENEFITS */

.career-benefits-section {
    margin-top: 90px;
}

.career-benefits-title {
    max-width: 760px;

    margin: 0 auto 38px;

    text-align: center;
}

.career-benefits-title > span {
    display: inline-block;

    color: #008080;

    font-size: 0.77rem;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.career-benefits-title h3 {
    margin-top: 8px;

    color: #293f4c;

    font-size: 1.8rem;

    line-height: 1.3;
}

.career-benefits-title p {
    max-width: 640px !important;

    margin-top: 12px !important;

    color: #74807e !important;

    font-size: 0.98rem !important;
}

.career-benefit-cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.career-benefit-card {
    position: relative;

    min-height: 235px;

    padding: 28px 25px;

    overflow: hidden;

    border:
        1px solid rgba(0, 128, 128, 0.14);

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.97),
            rgba(245, 251, 249, 0.94)
        );

    text-align: left;

    box-shadow:
        0 12px 35px rgba(34, 70, 70, 0.065);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.career-benefit-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #008080,
            #63bdb2
        );
}

.career-benefit-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(0, 128, 128, 0.30);

    box-shadow:
        0 20px 42px rgba(34, 70, 70, 0.11);
}

.career-benefit-highlight {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eff9f6
        );

    border-color:
        rgba(0, 128, 128, 0.19);
}

.career-benefit-icon {
    width: 44px;
    height: 44px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #dcefeb,
            #e9f5f2
        );

    color: #008080;

    font-size: 1.05rem;
    font-weight: 800;

    transition:
        transform 0.3s ease;
}

.career-benefit-card:hover
.career-benefit-icon {
    transform:
        translateY(-2px)
        scale(1.03);
}

.career-benefit-card h4 {
    margin-bottom: 9px;

    color: #293f4c;

    font-size: 1.04rem;

    line-height: 1.35;
}

.career-benefit-card p {
    max-width: none !important;

    margin: 0 !important;

    color: #6b7775 !important;

    text-align: left;

    font-size: 0.89rem !important;

    line-height: 1.58;
}


/* =========================================
   FINAL KARRIERE CTA
   ========================================= */

.career-final-cta {
    position: relative;

    margin-top: 75px;

    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    align-items: center;

    gap: 45px;

    padding: 45px 50px;

    overflow: hidden;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(110, 220, 205, 0.09),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #293d4b,
            #1d494b
        );

    color: #ffffff;

    box-shadow:
        0 25px 60px rgba(24, 55, 60, 0.17);
}

.career-final-cta::after {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    right: -70px;
    bottom: -110px;

    border:
        35px solid rgba(255, 255, 255, 0.04);

    border-radius: 50%;
}

.career-final-text {
    position: relative;

    z-index: 1;
}

.career-final-text > span {
    display: inline-block;

    margin-bottom: 7px;

    color: #8ed8d1;

    font-size: 0.75rem;
    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.career-final-text h3 {
    max-width: 600px;

    margin-bottom: 12px;

    color: #ffffff;

    font-size: 1.7rem;

    line-height: 1.3;
}

.career-final-text p {
    max-width: 600px !important;

    margin: 0 !important;

    color:
        rgba(255, 255, 255, 0.74) !important;

    text-align: left;

    font-size: 0.94rem !important;
}

.career-final-actions {
    position: relative;

    z-index: 1;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.career-final-contact {
    padding: 13px 16px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.07);

    text-decoration: none;
}

.career-final-contact small {
    display: block;

    color: #8ed8d1;

    font-size: 0.68rem;

    text-transform: uppercase;
}

.career-final-contact strong {
    color: #ffffff;
}

.career-callback-note {
    max-width: none !important;

    margin:
        -2px 2px 3px !important;

    color:
        rgba(255, 255, 255, 0.62) !important;

    text-align: left !important;

    font-size: 0.74rem !important;

    line-height: 1.45;
}

.career-final-button {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 17px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #008080,
            #109b93
        );

    color: #ffffff;

    text-decoration: none;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.career-final-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.13);
}


/* =========================================
   ANFAHRT
   ========================================= */

#anfahrt {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(0, 128, 128, 0.045),
            transparent 25%
        ),
        radial-gradient(
            circle at 15% 90%,
            rgba(78, 174, 162, 0.04),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff,
            #fafdfc
        );
}

.arrival-intro {
    margin-bottom: 35px !important;
}

.arrival-accordion {
    max-width: 800px;

    margin: 35px auto 45px;

    display: flex;
    flex-direction: column;

    gap: 14px;
}

.arrival-details {
    overflow: hidden;

    border:
        1px solid rgba(0, 128, 128, 0.12);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.95);

    box-shadow:
        0 10px 28px rgba(30, 68, 65, 0.06);
}

.arrival-details summary {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 21px 24px;

    list-style: none;

    cursor: pointer;

    color: #293f4c;

    font-weight: 700;
}

.arrival-details summary::-webkit-details-marker {
    display: none;
}

.arrival-details[open] summary {
    background:
        linear-gradient(
            135deg,
            #008080,
            #109991
        );

    color: #ffffff;
}

.arrival-summary-left {
    display: flex;
    align-items: center;

    gap: 13px;
}

.arrival-symbol {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #f1f8f6;
}

.arrival-arrow {
    font-size: 1.6rem;

    transition:
        transform 0.3s ease;
}

.arrival-details[open]
.arrival-arrow {
    transform:
        rotate(45deg);
}

.arrival-details-content {
    padding: 25px 28px 28px;

    background-color: #ffffff;

    text-align: left;
}

.arrival-details-content p {
    max-width: none;

    margin:
        0 0 15px;

    text-align: left;
}

.arrival-details-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   GOOGLE MAP
   ========================================= */

.map-container {
    width: 100%;

    overflow: hidden;

    border:
        1px solid rgba(0, 128, 128, 0.12);

    border-radius: 19px;

    box-shadow:
        0 18px 44px rgba(30, 68, 65, 0.10);
}

.map-container iframe {
    width: 100%;

    display: block;

    min-height: 450px;
}

.maps-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 24px;

    padding: 11px 22px;

    border:
        1px solid rgba(0, 128, 128, 0.22);

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.95);

    color: #008080;

    text-decoration: none;

    font-weight: 700;

    box-shadow:
        0 7px 20px rgba(0, 128, 128, 0.06);

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.maps-button:hover {
    transform:
        translateY(-3px);

    background-color: #008080;

    color: #ffffff;
}


/* =========================================
   FAQ
   ========================================= */

.faq-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(0, 128, 128, 0.09),
            transparent 26%
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(81, 181, 169, 0.065),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #edf8f5,
            #f9fcfb
        );
}

.faq-section .container {
    position: relative;

    z-index: 2;
}

.faq-eyebrow {
    display: inline-block;

    margin-bottom: 8px;

    color: #008080;

    font-size: 0.76rem;
    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.faq-section h2 {
    margin-bottom: 10px;
}

.faq-intro {
    max-width: 620px !important;

    color: #74807e !important;

    font-size: 0.98rem !important;

    line-height: 1.7;
}

.faq-accordion {
    width: 100%;
    max-width: 860px;

    margin: 45px auto 0;

    display: flex;
    flex-direction: column;

    gap: 12px;
}

.faq-item {
    position: relative;

    overflow: hidden;

    border:
        1px solid rgba(0, 128, 128, 0.11);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.93);

    text-align: left;

    box-shadow:
        0 10px 28px rgba(28, 69, 67, 0.055);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.faq-item:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(0, 128, 128, 0.24);

    box-shadow:
        0 15px 34px rgba(28, 69, 67, 0.085);
}

.faq-item[open] {
    border-color:
        rgba(0, 128, 128, 0.28);

    box-shadow:
        0 18px 40px rgba(28, 69, 67, 0.10);
}

.faq-item[open]::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            #008080,
            #65c4b9
        );
}

.faq-item summary {
    min-height: 66px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 25px;

    padding:
        18px 20px 18px 22px;

    list-style: none;

    cursor: pointer;

    color: #293f4c;

    font-size: 1rem;
    font-weight: 700;

    line-height: 1.45;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    flex: 1;
}

.faq-plus {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(0, 128, 128, 0.12);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #edf7f5,
            #e6f3f0
        );

    color: #008080;

    font-size: 1.5rem;

    line-height: 1;

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item[open] .faq-plus {
    transform:
        rotate(45deg);

    background:
        linear-gradient(
            135deg,
            #008080,
            #109991
        );

    color: #ffffff;
}

.faq-answer {
    padding:
        0 70px 23px 22px;
}

.faq-answer::before {
    content: "";

    display: block;

    width: 100%;

    margin-bottom: 17px;

    border-top:
        1px solid #e7eeee;
}

.faq-answer p {
    max-width: none !important;

    margin:
        0 0 13px !important;

    color: #63716e !important;

    text-align: left;

    font-size: 0.94rem !important;

    line-height: 1.75;
}

.faq-answer p:last-child {
    margin-bottom: 0 !important;
}

.faq-answer strong {
    color: #354846;
}

.faq-answer a {
    color: #008080;

    text-decoration: none;

    font-weight: 700;
}

.faq-contact-hint {
    max-width: 860px;

    margin: 30px auto 0;

    display: flex;
    align-items: center;

    gap: 17px;

    padding: 20px 22px;

    border:
        1px solid rgba(0, 128, 128, 0.12);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(231, 246, 242, 0.96),
            rgba(242, 250, 248, 0.95)
        );

    text-align: left;
}

.faq-contact-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #dcefeb;

    color: #008080;

    font-size: 1.15rem;
    font-weight: 800;
}

.faq-contact-hint > div {
    flex: 1;
}

.faq-contact-hint strong {
    display: block;

    margin-bottom: 2px;

    color: #293f4c;

    font-size: 0.96rem;
}

.faq-contact-hint p {
    max-width: none !important;

    margin: 0 !important;

    color: #6e7d79 !important;

    text-align: left;

    font-size: 0.84rem !important;
}

.faq-contact-hint > a {
    min-width: 115px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 10px 14px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #008080,
            #109991
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 0.86rem;
    font-weight: 700;
}


/* =========================================
   KONTAKT
   ========================================= */

#kontakt {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 12%,
            rgba(0, 128, 128, 0.06),
            transparent 27%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(82, 179, 168, 0.055),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #f1f9f6,
            #f8fbfa
        );
}

.contact-intro {
    margin-bottom: 40px !important;
}

.contact-layout {
    display: grid;

    grid-template-columns:
        0.85fr 1.4fr;

    gap: 35px;

    align-items: stretch;

    margin-top: 40px;

    text-align: left;
}

.contact-info {
    position: relative;

    overflow: hidden;

    padding: 40px 35px;

    border-radius: 19px;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(100, 218, 204, 0.10),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #2c3e50,
            #21494c
        );

    color: #ffffff;

    box-shadow:
        0 20px 48px rgba(25, 56, 63, 0.16);
}

.contact-info h3 {
    margin-bottom: 35px;

    color: #ffffff;

    font-size: 1.5rem;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    display: block;

    margin-bottom: 6px;

    color: #8fd8d8;

    font-size: 0.8rem;
    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.contact-info a {
    color: #ffffff;

    text-decoration: none;

    font-size: 1.05rem;
}

.contact-info small {
    display: block;

    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 0.85rem;
}

.opening-hours {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.opening-hours span {
    color:
        rgba(255, 255, 255, 0.78);

    font-size: 0.94rem;
}

.opening-hours strong {
    color: #ffffff;

    font-size: 1.12rem;
}

.contact-info
.contact-callback-note {
    max-width: 260px;

    margin-top: 10px;

    padding-left: 11px;

    border-left:
        2px solid rgba(143, 216, 216, 0.65);

    color:
        rgba(255, 255, 255, 0.64);

    font-size: 0.76rem;

    line-height: 1.5;
}


/* =========================================
   CONTACT FORM
   ========================================= */

.contact-form-wrapper {
    position: relative;

    overflow: hidden;

    padding: 40px;

    border:
        1px solid rgba(0, 128, 128, 0.09);

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 253, 252, 0.96)
        );

    box-shadow:
        0 18px 45px rgba(30, 68, 65, 0.09);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;

    color: #293f4c;

    font-size: 1.5rem;
}

.appointment-warning {
    margin-bottom: 28px;

    padding: 18px 20px;

    border-left:
        4px solid #d6a23b;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            #fff8e8,
            #fffaf0
        );
}

.appointment-warning strong {
    color: #73591e;
}

.appointment-warning p {
    max-width: none;

    margin: 0;

    color: #665a3a;

    text-align: left;

    font-size: 0.9rem;

    line-height: 1.55;
}

.appointment-warning
.appointment-callback {
    margin: 12px 0;

    padding: 10px 12px;

    border-radius: 7px;

    background-color:
        rgba(214, 162, 59, 0.09);
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.contact-form label {
    margin-top: 5px;

    color: #293f4c;

    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 13px 15px;

    border:
        1px solid #d4dfdc;

    border-radius: 10px;

    background:
        #ffffff;

    font: inherit;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-form textarea {
    min-height: 140px;

    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: #008080;

    box-shadow:
        0 0 0 4px rgba(0, 128, 128, 0.07);
}

.contact-form-note {
    max-width: none !important;

    margin:
        5px 0 10px !important;

    color: #777777 !important;

    text-align: left;

    font-size: 0.82rem !important;
}

.contact-form .btn {
    align-self: flex-start;

    margin-top: 5px;
}


/* =========================================
   FOOTER
   ========================================= */

.site-footer {
    position: relative;

    padding:
        70px 20px 24px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(102, 219, 204, 0.09),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #243846,
            #1c4649
        );

    color: #ffffff;
}

.footer-container {
    position: relative;

    z-index: 1;

    max-width: 1100px;

    margin: 0 auto;
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.25fr 1fr 0.8fr;

    gap: 60px;

    padding-bottom: 45px;
}

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    text-align: left;
}

.footer-brand h3 {
    margin-bottom: 13px;

    color: #ffffff;

    font-size: 1.45rem;
}

.footer-brand p {
    max-width: 380px;

    margin:
        0 0 17px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.92rem;

    line-height: 1.7;
}

.footer-since {
    display: inline-block;

    padding: 7px 12px;

    border:
        1px solid rgba(119, 214, 203, 0.25);

    border-radius: 30px;

    background:
        rgba(0, 128, 128, 0.13);

    color: #8ed8d1;

    font-size: 0.75rem;
    font-weight: 700;
}

.footer-heading {
    display: block;

    margin-bottom: 15px;

    color: #8ed8d1;

    font-size: 0.74rem;
    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.footer-column a {
    margin-bottom: 10px;

    color:
        rgba(255, 255, 255, 0.88);

    text-decoration: none;

    font-size: 0.92rem;

    line-height: 1.55;
}

.footer-callback {
    max-width: 280px;

    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.52);

    font-size: 0.75rem;

    line-height: 1.55;
}

.footer-hours {
    display: flex;
    flex-direction: column;

    gap: 3px;

    margin-bottom: 22px;
}

.footer-hours span {
    color:
        rgba(255, 255, 255, 0.68);

    font-size: 0.9rem;
}

.footer-hours strong {
    color: #ffffff;

    font-size: 1.1rem;
}

.footer-column
.footer-contact-button {
    min-width: 190px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin: 0;

    padding: 12px 15px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #008080,
            #109991
        );

    color: #ffffff;

    font-weight: 700;

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.14);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 25px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 0.78rem;
}

.footer-legal {
    display: flex;
    align-items: center;

    gap: 9px;
}

.footer-legal a {
    color:
        rgba(255, 255, 255, 0.58);

    text-decoration: none;

    font-size: 0.78rem;
}


/* =========================================
   MOBILE CALL BUTTON
   ========================================= */

.mobile-call-button {
    display: none;
}


/* =========================================
   TABLET / MOBILE
   ========================================= */

@media screen and (max-width: 900px) {

    #navbar {
        padding:
            15px 20px;
    }

    #navbar.navbar-scrolled {
        padding:
            11px 20px;
    }

    /*
       Ako je mobilni menu otvoren,
       navbar se nikada ne sakriva.
    */

    body.menu-open #navbar {
        transform:
            translateY(0);
    }

    .logo {
        position: relative;

        z-index: 1002;

        font-size: 1.3rem;

        text-decoration: none !important;
    }

    .burger {
        position: relative;

        z-index: 1002;

        display: block;
    }

    .nav-links {
        position: fixed;

        top: 0;
        right: -100%;

        width: min(360px, 88vw);
        height: 100dvh;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 8px;

        padding:
            95px 35px 40px;

        background:
            radial-gradient(
                circle at 90% 15%,
                rgba(90, 216, 201, 0.10),
                transparent 28%
            ),
            linear-gradient(
                145deg,
                rgba(35, 56, 69, 0.99),
                rgba(27, 72, 73, 0.99)
            );

        box-shadow:
            -16px 0 40px rgba(0, 0, 0, 0.18);

        transition:
            right 0.35s ease;

        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;

        display: block;

        padding: 13px 0;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);

        color: #ffffff;

        font-size: 1.08rem;

        text-shadow: none;
    }

    .nav-links a::after {
        display: none;
    }

    body.menu-open::before {
        content: "";

        position: fixed;

        inset: 0;

        background:
            rgba(20, 35, 40, 0.32);

        z-index: 999;
    }

    .hero-content {
        padding:
            110px 20px 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        right: 20px;
        bottom: 25px;

        gap: 10px;
    }

    .hero-btn {
        min-width: 210px;

        padding:
            12px 18px;

        font-size: 0.95rem;
    }

    .about-story {
        max-width: 680px;
    }

    .about-highlight-text {
        max-width: 680px !important;

        font-size: 1.15rem !important;
    }

    .about-quote {
        max-width: 680px;

        padding-left: 75px;
        padding-right: 75px;
    }

    .about-quote blockquote {
        font-size: 1.7rem;
    }

    .praxis-gallery {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .praxis-image-wrapper {
        height: 240px;
    }

    .services-accordion {
        max-width: 650px;

        grid-template-columns: 1fr;
    }

    .acute-container {
        grid-template-columns:
            auto 1fr;
    }

    .acute-action {
        grid-column:
            1 / -1;

        padding-left: 103px;
    }

    .team-member {
        flex:
            0 1 calc(50% - 15px);
    }

    .career-hero-card {
        grid-template-columns: 1fr;
    }

    .career-benefit-cards {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .career-final-cta {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns:
            1fr 1fr;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media screen and (max-width: 480px) {

    body {
        padding-bottom: 78px;
    }

    .section {
        padding:
            72px 16px;
    }

    .section h2 {
        font-size: 1.9rem;
    }

    .hero-buttons {
        left: 50%;
        right: auto;
        bottom: 20px;

        width:
            calc(100% - 30px);

        max-width: 320px;

        transform:
            translateX(-50%);

        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
        min-width: unset;
    }

    .about-story {
        margin-top: 28px;
    }

    .about-story p {
        font-size: 0.98rem;
    }

    .about-highlight-text {
        font-size:
            1.08rem !important;
    }

    .about-quote {
        padding:
            35px 38px 25px;
    }

    .about-quote blockquote {
        font-size: 1.4rem;
    }

    .about-quote-open,
    .about-quote-close {
        font-size: 6.5rem;
    }

    .praxis-gallery {
        grid-template-columns: 1fr;
    }

    .praxis-image-wrapper {
        height: 230px;
    }

    .service-small-icon {
        width: 42px;
        height: 42px;
    }

    .acute-section {
        padding:
            55px 14px;
    }

    .acute-container {
        display: flex;
        flex-direction: column;

        align-items: flex-start;

        padding:
            28px 22px;
    }

    .acute-action {
        width: 100%;
        padding-left: 0;
    }

    .acute-phone-button {
        width: 100%;
    }

    .team-member {
        flex: 0 1 100%;
    }

    .career-heading h2 {
        font-size: 1.85rem;
    }

    .career-hero-card {
        border-radius: 21px;
    }

    .career-hero-content {
        padding:
            32px 22px;
    }

    .career-benefit-cards {
        grid-template-columns: 1fr;
    }

    .career-final-cta {
        padding:
            30px 22px;
    }

    .map-container iframe {
        height: 350px;
        min-height: 350px;
    }

    .faq-answer {
        padding:
            0 17px 19px;
    }

    .faq-contact-hint {
        flex-wrap: wrap;
    }

    .faq-contact-hint > a {
        width: 100%;
    }

    .contact-info,
    .contact-form-wrapper {
        padding:
            27px 21px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }


    /* MOBILE CALL */

    .mobile-call-button {
        position: fixed;

        left: 12px;
        right: 12px;
        bottom: 12px;

        z-index: 1200;

        display: flex;
        align-items: center;

        gap: 12px;

        min-height: 58px;

        padding:
            9px 14px;

        border:
            1px solid rgba(255, 255, 255, 0.18);

        border-radius: 17px;

        background:
            linear-gradient(
                135deg,
                #008080,
                #0d9992
            );

        color: #ffffff;

        text-decoration: none;

        box-shadow:
            0 14px 38px rgba(0, 74, 74, 0.30);
    }

    .mobile-call-icon {
        width: 40px;
        height: 40px;

        flex-shrink: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background:
            rgba(255, 255, 255, 0.14);
    }

    .mobile-call-text {
        flex: 1;

        display: flex;
        flex-direction: column;
    }

    .mobile-call-text small {
        color:
            rgba(255, 255, 255, 0.70);

        font-size: 0.66rem;

        text-transform: uppercase;

        letter-spacing: 0.7px;
    }

    .mobile-call-text strong {
        color: #ffffff;

        font-size: 0.95rem;
    }
}




/* =========================================
   KONTAKTFORMULAR STATUS / FORMSPREE
   ========================================= */

.contact-form-status {
    display: none;

    width: 100%;

    margin-top: 12px;
    padding: 13px 15px;

    border-radius: 10px;

    text-align: left;

    font-size: 0.88rem;
    line-height: 1.55;
}

.contact-form-status.success {
    display: block;

    border:
        1px solid rgba(28, 120, 89, 0.22);

    background:
        linear-gradient(
            135deg,
            #edf8f3,
            #f6fbf8
        );

    color: #296b54;
}

.contact-form-status.error {
    display: block;

    border:
        1px solid rgba(173, 74, 74, 0.20);

    background:
        linear-gradient(
            135deg,
            #fff3f3,
            #fff9f9
        );

    color: #9a4747;
}

.contact-form .btn:disabled {
    cursor: wait;

    opacity: 0.72;

    transform: none;

    box-shadow:
        0 6px 16px rgba(0, 128, 128, 0.08);
}

.contact-form .btn:disabled:hover {
    transform: none;

    box-shadow:
        0 6px 16px rgba(0, 128, 128, 0.08);
}


/* =========================================
   REDUCED MOTION
   ========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        transition-duration:
            0.01ms !important;
    }

    .reveal,
    .reveal.reveal-ready {
        opacity: 1 !important;

        transform: none !important;
    }
}
