/* ==================================================================================
   GERMAN OSTAD - KONTAKT PAGE STYLESHEET
   Color Scheme: Orange/Coral (#FF7551) & Dark Navy Blue (#1A1F3A)
   ================================================================================== */

/* ============================= RESET & BASE STYLES ============================= */
/* ===========================================================================
   BASE RESET & VARIABLES
   =========================================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors from Logo - Optimized */
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --primary-light: #ffa589;
    --primary-dark: #e66545;

    --navy-dark: #1a1f3a;
    --navy-medium: #2c3558;
    --navy-light: #1e2847;

    /* Supporting Colors */
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: #64748b;
    --border-color: rgba(255, 117, 81, 0.2);

    /* Shadows - Optimized */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.3);
    --shadow-orange: 0 10px 30px rgba(255, 117, 81, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Header Specific */
    --header-height: 90px;
    --mobile-header-height: 70px;
}

/* ===========================================================================
   HTML & BODY
   =========================================================================== */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    padding-top: var(--header-height);
}

/* ===========================================================================
   UTILITY & BASE STYLES
   =========================================================================== */

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===========================================================================
   HEADER SECTION - OPTIMIZED
   =========================================================================== */

.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 2px solid var(--primary-orange);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: var(--header-height);
    overflow: visible;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

/* ============================
   LOGO SECTION
   ============================ */

.logo-section {
    flex: 0 0 auto;
    min-width: 120px;
    max-width: 180px;
}

.logo {
    display: block;
    height: 100%;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* ============================
   MAIN NAVIGATION
   ============================ */

.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: visible;
}

.nav-links {
    display: flex;
    gap: 0.3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.nav-item {
    position: relative;
    flex: 0 0 auto;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 1.3rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
    background: rgba(255, 117, 81, 0.08);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 2.6rem);
}

/* ============================
   DROPDOWN MENU
   ============================ */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 280px;
    background: var(--white);
    border-radius: 16px;
    padding: 12px 0;
    box-shadow: 0 20px 60px rgba(255, 117, 81, 0.25);
    border: 2px solid rgba(255, 117, 81, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1001;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--white);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.dropdown-menu li a i {
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 117, 81, 0.1);
    border-radius: 10px;
    color: var(--primary-orange);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: linear-gradient(
        90deg,
        rgba(255, 117, 81, 0.1) 0%,
        transparent 100%
    );
    padding-left: 32px;
    color: var(--primary-orange);
}

.dropdown-menu li a:hover i {
    background: rgba(255, 117, 81, 0.2);
    transform: scale(1.1);
}

/* ============================
   SIGN IN BUTTON
   ============================ */

.btn-signin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: var(--white);
    padding: 12px 28px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-orange);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-signin:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 117, 81, 0.5);
}

/* ============================
   HAMBURGER BUTTON
   ============================ */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

/* ============================
   MOBILE MENU
   ============================ */

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--white);
    transform: translateX(100%);
    transition: transform var(--transition-medium);
    overflow-y: auto;
    z-index: 999;
    padding: 20px;
    border-top: 2px solid var(--primary-orange);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav > ul > li {
    border-bottom: 1px solid #eee;
}

