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

:root {
    /* German Ostadt Logo Colors */
    --primary-coral: #ff7b63;
    --primary-navy: #1f1e3d;
    --accent-blue: #5ba3d0;
    --coral-light: #ffb5a3;
    --coral-dark: #e85a3f;
    --navy-light: #2d2c52;
    --navy-dark: #12111f;
    --blue-light: #8fc4e0;
    --bg-cream: #fff9f5;
    --bg-white: #ffffff;
    --text-dark: #1f1e3d;
    --text-medium: #4a4968;
    --text-light: #7b7a93;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family:
        "DM Sans",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    color: var(--text-dark);
    background: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ANIMATED GRADIENT BACKGROUND */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 123, 99, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(91, 163, 208, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 40% 80%,
            rgba(255, 123, 99, 0.05) 0%,
            transparent 50%
        );
    z-index: -1;
    pointer-events: none;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

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

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(
        circle,
        rgba(255, 123, 99, 0.15) 0%,
        transparent 70%
    );
    animation: floatBubble 25s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 70%;
    height: 120%;
    background: radial-gradient(
        circle,
        rgba(91, 163, 208, 0.12) 0%,
        transparent 70%
    );
    animation: floatBubble 30s ease-in-out infinite reverse;
}

@keyframes floatBubble {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-20px, -30px) scale(1.1);
    }
    66% {
        transform: translate(20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

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

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--bg-white);
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-title span {
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--accent-blue)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.8rem;
    background: var(--primary-coral);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(255, 123, 99, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-cta::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;
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 123, 99, 0.4);
}

.hero-cta-secondary {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: none;
}

.hero-cta-secondary:hover {
    background: var(--accent-blue);
    color: var(--bg-white);
    box-shadow: 0 12px 40px rgba(91, 163, 208, 0.3);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--accent-blue)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* LAYOUT WITH SIDEBAR */
.layout-with-sidebar {
    display: flex;
    min-height: 100vh;
    position: relative;
    background: var(--bg-cream);
}

/* SIDEBAR */
.sidebar {
    position: sticky;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: var(--bg-white);
    padding: 3rem 0;
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(31, 30, 61, 0.08);
    flex-shrink: 0;
    z-index: 100;
}

.sidebar-logo {
    padding: 0 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--coral-light)
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
}

.logo-text {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-navy);
}

.sidebar-nav {
    padding: 0 1.5rem;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.8rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    background: transparent;
    border-radius: 16px;
    border-left: 4px solid transparent;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.sidebar-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 123, 99, 0.1),
        rgba(91, 163, 208, 0.1)
    );
    transition: width 0.4s ease;
    z-index: -1;
}

.sidebar-link:hover::before {
    width: 100%;
}

.sidebar-link:hover {
    transform: translateX(8px);
    border-left-color: var(--primary-coral);
}

.sidebar-link.active {
    background: linear-gradient(
        135deg,
        rgba(255, 123, 99, 0.15),
        rgba(91, 163, 208, 0.12)
    );
    color: var(--primary-navy);
    font-weight: 700;
    border-left-color: var(--primary-coral);
    box-shadow: 0 4px 20px rgba(255, 123, 99, 0.15);
}

.link-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(255, 123, 99, 0.15),
        rgba(91, 163, 208, 0.15)
    );
    border-radius: 14px;
    transition: all 0.3s ease;
}

.sidebar-link:hover .link-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(
        135deg,
        rgba(255, 123, 99, 0.25),
        rgba(91, 163, 208, 0.25)
    );
}

.sidebar-link.active .link-icon {
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--coral-dark)
    );
    color: white;
}

/* CONTENT */
.content {
    flex: 1;
    background: var(--bg-cream);
}

/* SECTIONS */
.section {
    padding: 6rem 4rem;
    background: var(--bg-white);
    position: relative;
}

.section.hidden {
    display: none;
}

.section:nth-child(even) {
    background: var(--bg-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--primary-coral),
        var(--accent-blue)
    );
    border-radius: 3px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title span {
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--accent-blue)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* VIDEO CONTAINER */
.video-container {
    max-width: 1400px;
    margin: 0 auto 6rem;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(31, 30, 61, 0.15);
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--primary-navy);
}

.video-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 3px;
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--accent-blue)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* SUBSECTIONS */
.subsection {
    max-width: 1500px;
    margin: 0 auto 6rem;
    padding: 4rem;
    background: var(--bg-white);
    border-radius: 32px;
    box-shadow: 0 10px 40px rgba(31, 30, 61, 0.08);
    position: relative;
    overflow: hidden;
}

.subsection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--primary-coral),
        var(--accent-blue)
    );
}

.subsection-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 3rem;
    text-align: center;
}

.subsection-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.subsection-reverse .subsection-content {
    grid-template-columns: 1.3fr 1fr;
}

.subsection-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(31, 30, 61, 0.15);
    position: relative;
}

.subsection-image::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 3px;
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--accent-blue)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.subsection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.subsection-text {
    padding: 1rem;
}

.large-text {
    font-size: 1.35rem;
    line-height: 2;
    color: #2d3748;
    margin-bottom: 1.8rem;
}

.large-text:last-child {
    margin-bottom: 0;
}

/* TEXT LIST CONTAINER */
.text-list-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.text-list-item {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(31, 30, 61, 0.08);
    display: flex;
    gap: 3rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.text-list-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--primary-coral),
        var(--accent-blue)
    );
}

.text-list-item:hover {
    box-shadow: 0 20px 60px rgba(31, 30, 61, 0.12);
    transform: translateX(12px);
}