.mobile-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.mobile-nav > ul > li > a:hover {
    background: rgba(255, 117, 81, 0.1);
    color: var(--primary-orange);
    padding-left: 20px;
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-arrow {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 117, 81, 0.05);
    border-radius: 8px;
    margin-top: 4px;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 20px !important;
    margin: 0 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.mobile-submenu li a:hover {
    background: rgba(255, 117, 81, 0.15);
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* Mobile Socials */
.mobile-socials {
    display: flex;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
    margin-top: 20px;
}

.mobile-socials a {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.mobile-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 117, 81, 0.3);
}

/* ===========================================================================
   RESPONSIVE BREAKPOINTS - OPTIMIZED
   =========================================================================== */

/* Large Desktop */
@media (max-width: 1600px) {
    .header-container {
        max-width: 1200px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .dropdown-menu {
        min-width: 260px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --header-height: 80px;
    }

    .header-container {
        padding: 0 1.5rem;
        gap: 1rem;
    }

    .main-nav {
        display: none;
    }

    .btn-signin {
        margin-left: auto;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 50px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: var(--mobile-header-height);
    }

    body {
        padding-top: var(--mobile-header-height);
    }

    .header-container {
        padding: 0 1rem;
    }

    .logo-section {
        min-width: 100px;
    }

    .logo-img {
        height: 40px;
    }

    .btn-signin span {
        display: none;
    }

    .btn-signin i {
        margin-right: 0;
        font-size: 1.1rem;
    }

    .btn-signin {
        padding: 8px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-left: 0;
    }

    .mobile-menu {
        top: var(--mobile-header-height);
        height: calc(100vh - var(--mobile-header-height));
        padding: 15px;
    }

    .mobile-nav > ul > li > a {
        padding: 12px 14px;
        font-size: 1rem;
    }

    .mobile-submenu li a {
        padding: 10px 16px !important;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-container {
        padding: 0 0.8rem;
    }

    .logo-section {
        min-width: 90px;
    }

    .logo-img {
        height: 35px;
    }

    .hamburger {
        width: 36px;
        height: 36px;
    }

    .hamburger span {
        width: 22px;
    }

    .mobile-menu {
        padding: 12px;
    }

    .mobile-nav > ul > li > a {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .mobile-submenu li a {
        padding: 8px 14px !important;
        font-size: 0.85rem;
    }

    .mobile-socials {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===========================================================================
   UTILITY CLASSES
   =========================================================================== */

/* Prevent horizontal scroll */
.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==================================================================================
   GERMAN OSTAD - HERO SECTION STYLESHEET
   Color Scheme: Orange/Coral (#FF7551) & Dark Navy Blue (#1A1F3A)
   ================================================================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo Colors */
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --primary-light: #ffa589;
    --primary-dark: #e66545;

    --navy-dark: #1a1f3a;
    --navy-medium: #2c3558;
    --navy-light: #1e2847;

    /* Supporting Colors */
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
}

body {
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    overflow-x: hidden;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 75vh;
    background: linear-gradient(
        135deg,
        var(--navy-dark) 0%,
        var(--navy-medium) 50%,
        var(--navy-light) 100%
    );
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
}

/* ===== ANIMATED BACKGROUND CIRCLES ===== */
.bg-circle-1,
.bg-circle-2,
.bg-circle-3 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 117, 81, 0.12), transparent);
    top: -150px;
    left: -150px;
    animation: float 12s ease-in-out infinite;
}

.bg-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 143, 105, 0.1), transparent);
    bottom: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.bg-circle-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 165, 137, 0.08), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 10s ease-in-out infinite;
}

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

@keyframes pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* ===== HERO CONTENT CONTAINER ===== */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* ===== LEFT SIDE - TEXT CONTENT ===== */
.hero-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 117, 81, 0.1);
    border: 1px solid rgba(255, 117, 81, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.hero-badge i {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0%,
    90% {
        transform: rotate(0deg);
    }
    95% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hero Title */
.hero-text h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -1.5px;
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 50%,
        var(--primary-light) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

/* Hero Paragraph */
.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 550px;
    animation: fadeIn 1s ease-out 0.7s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.1s backwards;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 100%
    );
    color: white;
    box-shadow: 0 15px 40px rgba(255, 117, 81, 0.4);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 117, 81, 0.6);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

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

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ===== RIGHT SIDE - IMAGE ===== */
.hero-images {
    position: relative;
    animation: slideInRight 1s ease-out;
    max-width: 450px;
    margin-left: auto;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.images-grid {
    position: relative;
}

.image-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.image-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px;
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 50%,
        var(--primary-light) 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.image-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 100px rgba(255, 117, 81, 0.4);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Image Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 31, 58, 0.95), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    z-index: 2;
}

.image-item:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    color: white;
}

.overlay-content i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: fadeIn 1s ease-out 1.5s backwards;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
    .hero-content {
        gap: 4rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }
}

/* Mobile Landscape / Small Tablets */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-images {
        order: 2;
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        align-items: center;
    }

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

    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .scroll-indicator {
        bottom: 1.5rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }

    .bg-circle-1,
    .bg-circle-2,
    .bg-circle-3 {
        width: 300px;
        height: 300px;
    }

    .hero-content {
        gap: 2rem;
    }

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

    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        letter-spacing: -1px;
    }

    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .image-item {
        border-radius: 20px;
    }
}

/* ==================================================================================
   ============================== Service SECTION ===================================
   ================================================================================== */

/* ==================================================================================
   GERMAN OSTAD - SERVICE SECTION STYLESHEET
   Color Scheme: Orange/Coral (#FF7551) & Dark Navy Blue (#1A1F3A)
   Background: White
   ================================================================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo Colors */
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --primary-light: #ffa589;
    --primary-dark: #e66545;

    --navy-dark: #1a1f3a;
    --navy-medium: #2c3558;
    --navy-light: #1e2847;

    /* Supporting Colors */
    --white: #ffffff;
    --bg-light: #fafafa;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    overflow-x: hidden;
}

/* ==================== SERVICE SECTION ==================== */
.auswahl-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--white);
    overflow: hidden;
}

/* Dekorative Hintergrund-Elemente mit Logo-Farben */
.auswahl-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 117, 81, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 8s infinite ease-in-out;
}

.auswahl-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(26, 31, 58, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 10s infinite ease-in-out;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.auswahl-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Title */
.auswahl-container > h1 {
    text-align: center;
    font-size: 3rem;
    color: var(--navy-dark);
    margin-bottom: 4rem;
    position: relative;
    animation: fadeInDown 1s ease-out;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1px;
}

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

/* Title Underline with Logo Colors */
.auswahl-container > h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 117, 81, 0.4);
}

/* Grid Layout */
.auswahl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

/* Option Cards */
.option-card {
    position: relative;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
    border: 1px solid rgba(255, 117, 81, 0.1);
}

.option-card:nth-child(1) {
    animation-delay: 0.2s;
}

.option-card:nth-child(2) {
    animation-delay: 0.4s;
}

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

.option-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 117, 81, 0.15);
    border-color: rgba(255, 117, 81, 0.3);
}

/* Card Hover Overlay with Logo Colors */
.option-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.05) 0%,
        rgba(255, 143, 105, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.option-card:hover::before {
    opacity: 1;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.image-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 31, 58, 0.4), transparent);
    z-index: 1;
}

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

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

.icon-badge {
    display: none;
}

/* Content Box */
.content-box {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.content-box h3 {
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.content-box p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Feature Tags with Logo Colors */
.feature-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 117, 81, 0.1);
    border: 1px solid rgba(255, 117, 81, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 600;
    transition: all 0.3s ease;
}

.option-card:hover .tag {
    background: rgba(255, 117, 81, 0.15);
    border-color: rgba(255, 117, 81, 0.5);
    transform: translateY(-2px);
}

/* Button with Logo Colors */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2.5rem;
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 100%
    );
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 117, 81, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 117, 81, 0.5);
    background: linear-gradient(
        135deg,
        var(--primary-coral) 0%,
        var(--primary-orange) 100%
    );
}

.btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.btn:hover svg {
    transform: translateX(5px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
    .auswahl-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 2rem auto;
    }

    .auswahl-container > h1 {
        font-size: 2.5rem;
    }
}

/* Mobile Landscape / Small Tablets */
@media (max-width: 768px) {
    .auswahl-section {
        padding: 4rem 1.5rem;
    }

    .auswahl-container > h1 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .auswahl-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    .image-container {
        height: 280px;
    }

    .content-box {
        padding: 2rem;
    }

    .content-box h3 {
        font-size: 1.6rem;
    }

    .content-box p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .auswahl-section {
        padding: 3rem 1rem;
    }

    .auswahl-section::before,
    .auswahl-section::after {
        width: 250px;
        height: 250px;
    }

    .auswahl-container > h1 {
        font-size: 1.6rem;
    }

    .image-container {
        height: 240px;
    }

    .content-box {
        padding: 1.5rem;
    }

    .content-box h3 {
        font-size: 1.4rem;
    }

    .feature-tags {
        gap: 0.5rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

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

/* ==================================================================================
   ========================== Dienstleistung SECTION =================================
   ================================================================================== */

/* ==================================================================================
   GERMAN OSTAD - DIENSTLEISTUNGEN SECTION STYLESHEET
   Color Scheme: Orange/Coral (#FF7551) & Dark Navy Blue (#1A1F3A)
   Background: White
   ================================================================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo Colors */
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --primary-light: #ffa589;
    --primary-dark: #e66545;

    --navy-dark: #1a1f3a;
    --navy-medium: #2c3558;
    --navy-light: #1e2847;

    /* Supporting Colors */
    --white: #ffffff;
    --bg-light: #fafafa;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    overflow-x: hidden;
}

/* ==================== DIENSTLEISTUNGEN SECTION ==================== */
.dienstleistungen-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--white);
    overflow: hidden;
}