.text-list-icon {
    font-size: 5rem;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(255, 123, 99, 0.15),
        rgba(91, 163, 208, 0.15)
    );
    border-radius: 28px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.text-list-item:hover .text-list-icon {
    transform: scale(1.1) rotate(8deg);
    background: linear-gradient(
        135deg,
        rgba(255, 123, 99, 0.25),
        rgba(91, 163, 208, 0.25)
    );
}

.text-list-content {
    flex: 1;
}

.text-list-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.text-list-description {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.requirement-list {
    list-style: none;
    padding: 0;
}

.requirement-list li {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 1.3rem;
    padding-left: 3rem;
    position: relative;
}

.requirement-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--coral-dark)
    );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.requirement-list li strong {
    color: var(--primary-navy);
    font-weight: 700;
}

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

.modal-card {
    background: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(31, 30, 61, 0.08);
    text-align: center;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.modal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 123, 99, 0.05),
        rgba(91, 163, 208, 0.05)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.modal-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 25px 70px rgba(31, 30, 61, 0.15);
    border-color: var(--primary-coral);
}

.modal-card-icon {
    font-size: 5.5rem;
    margin-bottom: 2rem;
    display: inline-block;
    transition: all 0.4s ease;
}

.modal-card:hover .modal-card-icon {
    transform: scale(1.2) rotate(12deg);
}

.modal-card-title {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 1.2rem;
}

.modal-card-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.modal-card-button {
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--coral-dark)
    );
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(255, 123, 99, 0.3);
}

.modal-card-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 123, 99, 0.4);
}

/* MODALS */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(31, 30, 61, 0.85);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: var(--bg-white);
    border-radius: 32px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.modal-close {
    position: sticky;
    top: 0;
    right: 0;
    color: white;
    float: right;
    font-size: 3.5rem;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--coral-dark)
    );
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 32px 0 24px;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: linear-gradient(135deg, var(--coral-dark), var(--primary-navy));
    transform: rotate(90deg);
}

.modal-title {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    padding: 3rem 4rem 2rem;
    border-bottom: 5px solid var(--primary-coral);
}

.modal-subtitle {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin: 3rem 0 1.5rem;
}

.modal-body {
    padding: 4rem;
}

.modal-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 50px rgba(31, 30, 61, 0.15);
}

.modal-text {
    font-size: 1.35rem;
    line-height: 2;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.modal-list li {
    font-size: 1.3rem;
    line-height: 2.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-left: 3.5rem;
    position: relative;
}

.modal-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--accent-blue)
    );
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.modal-list li strong {
    color: var(--primary-navy);
    font-weight: 700;
}

/* VERTICAL TEXT BLOCKS */
.vertical-text-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.vertical-text-block {
    background: var(--bg-white);
    padding: 4.5rem;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(31, 30, 61, 0.08);
    display: flex;
    gap: 3.5rem;
    border-left: 8px solid var(--primary-coral);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.vertical-text-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 123, 99, 0.03),
        rgba(91, 163, 208, 0.03)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vertical-text-block:hover::before {
    opacity: 1;
}

.vertical-text-block:hover {
    box-shadow: 0 20px 60px rgba(31, 30, 61, 0.12);
    transform: translateX(12px);
}

.vertical-text-icon {
    font-size: 5.5rem;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(255, 123, 99, 0.15),
        rgba(91, 163, 208, 0.15)
    );
    border-radius: 32px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.vertical-text-block:hover .vertical-text-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--accent-blue)
    );
    color: white;
}

.vertical-text-content {
    flex: 1;
}

.vertical-text-title {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 1.8rem;
}

.vertical-text-description {
    font-size: 1.35rem;
    line-height: 2;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.vertical-list {
    list-style: none;
    padding: 0;
}

.vertical-list li {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.vertical-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-blue), var(--blue-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* CTA CONTAINER */
.cta-container {
    text-align: center;
    margin-top: 5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--coral-dark)
    );
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 35px rgba(255, 123, 99, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(255, 123, 99, 0.4);
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
    display: none;
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 1200;
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--coral-dark)
    );
    color: white;
    border: none;
    padding: 1rem 1.8rem;
    border-radius: 60px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(255, 123, 99, 0.4);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 123, 99, 0.5);
}

/* SCROLL TO TOP */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--primary-coral),
        var(--coral-dark)
    );
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 123, 99, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--coral-dark), var(--primary-navy));
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 123, 99, 0.4);
}

/* SCROLL ANIMATION */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease-out,
        transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        var(--primary-coral),
        var(--accent-blue)
    );
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--coral-dark), var(--primary-navy));
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-stats {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .subsection-content,
    .subsection-reverse .subsection-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .layout-with-sidebar {
        flex-direction: column;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        transform: translateX(-100%);
        z-index: 1100;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .content {
        width: 100%;
    }

    .hero {
        min-height: 70vh;
        padding: 4rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

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

    .section {
        padding: 4rem 2rem;
    }

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

    .text-list-item,
    .vertical-text-block {
        flex-direction: column;
        padding: 2.5rem;
    }

    .text-list-icon,
    .vertical-text-icon {
        width: 100px;
        height: 100px;
        font-size: 3.5rem;
    }

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

    .subsection {
        padding: 2.5rem;
    }

    .modal-title {
        font-size: 2.5rem;
        padding: 2rem;
    }

    .modal-body {
        padding: 2rem;
    }

    .modal-image {
        height: 300px;
    }
}