/* Dekorative Elemente mit Logo-Farben */
.dienstleistungen-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 117, 81, 0.04) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(26, 31, 58, 0.04) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.dienstleistungen-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Section Title */
.dienstleistungen-container > h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
    font-weight: 800;
    letter-spacing: -1px;
}

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

/* Section Description */
.dienstleistungen-container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.2s both;
    line-height: 1.7;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Dienstleistung Card */
.dienstleistung-card {
    position: relative;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out both;
    border: 1px solid rgba(255, 117, 81, 0.1);
}

.dienstleistung-card:nth-child(1) {
    animation-delay: 0.1s;
}

.dienstleistung-card:nth-child(2) {
    animation-delay: 0.2s;
}

.dienstleistung-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

.dienstleistung-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(255, 117, 81, 0.15);
    border-color: rgba(255, 117, 81, 0.3);
}

/* Card Hover Overlay with Logo Colors */
.dienstleistung-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.05) 0%,
        rgba(26, 31, 58, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.dienstleistung-card:hover::before {
    opacity: 1;
}

/* Card Image */
.card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(26, 31, 58, 0.5), transparent);
    z-index: 1;
}

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

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

/* Card Number Badge with Logo Colors */
.card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(255, 117, 81, 0.4);
    transition: all 0.3s ease;
}

.dienstleistung-card:hover .card-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(255, 117, 81, 0.6);
}

/* Card Content */
.card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.8rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.dienstleistung-card:hover .card-content h3 {
    color: var(--primary-orange);
}

.card-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Card Link with Logo Colors */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link svg {
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--primary-coral);
    gap: 0.8rem;
}

.card-link:hover svg {
    transform: translateX(5px);
}

/* More Button Container */
.mehr-button-container {
    text-align: center;
    margin-top: 3rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

/* More Button with Logo Colors */
.btn-mehr {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 3rem;
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 100%
    );
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(255, 117, 81, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-mehr::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-mehr:hover::before {
    left: 100%;
}

.btn-mehr:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 117, 81, 0.5);
    background: linear-gradient(
        135deg,
        var(--primary-coral) 0%,
        var(--primary-orange) 100%
    );
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .dienstleistungen-container > h2 {
        font-size: 2.5rem;
    }
}

/* Mobile Landscape / Small Tablets */
@media (max-width: 768px) {
    .dienstleistungen-section {
        padding: 4rem 1.5rem;
    }

    .dienstleistungen-container > h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .dienstleistungen-container > p {
        font-size: 1.05rem;
        margin-bottom: 3rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-image {
        height: 240px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }

    .card-content p {
        font-size: 1rem;
    }

    .btn-mehr {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .dienstleistungen-section {
        padding: 3rem 1rem;
    }

    .dienstleistungen-container > h2 {
        font-size: 1.6rem;
    }

    .dienstleistungen-container > p {
        font-size: 0.95rem;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 1.2rem;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .card-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .btn-mehr {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ==================================================================================
   ============================ BEDARFSANALYSE SECTION ==============================
   ================================================================================== */

/* ==================================================================================
   GERMAN OSTAD - BEDARFSANALYSE SECTION STYLESHEET
   Color Scheme: Orange/Coral (#FF7551) & Dark Navy Blue (#1A1F3A)
   Background: White
   ================================================================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo Colors */
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --primary-light: #ffa589;
    --primary-dark: #e66545;

    --navy-dark: #1a1f3a;
    --navy-medium: #2c3558;
    --navy-light: #1e2847;

    /* Supporting Colors */
    --white: #ffffff;
    --bg-light: #fafafa;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    overflow-x: hidden;
}

/* ==================== BEDARFSANALYSE SECTION ==================== */
.bedarfsanalyse-section {
    position: relative;
    padding: 4rem 2rem;
    background: var(--white);
    overflow: hidden;
}

/* Decorative Background Elements */
.bedarfsanalyse-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 117, 81, 0.06) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 10s infinite ease-in-out;
}

.bedarfsanalyse-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(26, 31, 58, 0.04) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 12s infinite ease-in-out reverse;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.bedarfsanalyse-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy-dark);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

.section-header .highlight {
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-header .highlight::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    border-radius: 2px;
}

/* Intro Text in Header */
.section-header .intro-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
    animation: fadeIn 1s ease-out 0.3s both;
}

/* ===== CONTENT GRID ===== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* ===== IMAGE WRAPPER ===== */
.image-wrapper {
    position: relative;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.5s ease;
}

.image-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 50%,
        var(--primary-light) 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    z-index: 1;
}

.image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(255, 117, 81, 0.2);
}

.image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* ===== CONTENT WRAPPER ===== */
.content-wrapper {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== FEATURES LIST ===== */
.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out both;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 12px;
}

.features-list li:nth-child(1) {
    animation-delay: 0.4s;
}
.features-list li:nth-child(2) {
    animation-delay: 0.5s;
}
.features-list li:nth-child(3) {
    animation-delay: 0.6s;
}
.features-list li:nth-child(4) {
    animation-delay: 0.7s;
}

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

.features-list li:hover {
    background: rgba(255, 117, 81, 0.03);
    transform: translateX(5px);
}

/* Check Icon */
.check-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(255, 117, 81, 0.3);
    transition: all 0.3s ease;
}

.features-list li:hover .check-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 117, 81, 0.5);
}

/* Feature Text */
.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-size: 1.05rem;
    color: var(--navy-dark);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.feature-text span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 100%
    );
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 117, 81, 0.35);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out 0.8s both;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 117, 81, 0.5);
    background: linear-gradient(
        135deg,
        var(--primary-coral) 0%,
        var(--primary-orange) 100%
    );
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
    .content-grid {
        gap: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header .intro-text {
        font-size: 1rem;
    }
}

/* Mobile Landscape / Small Tablets */
@media (max-width: 768px) {
    .bedarfsanalyse-section {
        padding: 3rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-wrapper {
        order: 2;
    }

    .content-wrapper {
        order: 1;
    }

    .section-header .intro-text {
        font-size: 1.05rem;
    }

    .features-list li {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .check-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .feature-text strong {
        font-size: 1.05rem;
    }

    .feature-text span {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .bedarfsanalyse-section {
        padding: 3rem 1rem;
    }

    .bedarfsanalyse-section::before,
    .bedarfsanalyse-section::after {
        width: 300px;
        height: 300px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .content-grid {
        gap: 2rem;
    }

    .section-header .intro-text {
        font-size: 1rem;
    }

    .features-list {
        margin-bottom: 2rem;
    }

    .features-list li {
        gap: 1rem;
        margin-bottom: 1.2rem;
        padding: 0.8rem;
    }

    .check-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .feature-text strong {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .feature-text span {
        font-size: 0.85rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* ==================================================================================
   ========================== MISSION & VISION SECTION ==============================
   ================================================================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Logo Colors */
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --primary-light: #ffa589;
    --primary-dark: #e66545;

    --navy-dark: #1a1f3a;
    --navy-medium: #2c3558;
    --navy-light: #1e2847;

    /* Supporting Colors */
    --white: #ffffff;
    --bg-light: #fafafa;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family:
        "Poppins",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    overflow-x: hidden;
}

/* ==================== VALUES SECTION ==================== */
.values-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--white);
    overflow: hidden;
}

/* Decorative Background Elements */
.values-section::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 117, 81, 0.06) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 10s infinite ease-in-out;
}

.values-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(
        circle,
        rgba(26, 31, 58, 0.04) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 12s infinite ease-in-out reverse;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

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

.section-title h2 {
    font-size: 3rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

/* ===== CARD ===== */
.card {
    position: relative;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out both;
    border: 1px solid rgba(255, 117, 81, 0.1);
}

.card:nth-child(1) {
    animation-delay: 0.2s;
}

.card:nth-child(2) {
    animation-delay: 0.4s;
}

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

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 117, 81, 0.15);
    border-color: rgba(255, 117, 81, 0.3);
}

/* Card Hover Overlay */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.03) 0%,
        rgba(26, 31, 58, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

/* ===== CARD IMAGE ===== */
.card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.card-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 31, 58, 0.6), transparent);
    z-index: 1;
}

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

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

/* Card Icon */
.card-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255, 117, 81, 0.4);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 117, 81, 0.6);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-orange);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover .card-badge {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

/* ===== CARD CONTENT ===== */
.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 2rem;
    color: var(--navy-dark);
    margin-bottom: 1.2rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.card:hover .card-content h3 {
    color: var(--primary-orange);
}

.card-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Read More Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 2rem;
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 100%
    );
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 117, 81, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-read-more::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-read-more:hover::before {
    left: 100%;
}

.btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 117, 81, 0.5);
    background: linear-gradient(
        135deg,
        var(--primary-coral) 0%,
        var(--primary-orange) 100%
    );
}

.btn-read-more .arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.btn-read-more:hover .arrow {
    transform: translateX(5px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2.5rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .section-title p {
        font-size: 1.1rem;
    }
}

/* Mobile Landscape / Small Tablets */
@media (max-width: 768px) {
    .values-section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1.05rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-image {
        height: 240px;
    }

    .card-content {
        padding: 2rem;
    }

    .card-content h3 {
        font-size: 1.6rem;
    }

    .card-content p {
        font-size: 1rem;
    }

    .btn-read-more {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .values-section {
        padding: 3rem 1rem;
    }

    .values-section::before,
    .values-section::after {
        width: 300px;
        height: 300px;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .card-image {
        height: 220px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: 15px;
        left: 15px;
    }

    .card-badge {
        padding: 6px 16px;
        font-size: 0.75rem;
        top: 15px;
        right: 15px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .card-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-read-more {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==================================================================================
   GERMAN OSTAD - KANDIDATEN SECTION STYLESHEET
   Color Scheme: Orange/Coral (#FF7551) & Dark Navy Blue (#1A1F3A)
   ================================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --primary-light: #ffa589;
    --primary-dark: #e66545;
    --navy-dark: #1a1f3a;
    --navy-medium: #2c3558;
    --navy-light: #1e2847;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

/* ==================== KANDIDATEN SECTION ==================== */
.kandidaten-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--white);
    overflow: hidden;
}

.kandidaten-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 117, 81, 0.06) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 10s infinite ease-in-out;
}

.kandidaten-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(26, 31, 58, 0.04) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: pulse 12s infinite ease-in-out reverse;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 117, 81, 0.1);
    border: 1px solid rgba(255, 117, 81, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-badge i {
    color: var(--primary-orange);
}

.section-title {
    font-size: 3rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* KANDIDATEN GRID */
.kandidaten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

/* KANDIDAT CARD */
.kandidat-card {
    position: relative;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out both;
    border: 1px solid rgba(255, 117, 81, 0.1);
}

.kandidat-card:nth-child(1) {
    animation-delay: 0.2s;
}
.kandidat-card:nth-child(2) {
    animation-delay: 0.4s;
}

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

.kandidat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 117, 81, 0.15);
    border-color: rgba(255, 117, 81, 0.3);
}

/* CARD HEADER */
.card-header {
    position: relative;
    padding: 2rem;
    background: linear-gradient(
        135deg,
        rgba(255, 117, 81, 0.05),
        rgba(26, 31, 58, 0.05)
    );
}

.profile-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.kandidat-card:hover .profile-image {
    transform: scale(1.1);
}

.status-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.top-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 117, 81, 0.4);
}

/* CARD BODY */
.card-body {
    padding: 2rem;
}

.kandidat-name {
    font-size: 1.8rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.kandidat-card:hover .kandidat-name {
    color: var(--primary-orange);
}

.kandidat-title {
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.kandidat-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* QUICK FACTS */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 117, 81, 0.04);
    border-radius: 15px;
}

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.fact-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.fact-item span {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* SKILLS TAGS */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.skill-tag {
    padding: 8px 16px;
    background: rgba(255, 117, 81, 0.1);
    border: 1px solid rgba(255, 117, 81, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 600;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* HIGHLIGHTS */
.highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

.highlight-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* CARD ACTIONS */
.card-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.4s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: white;
    box-shadow: 0 8px 25px rgba(255, 117, 81, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 117, 81, 0.5);
}

.btn-secondary {
    background: rgba(255, 117, 81, 0.1);
    color: var(--primary-orange);
    border: 2px solid rgba(255, 117, 81, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 117, 81, 0.2);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

/* VIEW ALL SECTION */
.view-all-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 117, 81, 0.2);
}

.view-all-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 35px rgba(255, 117, 81, 0.35);
}

.btn-view-all:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 117, 81, 0.5);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .kandidaten-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto 4rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .kandidaten-section {
        padding: 4rem 1.5rem;
    }
    .section-header {
        margin-bottom: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-description {
        font-size: 1.05rem;
    }
    .kandidaten-grid {
        gap: 2rem;
    }
    .quick-facts {
        grid-template-columns: 1fr;
    }
    .card-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .kandidaten-section {
        padding: 3rem 1rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .kandidat-name {
        font-size: 1.5rem;
    }
    .card-body {
        padding: 1.5rem;
    }
    .btn-view-all {
        width: 100%;
        max-width: 320px;
    }
}

/* ==================================================================================
   GERMAN OSTAD - FEEDBACK SECTION (NO JAVASCRIPT)
   Color Scheme: Orange/Coral (#FF7551) & Dark Navy Blue (#1A1F3A)
   ================================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff7551;
    --primary-coral: #ff8f69;
    --primary-light: #ffa589;
    --primary-dark: #e66545;
    --navy-dark: #1a1f3a;
    --navy-medium: #2c3558;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

/* BACKGROUND DECORATIONS */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float 15s infinite ease-in-out;
}

.bg-decoration-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    background: radial-gradient(
        circle,
        rgba(255, 117, 81, 0.08) 0%,
        transparent 70%
    );
}

.bg-decoration-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    right: -100px;
    background: radial-gradient(
        circle,
        rgba(26, 31, 58, 0.06) 0%,
        transparent 70%
    );
    animation-delay: -5s;
}

.bg-decoration-3 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 20%;
    background: radial-gradient(
        circle,
        rgba(255, 143, 105, 0.05) 0%,
        transparent 70%
    );
    animation-delay: -10s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* FEEDBACK SECTION */
.feedback-section {
    position: relative;
    padding: 6rem 2rem;
    background: var(--white);
    overflow: hidden;
}

.feedback-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    animation: fadeInDown 1s ease-out;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 117, 81, 0.1);
    border: 1px solid rgba(255, 117, 81, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.feedback-header h2 {
    font-size: 3rem;
    color: var(--navy-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.feedback-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* FEEDBACK CARDS */
.feedback-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.card {
    position: relative;
    background: var(--white);
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    animation: fadeInUp 0.8s ease-out both;
    border: 1px solid rgba(255, 117, 81, 0.1);
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}
.card:nth-child(2) {
    animation-delay: 0.2s;
}
.card:nth-child(3) {
    animation-delay: 0.3s;
}

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

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(255, 117, 81, 0.15);
    border-color: rgba(255, 117, 81, 0.3);
}

.quote-icon {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 5rem;
    color: rgba(255, 117, 81, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
    z-index: 0;
    pointer-events: none;
}

/* CARD HEADER */
.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 117, 81, 0.2);
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 117, 81, 0.4);
}

.card-info {
    flex: 1;
}

.name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 0.2rem;
}

.company {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* CARD TEXT */
.card-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* CARD FOOTER */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 117, 81, 0.1);
    margin-bottom: 1rem;
}

.card-stars {
    font-size: 1.1rem;
    color: var(--primary-orange);
}

.card-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* READ MORE LINK - ANKLICKBAR */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.read-more i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.read-more:hover {
    color: var(--primary-coral);
    gap: 12px;
}

.read-more:hover i {
    transform: translateX(5px);
}

.read-more:active {
    transform: scale(0.98);
}

/* CTA WRAPPER */
.cta-wrapper {
    text-align: center;
    padding-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--primary-coral)
    );
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(255, 117, 81, 0.35);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 117, 81, 0.5);
}

.cta-button:active {
    transform: translateY(-2px);
}

.arrow-icon {
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .feedback-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .feedback-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 4rem 1.5rem;
    }
    .feedback-header {
        margin-bottom: 3rem;
    }
    .feedback-header h2 {
        font-size: 2rem;
    }
    .feedback-header p {
        font-size: 1.05rem;
    }
    .feedback-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .feedback-section {
        padding: 3rem 1rem;
    }
    .feedback-header h2 {
        font-size: 1.6rem;
    }
    .card {
        padding: 1.5rem;
    }
    .quote-icon {
        font-size: 3.5rem;
        top: 10px;
        right: 15px;
    }
    .cta-button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ==================================================================================
   ========================== CTA CONTACT SECTION ===================================
   ================================================================================== */

.cta-section {
    background: linear-gradient(
        135deg,
        var(--navy-dark) 0%,
        var(--navy-medium) 50%,
        var(--navy-light) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin: 2rem 0;
}

/* Animated Background Orbs */
.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 117, 81, 0.25) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 143, 105, 0.25) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* CTA Container */
.cta-container {
    max-width: 1000px;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Main Content Section */
.cta-main {
    text-align: center;
    margin-bottom: 3rem;
}

/* CTA Title */
.cta-section h2 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    animation: slideInDown 0.7s ease-out;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

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

/* CTA Subtitle */
.cta-section p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 500;
    animation: slideInUp 0.7s ease-out 0.2s both;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.01em;
}

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

/* CTA Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 100%
    );
    color: white;
    padding: 1.3rem 3.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(255, 117, 81, 0.4);
    animation: slideInUp 0.7s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255, 117, 81, 0.6);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary i {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.btn-primary span {
    position: relative;
    z-index: 1;
}

/* Features Grid */
.cta-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cta-feature {
    color: white;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.cta-feature:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 117, 81, 0.4);
}

.cta-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.cta-feature:hover .cta-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.cta-feature-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cta-feature-text {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* =============== CTA RESPONSIVE =============== */
@media (max-width: 1200px) {
    .cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-section h2 {
        font-size: 3rem;
    }

    .cta-section p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        min-height: auto;
        margin: 1.5rem 0;
        border-radius: 0;
    }

    .cta-container {
        padding: 3rem 1.5rem;
    }

    .cta-main {
        margin-bottom: 2.5rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        gap: 0.6rem;
    }

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

    .cta-feature {
        padding: 1.5rem 1rem;
    }

    .cta-feature-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .cta-feature-title {
        font-size: 0.9rem;
    }

    .cta-feature-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        min-height: auto;
        margin: 1rem 0;
        border-radius: 0;
    }

    .cta-container {
        padding: 2rem 1rem;
    }

    .cta-main {
        margin-bottom: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        padding: 0.95rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-feature {
        padding: 1.2rem 1rem;
    }

    .cta-feature-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .cta-feature-title {
        font-size: 0.85rem;
    }

    .cta-feature-text {
        font-size: 0.75rem;
    }
}

/* ==================================================================================
   ========================== FOOTER SECTION ========================================
   ================================================================================== */

.site-footer {
    background: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--primary-coral) 50%,
        var(--primary-light) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

/* Animated Background */
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.site-footer::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 1px,
        transparent 1px
    );
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
    pointer-events: none;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

/* =============== FOOTER LOGO =============== */
.footer-logo {
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.footer-logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.footer-logo-text:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

/* =============== MAIN NAVIGATION =============== */
.footer-main-nav {
    animation: fadeIn 1s ease-out 0.2s both;
}

.footer-main-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.footer-main-nav a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-main-nav a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.footer-main-nav a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-main-nav a:hover::before {
    width: 100%;
}

/* =============== SOCIAL LINKS =============== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.4s both;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.02)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 1.8rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 12px;
}

.social-link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition:
        width 0.6s,
        height 0.6s;
}

.social-link:hover {
    transform: translateY(-12px) scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
}

.social-link:hover::before {
    opacity: 0.15;
}

.social-link:hover::after {
    width: 250px;
    height: 250px;
}

.social-link svg,
.social-link i {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-link:hover i,
.social-link:hover svg {
    transform: scale(1.25) rotate(8deg);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* =============== FOOTER DIVIDER =============== */
.footer-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 10%,
        rgba(255, 255, 255, 0.2) 90%,
        transparent 100%
    );
    margin: 0 auto;
    width: 90%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* =============== FOOTER NAVIGATION =============== */
.footer-nav {
    animation: fadeIn 1s ease-out 0.6s both;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

.footer-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-nav a:hover::after {
    width: 100%;
}

/* =============== FOOTER BOTTOM =============== */
.footer-bottom {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-out 0.8s both;
}

.footer-bottom p {
    line-height: 1.6;
}

/* =============== FOOTER RESPONSIVE =============== */
@media (max-width: 1024px) {
    .footer-inner {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .footer-logo-text {
        font-size: 2rem;
    }

    .footer-main-nav ul {
        gap: 2rem;
    }

    .footer-main-nav a {
        font-size: 1rem;
    }

    .social-link {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .social-link i {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 4rem 0 1.5rem;
    }

    .footer-inner {
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .footer-logo-text {
        font-size: 1.7rem;
    }

    .footer-main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .footer-main-nav a {
        font-size: 0.95rem;
    }

    .social-links {
        gap: 1.2rem;
    }

    .social-link {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .social-link i {
        width: 24px;
        height: 24px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 3rem 0 1rem;
    }

    .footer-inner {
        gap: 2rem;
        padding: 0 0.8rem;
    }

    .footer-logo-text {
        font-size: 1.4rem;
    }

    .footer-main-nav ul {
        gap: 1rem;
    }

    .footer-main-nav a {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .social-link i {
        width: 20px;
        height: 20px;
    }

    .footer-nav ul {
        gap: 0.8rem;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

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