/* Mobile Safari viewport fixes */
html {
    /* Prevent zoom on form inputs */
    -webkit-text-size-adjust: 100% !important;
    /* Ensure full viewport coverage */
    height: 100% !important;
    height: -webkit-fill-available !important;
}

body {
    /* Fill available space on mobile Safari */
    min-height: 100vh !important;
    min-height: -webkit-fill-available !important;
    background-color: black !important;
    /* Remove default margins and padding */
    margin: 0 !important;
    padding: 0 !important;
    /* Handle safe areas properly */
    padding-top: env(safe-area-inset-top) !important;
    padding-bottom: env(safe-area-inset-bottom) !important;
    /* Prevent bounce scrolling on iOS */
    -webkit-overflow-scrolling: touch !important;
    overflow-x: hidden !important;
}

.body {
    font-family: "Inter", sans-serif !important;
    color: #1F1F1F !important;
    background-color: black !important;
    font-size: 20px !important;
    line-height: 28px !important;
}

html, body {
    background-color: black !important;
}

body {
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

.mud-main-content {
    margin: 0;
    flex: 1 1 auto;
    padding-top: unset !important;
    transition: margin 225ms cubic-bezier(0, 0, 0.2, 1) 0ms;
}

.root {
    background: #151414;
    min-height: 100vh;
}

.main-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto !important;
}

.main-info-section {
    max-width: 56.25rem;
    margin: 1.5rem auto;
    padding: 2rem 1.5rem;
    background: hwb(67deg 31.59% 65.58% / 17%);
    color: #ffffff;
    border-radius: 0.25rem;
    box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, .10);
    line-height: 1.7;
    width: calc(100% - 3rem);
    box-sizing: border-box;
}

.main-info-section p {
    margin-bottom: 1.25rem;
}

.main-info-section p:last-child {
    margin-bottom: 0;
}

.topic-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.topic-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.section-divider {
    border: none;
    height: 2px;
    width: 50vw;
    margin: 2rem auto;
    background: #ccc;
    border-radius: 1px;
}

.top-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.traska-logo {
    height: 200px;
    margin-top: 15px;
    margin-left: -10px;
}

.top-header-bar.hide {
    opacity: 0;
    transform: translateY(-230px);
    pointer-events: none;
}

.menu-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
}

.menu-link:hover {
    background: #333;
    text-decoration: underline;
}

.header-content-container {
    display: flex;
    align-items: center;
    height: 85px;
    overflow: hidden;
}

.sticky-bubble-bar {
    position: fixed;
    top: 16px;
    left: 3px;
    gap: 12px;
    opacity: 0;
    transform: scale(1);
    display: flex;
    z-index: -1;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), z-index 0.5s;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 24px;
}

.sticky-bubble-bar.show {
    opacity: 1;
    transform: scale(1);
    z-index: 1100;
}

.bubble {
    background: #151414;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: box-shadow 0.3s, background 0.3s;
}

.menu-bubble {
    margin-left: auto;
    margin-right: 0.5rem;
}

.sticky-bubble-bar .dropdown, .sticky-bubble-bar .dropdown button {
    background: transparent;
    box-shadow: none;
}


.consulting-link {
    color: #c6cd25;
    text-decoration: underline;
    transition: color 0.2s;
    word-break: break-all;
    overflow-wrap: break-word;
}

.consulting-link:hover {
    color: #0e8fa7;
    text-decoration: underline;
}

.main-info-section, .topic-section {
    overflow-wrap: break-word;
    word-break: break-word;
}

.main-image-container {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100vw;
    overflow: hidden;
    height: 100vh;
    background: #151414;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    max-width: 100vw;
    max-height: 100vh;
}

.main-fade {
    position: absolute;
    top: 0;

    width: 135%;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, #151414 0%, rgba(21, 20, 20, 0.85) 7.5%, rgba(21, 20, 20, 0) 15%, rgba(21, 20, 20, 0) 85%, rgba(21, 20, 20, 0.85) 92.5%, #151414 100%);
}

@media (max-width: 900px) {

    .traska-logo {
        height: 150px;
        margin-top: 5px;
        margin-left: -5px;

    }

    .main-image-container {
        height: 60vh;
    }

    .main-image, .main-fade {
        height: 60vh;
        max-height: 60vh;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        height: 80px !important;
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 720px) {
    .header-content-container.d-none.d-md-flex {
        display: none !important;
    }

    .top-header-bar {
        width: 50% !important;
    }

    .bubble-menu-header {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
    }

    .bubble.menu-bubble {
        background: #222;
        border-radius: 50px;
        padding: 8px 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        margin-left: 12px;
    }

    .sticky-bubble-bar-menu .bubble.menu-bubble {
        background: #222;
        border-radius: 50px;
        padding: 8px 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        margin-right: -8px;
        margin-left: auto;
    }

    .consulting-links-columns {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-icon-bubble {
        display: none !important;
    }

    .sticky-bubble-bar {
        top: 8px;
        left: 3px;
        gap: 0.5rem;
        padding: 0.5rem 0.5rem;
        min-height: 48px;
    }

    /*.bubble {*/
    /*    width: 40px;*/
    /*    height: 40px;*/
    /*}*/
    .main-image-container {
        height: 60vh;
    }

    .main-image, .main-fade {
        height: 60vh;
        max-height: 60vh;
    }

    .main-fade {
        background: linear-gradient(90deg, #151414 0%, rgba(21, 20, 20, 0.85) 3.5%, rgba(21, 20, 20, 0) 7%, rgba(21, 20, 20, 0) 93%, rgba(21, 20, 20, 0.85) 96.5%, #151414 100%);
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 70px !important;
        margin-bottom: 0.8rem !important;
    }
}

body.dark-mode .main-fade {
    background: linear-gradient(90deg, #151414 0%, rgba(21, 20, 20, 0.85) 7.5%, rgba(21, 20, 20, 0) 15%, rgba(21, 20, 20, 0) 85%, rgba(21, 20, 20, 0.85) 92.5%, #151414 100%);
}

html, body {
    overflow-x: hidden;
}

.info-section-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-icon-bubble {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.info-icon-bubble img {
    max-width: 60%;
    height: auto;
    background: inherit;
}

.info-text {
    flex: 1;
}

.footer {
    padding: 16px;
    text-align: center;
    color: #ffffff;
    /*background: #ffffff;*/
}

.consulting-links-columns {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.consulting-links-columns ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.consulting-links-columns li {
    margin-bottom: 0.5rem;
}

.overlay-image {
    position: absolute;
    top: 90%;
    left: 50%;
    width: 40%;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    min-height: 20vh;
    min-width: 30vh;
}

.main-image-container {
    position: relative;
}

.main-image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.1em;
    padding: 0.5em 1em;
    border-radius: 0.3em;
    z-index: 3;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    outline: none !important;
}

h1:focus, h2:focus, h3:focus, h4:focus, h5:focus, h6:focus {
    outline: none !important;
}

button, .btn {
    background-color: #151414 !important;
    color: #fff !important;
    border: none !important;
    opacity: 1 !important;
    box-shadow: none;
}


.sticky-bubble-bar-menu {
    opacity: 0;
    transform: scale(0.8);
    display: none;
}


@media (max-width: 767px) {
    .top-header-bar {
        width: 80% !important;
    }

    .sticky-bubble-bar-menu {
        position: fixed;
        top: 16px;
        left: 3px;
        z-index: 1100;
        gap: 12px;
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 24px;
        opacity: 1;
        transform: scale(1);
    }

}

/* New Design Page Styles - 384k.ventures inspired - Updated with higher specificity */
.hero-section {
    height: 100vh !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #151414;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center left;
    display: block;
    /*filter: grayscale(30%) brightness(0.8);*/
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(90deg, #151414 0%, #151414 15%, rgba(21, 20, 20, 0.9) 25%, rgba(21, 20, 20, 0.7) 40%, rgba(21, 20, 20, 0.3) 70%, rgba(21, 20, 20, 0.1) 100%);*/
    background: linear-gradient(91deg, #151414 0%, #151414 15%, rgba(21, 20, 20, 0.9) 25%, rgba(21, 20, 20, 0.7) 35%, rgb(21 20 20 / 3%) 70%, rgba(21, 20, 20, 0.1) 100%);
    z-index: 2;
}

.hero-text {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-text-content {
    max-width: 45%;
    color: white !important;
}

.hero-title {
    font-size: 4rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    color: white !important;
    line-height: 1.1;
}

.hero-logo {
    height: 120px !important;
    width: auto !important;
    margin-bottom: 1.5rem !important;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.3rem !important;
    font-weight: 300 !important;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    color: #cccccc !important;
    line-height: 1.6;
    margin-bottom: 2rem !important;
}

.hero-description {
    font-size: 1.1rem !important;
    font-weight: 300 !important;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
    color: #bbbbbb !important;
    line-height: 1.7;
    margin-bottom: 2.5rem !important;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #c6cd25 0%, #c6cd25 100%);
    color: #1a1a1a !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 223, 47, 0.3);
    color: #1a1a1a !important;
    text-decoration: none !important;
}

.content-container {
    background: #151414 !important;
    color: white !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

.content-section {
    min-height: 100vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem !important;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    background: #151414 !important;
    color: white !important;
    width: 100%;
    box-sizing: border-box;
}

.content-section.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.content-section.image-section {
    padding: 0 !important;
    min-height: 80vh;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white !important;
}

.section-title {
    font-size: 3rem !important;
    font-weight: 300 !important;
    margin-bottom: 2rem !important;
    letter-spacing: 1px;
    color: white !important;
}

.section-text {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    font-weight: 300 !important;
    color: white !important;
}

.section-text p {
    margin-bottom: 1.5rem !important;
    color: white !important;
}

.content-link {
    color: #c6cd25 !important;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.content-link:hover {
    border-bottom: 1px solid #1ec6d9 !important;
    color: #1ec6d9 !important;
}

.section-image-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.section-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.image-overlay-content {
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 3;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.service-item {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    text-align: center !important;
    transition: transform 0.3s ease;
    color: white !important;
    height: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.service-item:hover {
    transform: translateY(-5px) !important;
}

.service-item h3 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
    color: #c7df2f !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.service-item p {
    color: white !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin: 0 !important;
}

.contact-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
}

.contact-item {
    font-size: 1.2rem !important;
    color: white !important;
}

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

/* Ensure smooth scrolling works */
html {
    scroll-behavior: smooth !important;
}

/* Mobile responsive - updated */
@media (max-width: 1024px) {
    .hero-image-container {
        width: 125%;
    }

    .hero-text-content {
        max-width: 50%;
    }
}

@media (max-width: 1350px) {
    .hero-image-container {
        width: 100% !important;
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero-image-container {
        width: 100% !important;
        right: 0;
    }

    .hero-image {
        width: 175% !important;
        object-position: center right;
    }

    .hero-overlay {
        background: linear-gradient(90deg, #151414 0%, #151414 10%, rgba(21, 20, 20, 0.8) 30%, rgba(21, 20, 20, 0.4) 60%, rgba(21, 20, 20, 0.1) 100%);
    }

    .hero-text {
        padding: 0 2rem;
        align-items: center;
    }

    .hero-text-content {
        max-width: 60%;
        text-align: left;
    }

    .hero-logo {
        height: 80px !important;
        margin-bottom: 1rem !important;
    }

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

    .hero-subtitle {
        font-size: 1.2rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

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

    .section-text {
        font-size: 1.1rem !important;
    }

    .content-section {
        padding: 7rem 1rem !important;
        min-height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .section-image-container {
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        width: 100%;
        right: 0;
    }

    .hero-image {
        width: 200% !important;
        object-position: center right;
    }

    .hero-overlay {
        background: linear-gradient(35deg, #151414 0%, #151414 10%, rgba(21, 20, 20, 0.8) 30%, rgba(21, 20, 20, 0.4) 50%, rgba(21, 20, 20, 0.1) 60%);
}

    .hero-text {
        align-items: flex-end;
        padding-bottom: 3rem;
        width: unset;
    }

    .hero-text-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 10vh;
    }

    .hero-logo {
        display: none !important;
    }

    .hero-title {
        font-size: 2rem !important;
    }

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

    .hero-description {
        font-size: 0.95rem !important;
    }

    .hero-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Modern Footer Styles - 384k.ventures inspired */
.modern-footer {
    background: #0f0f0f !important;
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid #2a2a2a;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-title {
    font-size: 2rem !important;
    font-weight: 500 !important;
    color: #dddddd !important;
    margin-bottom: 1rem !important;
    letter-spacing: 1px;
}

.footer-subtitle {
    font-size: 1.1rem !important;
    color: #b0b0b0 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-weight: 300;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #b0b0b0 !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #c6cd25 !important;
    text-decoration: none !important;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*max-width: 1200px;*/
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #b0b0b0 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(30, 198, 217, 0.1) !important;
    color: #1ec6d9 !important;
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Mobile responsive for footer */
@media (max-width: 768px) {
    .modern-footer {
        padding: 3rem 0 1.5rem 0;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 1.5rem !important;
    }

    .footer-subtitle {
        font-size: 1rem !important;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .contact-item {
        text-align: left;
    }
}

/* AboutSection Component Styles */
.traska-about-section {
    position: relative;
    padding: 80px 0;
    background-color: #121212;
    min-height: 500px;
}

.traska-about-container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 15px;
}

.traska-about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.traska-about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    filter: saturate(0.9) contrast(1.1);
}

.traska-about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 98, 2, 0.2) 0%, rgba(40, 40, 40, 0.4) 100%);
    border-radius: 8px;
    mix-blend-mode: multiply;
}

.traska-about-content-section {
    padding: 40px 60px;
    background-color: #282828;
    position: relative;
    border-radius: 8px;
}

.traska-about-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*background-image: url('/images/DF-sk.jpeg');*/
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    mix-blend-mode: soft-light;
    border-radius: 8px;
}

.traska-about-content-wrapper {
    position: relative;
    z-index: 2;
}

.traska-about-header {
    margin-bottom: 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c6cd25;
    font-weight: 600;
}

.traska-about-category,
.traska-about-subtitle {
    color: #c6cd25;
}

.traska-about-divider {
    margin: 0 15px;
    color: #c6cd25;
}

.traska-about-title {
    font-size: 48px;
    line-height: 62px;
    font-weight: 600;
    color: #dddddd;
    margin: 48px 0;
    text-align: center;
}

/* About Section Typography Hierarchy */
.traska-about-text-large {
    font-size: 1.375rem !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    color: #ffffff !important;
    margin-bottom: 1.75rem !important;
    max-width: 100% !important;
}

.traska-about-text-regular {
    font-size: 1.0625rem !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 1.25rem !important;
    max-width: 100% !important;
}

.traska-about-text-regular:last-child {
    margin-bottom: 0 !important;
}

.default-title {
    font-size: 48px;
    line-height: 62px;
    font-weight: 600;
    color: #dddddd;
    margin: 48px 0;
    letter-spacing: 0.025em;
    text-align: center;
}

/* Responsive Design for AboutSection */
@media (max-width: 991.98px) {
    .traska-about-section {
        padding: 60px 0;
    }

    .traska-about-container {
        padding: 0 20px;
    }

    .traska-about-content-section {
        padding: 40px 30px;
        margin-top: 0;
    }

    .traska-about-content-section::before {
        background-position: bottom center;
        background-size: cover;
    }

    .traska-about-title {
        font-size: 36px;
        line-height: 47px;
        margin: 30px 0;
    }

    .default-title {
        font-size: 36px;
        line-height: 47px;
        margin: 30px 0;
    }

    .traska-about-image-wrapper {
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .traska-about-section {
        padding: 40px 0;
    }

    .traska-about-container {
        padding: 0 15px;
    }

    .traska-about-content-section {
        padding: 30px 20px;
    }

    .traska-about-header {
        font-size: 12px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .traska-about-title {
        font-size: 29px;
        line-height: 37px;
        margin: 20px 0;
    }

    .default-title {
        font-size: 29px;
        line-height: 37px;
        margin: 20px 0;
    }

    .traska-about-text {
        font-size: 17px;
        line-height: 25px;
        text-align: left;
    }

    .traska-about-image-wrapper {
        max-width: 250px;
    }
}

@media (max-width: 575.98px) {
    .traska-about-section {
        padding: 30px 0;
    }

    .traska-about-container {
        padding: 0 10px;
    }

    .traska-about-content-section {
        padding: 25px 15px;
    }

    .traska-about-title {
        font-size: 24px;
        line-height: 32px;
        margin: 15px 0;
    }

    .traska-about-text {
        font-size: 16px;
        line-height: 24px;
    }

    .traska-about-header {
        font-size: 11px;
    }
}

/* Pricing Page Component Styles */
.pricing-container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 15px;
    background-color: #121212;
    min-height: 100vh;
}

.pricing-header {
    margin-bottom: 4rem;
}

.pricing-category {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c6cd25;
    font-weight: 600;
}

.pricing-label,
.pricing-subtitle {
    color: #c6cd25;
}

.pricing-divider {
    margin: 0 15px;
    color: #c6cd25;
}

.pricing-title {
    font-size: 48px;
    line-height: 62px;
    font-weight: 600;
    color: #dddddd;
    margin: 2rem 0;
}

.pricing-description {
    font-size: 18px;
    line-height: 28px;
    color: #bbbbbb;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

/* Pricing Item Component Styles */
.pricing-item {
    background-color: #282828;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.pricing-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(199, 223, 47, 0.3);
}

.pricing-item.featured {
    border-color: #c6cd25;
    background-color: #2f2f2f;
    transform: scale(1.05);
}

.pricing-item.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c6cd25 0%, #9fb824 100%);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-item-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c6cd25 0%, #9fb824 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pricing-icon i {
    font-size: 24px;
    color: #1a1a1a;
}

.pricing-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.pricing-price {
    font-size: 18px;
    font-weight: 600;
    color: #c6cd25;
    margin-bottom: 10px;
}

.pricing-item-content {
    flex: 1;
    margin-bottom: 30px;
}

.pricing-item-description {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 25px;
    text-align: center;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #dddddd;
}

.pricing-features li i {
    color: #c6cd25;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-item-footer {
    margin-top: auto;
    text-align: center;
}

.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #c6cd25 0%, #9fb824 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 160px;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 223, 47, 0.3);
    color: #1a1a1a;
    text-decoration: none;
}

.pricing-button.secondary {
    background: transparent;
    border: 2px solid #c6cd25;
    color: #c6cd25;
}

.pricing-button.secondary:hover {
    background: #c6cd25;
    color: #1a1a1a;
}

.pricing-footer {
    margin-top: 4rem;
}

.pricing-note {
    font-size: 16px;
    color: #bbbbbb;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-note i {
    color: #c6cd25;
}

/* Responsive Design for Pricing */
@media (max-width: 991.98px) {
    .pricing-container {
        padding: 60px 20px;
    }

    .pricing-title {
        font-size: 36px;
        line-height: 47px;
        margin: 1.5rem 0;
    }

    .pricing-description {
        font-size: 16px;
        line-height: 26px;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .pricing-item {
        padding: 30px 25px;
    }

    .pricing-item.featured {
        transform: none;
    }

    .pricing-item.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 767.98px) {
    .pricing-container {
        padding: 40px 15px;
    }

    .pricing-title {
        font-size: 28px;
        line-height: 36px;
        margin: 1rem 0;
    }

    .pricing-description {
        font-size: 15px;
        line-height: 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-item {
        padding: 25px 20px;
    }

    .pricing-item-title {
        font-size: 20px;
    }

    .pricing-price {
        font-size: 16px;
    }

    .pricing-item-description {
        font-size: 15px;
    }

    .pricing-features li {
        font-size: 14px;
    }

    .pricing-button {
        padding: 12px 24px;
        font-size: 15px;
        min-width: 140px;
    }

    .pricing-note {
        font-size: 14px;
        flex-direction: column;
        text-align: center;
    }
}

/* ServicesPackagesSection Component Styles - Immersive overlay animations */
.services-packages-section {
    position: relative;
    padding: 80px 0;
    background-color: #121212;
    min-height: 500px;
}

.services-packages-container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 15px;
}

.services-packages-header {
    margin-bottom: 4rem;
}

.services-packages-category {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c6cd25;
    font-weight: 600;
}

.services-packages-label,
.services-packages-subtitle {
    color: #c6cd25;
}

.services-packages-divider {
    margin: 0 15px;
    color: #c6cd25;
}

.services-packages-title {
    font-size: 48px;
    line-height: 62px;
    font-weight: 600;
    color: #dddddd;
    margin: 2rem 0;
}

.services-packages-description {
    font-size: 18px;
    line-height: 28px;
    color: #bbbbbb;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.services-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

/* Service Package Item Styles - New overlay approach */
.service-package-item {
    background-color: #1e1e1e;
    border-radius: 12px;
    height: 320px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #333;
    cursor: pointer;
}

.service-package-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(199, 223, 47, 0.6);
}

/* Base content - always visible */
.service-package-content {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.service-package-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c6cd25 0%, #9fb824 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-package-icon i {
    font-size: 20px;
    color: #1a1a1a;
}

.service-package-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-package-summary {
    font-size: 14px;
    line-height: 1.5;
    color: #cccccc;
    margin-bottom: 20px;
}

/* Overlay - appears on hover */
.service-package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 223, 47, 0.2);
}

.service-package-item:hover .service-package-overlay {
    opacity: 1;
    transform: translateY(0);
}

.service-package-item:hover .service-package-content {
    opacity: 0.3;
}

.service-package-overlay-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: slideInContent 0.6s ease 0.2s both;
}

.service-package-overlay-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(199, 223, 47, 0.3);
}

.service-package-overlay-header .service-package-icon {
    margin-right: 15px;
    margin-bottom: 0;
    transform: scale(0.9);
}

.service-package-overlay-header .service-package-title {
    margin-bottom: 0;
    font-size: 16px;
}

.service-package-details {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c6cd25 #2a2a2a;
}

.service-package-details::-webkit-scrollbar {
    width: 4px;
}

.service-package-details::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 2px;
}

.service-package-details::-webkit-scrollbar-thumb {
    background: #c6cd25;
    border-radius: 2px;
}

.service-package-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-package-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.5;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInListItem 0.4s ease forwards;
}

.service-package-details li:nth-child(1) {
    animation-delay: 0.3s;
}

.service-package-details li:nth-child(2) {
    animation-delay: 0.4s;
}

.service-package-details li:nth-child(3) {
    animation-delay: 0.5s;
}

.service-package-details li:before {
    content: "▶";
    color: #c6cd25;
    font-size: 8px;
    position: absolute;
    left: 0;
    top: 4px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.service-package-details li:hover:before {
    transform: rotate(90deg);
}

.service-package-details li:last-child {
    margin-bottom: 0;
}

/* Animations */
@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design for ServicesPackagesSection */
@media (max-width: 991.98px) {
    .services-packages-section {
        padding: 60px 0;
    }

    .services-packages-container {
        padding: 0 20px;
    }

    .services-packages-title {
        font-size: 36px;
        line-height: 47px;
        margin: 1.5rem 0;
    }

    .services-packages-description {
        font-size: 16px;
        line-height: 26px;
    }

    .services-packages-grid {
        gap: 1.5rem;
    }

    .service-package-item {
        height: 300px;
    }

    .service-package-content {
        padding: 35px 25px;
    }

    .service-package-overlay-content {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .services-packages-section {
        padding: 40px 0;
    }

    .services-packages-container {
        padding: 0 15px;
    }

    .services-packages-title {
        font-size: 28px;
        line-height: 36px;
        margin: 1rem 0;
    }

    .services-packages-description {
        font-size: 15px;
        line-height: 24px;
    }

    .services-packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-package-item {
        height: 280px;
    }

    .service-package-content {
        padding: 30px 20px;
    }

    .service-package-title {
        font-size: 16px;
    }

    .service-package-summary {
        font-size: 13px;
    }

    .service-package-overlay-content {
        padding: 20px;
    }

    .service-package-details li {
        font-size: 12px;
        margin-bottom: 14px;
    }
}

/* Footer Component Styles - Matching NewDesign.razor */

.footer-inner {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    box-sizing: border-box;
    margin: auto;
}

.footer-section {
    background: #151414 !important;
    color: white !important;
    padding: 4rem 0 2rem 0;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #2a2a2a;
    min-height: 100vh;
    flex-direction: column;
    display: flex;
    justify-content: space-between; /* dytter bottom heilt ned */
}

.footer-content {
    /*max-width: 1200px;*/
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-contact-section {
    margin: auto;
}

.footer-content {
    flex: 1; /* tek opp ledig plass */
}

.footer-title {
    font-size: 3rem !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
    letter-spacing: 1px;
    color: #dddddd !important;
}

.footer-text {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem !important;
    color: #cccccc !important;
    font-weight: 300;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    font-size: 1.1rem !important;
    color: #cccccc !important;
    font-weight: 300;
}

.footer-contact-item strong {
    color: white !important;
    margin-right: 0.5rem;
}

.footer-link {
    color: #c6cd25 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4dd4e7 !important;
    text-decoration: none !important;
}

.footer-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: auto;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    margin-bottom: 1.5rem;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c6cd25;
    font-weight: 600;
}

.footer-nav-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-nav-list li {
    margin-bottom: 0.75rem;
}

.footer-nav-link {
    color: #cccccc !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 300;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-nav-link:hover {
    color: #c6cd25 !important;
    text-decoration: none !important;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 2rem;
}

.footer-bottom-content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    text-align: left;
}

.footer-brand-title {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    color: white !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: 1px;
}

.footer-brand-subtitle {
    font-size: 0.9rem !important;
    color: #cccccc !important;
    margin: 0 !important;
    font-weight: 300;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    font-weight: 300;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #cccccc !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(30, 198, 217, 0.1) !important;
    color: #c6cd25 !important;
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

/* Mobile responsive for new footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 1rem 1.5rem 1rem;
    }

    .footer-contact-section {
        margin: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-navigation {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .footer-nav-column {
        align-self: stretch;
        min-width: 0;
        text-align: left;
    }

    .footer-title {
        font-size: 2rem !important;
        font-weight: 500 !important;
        color: #dddddd;
    }

    .footer-text {
        font-size: 1rem !important;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        justify-self: center;
    }

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

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


.services-packages-section {
    background: #151414;
    padding: 4rem 1.5rem;
    color: #ffffff;
}

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

.services-title {
    font-family: monospace;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 0.5rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    height: auto;
    min-height: fit-content;
    z-index: 1;
}

.service-card:hover:not(.expanded) {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-card.expanded {
    background: rgba(255, 255, 255, 0.08);
    transform: none;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    z-index: 10;
    border-radius: 0.5rem 0.5rem 0 0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.expand-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.service-card.expanded .expand-icon {
    transform: rotate(180deg);
}

.service-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2a2a2a;
    border: none;
    border-radius: 0 0 0.5rem 0.5rem;
    backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    padding: 0 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 11;
}

.service-card.expanded .service-content {
    max-height: 400px;
    opacity: 1;
    padding: 1.5rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Smooth grid adjustment */
.services-grid {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .services-packages-section {
        padding: 2rem 1rem;
    }

    .services-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .service-card {
        padding: 1.25rem;
    }

    .service-card.expanded .service-content {
        max-height: 300px;
    }
}

/* Experience Section Image Overlay Styles */
.image-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.section-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.image-section .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.image-section .default-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.image-section .hero-subtitle {
    font-size: 1.25rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .image-section .default-title {
        font-size: 2rem;
    }

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

    .image-section {
        height: 50vh;
        min-height: 300px;
    }
}

/* Ski Tracks Connector - Between Philosophy and Experience Sections */
.ski-tracks-connector {
    position: relative;
    height: 120px;
    background: transparent;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    margin: 2rem 0;
    /* Make visible by default and add animation */
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.ski-tracks-connector.visible {
    opacity: 1;
    transform: translateY(0);
}

.ski-tracks-svg {
    width: 150px;
    height: 120px;
}

.ski-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 3;
    stroke-linecap: round;
    opacity: 1;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    transition: opacity 0.5s ease, stroke-dashoffset 2s ease;
}

.ski-tracks-connector.visible .ski-track {
    opacity: 1;
    stroke-dashoffset: 0;
}

.ski-track.single {
    transition-delay: 0.3s;
}

/* Mobile responsive for ski tracks */
@media (max-width: 768px) {
    .ski-tracks-connector {
        height: 80px;
    }

    .ski-tracks-svg {
        width: 120px;
        height: 80px;
    }

    .ski-track {
        stroke-width: 2.5;
    }
}

/* Enhanced Experience Section Styles - Redesigned Text Overlay */
.experience-section {
    padding: 0 !important;
    min-height: 100vh !important;
    position: relative;
    overflow: hidden;
}

.experience-image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.experience-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6) contrast(1.2);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.experience-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 2rem;
    box-sizing: border-box;
}

.experience-text-overlay {
    text-align: center;
    color: white;
}

.overlay-main-text {
    margin-bottom: 2rem;
}

.overlay-number {
    display: block;
    font-size: 8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 0.8;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.overlay-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.overlay-tagline {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.tagline-highlight {
    color: #c6cd25;
    font-weight: 700;
}

/* Detailed Information Section */
.info-detail-section {
    min-height: auto !important;
    padding: 4rem 2rem !important;
    background: #151414 !important;
}

.info-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 2rem auto 0;
    align-items: start;
}

.info-detail-text {
    max-width: none;
}

.info-detail-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #c6cd25;
}

.detail-stat-item {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.detail-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #c6cd25;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.detail-stat-label {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Competence Grid - 2x2 Fixed Size Layout */
.competence-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.competence-item {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 2rem !important;
    border-radius: 8px !important;
    text-align: center !important;
    transition: transform 0.3s ease;
    color: white !important;
    height: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.competence-item:hover {
    transform: translateY(-5px) !important;
}

.competence-item h3 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
    color: #c7df2f !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.competence-item p {
    color: white !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin: 0 !important;
}

/* Mobile responsive for competence grid */
@media (max-width: 768px) {
    .competence-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
        max-width: none;
    }

    .competence-item {
        height: 160px !important;
        padding: 1.5rem !important;
    }

    .competence-item h3 {
        font-size: 1.2rem !important;
    }

    .competence-item p {
        font-size: 0.9rem !important;
    }
}

/* Experience Information Card Section */
.experience-info-section {
    min-height: 80vh !important;
}

/* Mission Style Section - 384k.ventures inspired */
.mission-style-section {
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: left !important;
}

.mission-header {
    margin-bottom: 3rem !important;
}

.mission-eyebrow {
    display: block !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #c7df2f !important;
    margin-bottom: 1rem !important;
}

.mission-title {
    font-size: 3.5rem !important;
    font-weight: 300 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    margin: 0 !important;
    letter-spacing: -0.02em !important;
}

.mission-content {
    margin: 3rem 0 !important;
}

.mission-text-large {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
    margin-bottom: 2rem !important;
    max-width: 800px !important;
}

.mission-text-regular {
    font-size: 1.125rem !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 1.5rem !important;
    max-width: 700px !important;
}

.mission-text-regular:last-child {
    margin-bottom: 0 !important;
}

.mission-stats {
    margin-top: 4rem !important;
    display: flex !important;
    gap: 4rem !important;
    flex-wrap: wrap !important;
}

.mission-stat {
    flex: 0 0 auto !important;
}

.mission-stat-number {
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    color: #c7df2f !important;
    line-height: 1 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
}

.mission-stat-label {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: rgba(255, 255, 255, 0.7) !important;
    display: block !important;
}

/* Mobile responsive for mission style section */
@media (max-width: 768px) {
    .mission-style-section {
        max-width: none !important;
        margin: 0 1rem !important;
    }

    .mission-title {
        font-size: 2.5rem !important;
    }

    .mission-text-large {
        font-size: 1.25rem !important;
    }

    .mission-text-regular {
        font-size: 1rem !important;
    }

    .mission-stats {
        gap: 2rem !important;
        margin-top: 3rem !important;
    }

    .mission-stat-number {
        font-size: 2rem !important;
    }
}

/* Philosophy Section Specific Wrapper - Centers text only in philosophy section */
.philosophy-section-wrapper .mission-text-large,
.philosophy-section-wrapper .mission-text-regular {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Subtle Experience Section - Classic Design */
.experience-section-subtle {
    padding: 0 !important;
    min-height: 100vh !important;
    position: relative;
    overflow: hidden;
}

.experience-image-container-subtle {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.experience-image-subtle {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
}

.experience-overlay-subtle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.experience-content-subtle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 3;
    padding: 4rem;
    box-sizing: border-box;
}

.experience-text-left {
    max-width: 500px;
    color: white;
}

.experience-years {
    margin-bottom: 2rem;
}

.years-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.years-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1px;
    opacity: 0.9;
}

.experience-description {
    margin-bottom: 2.5rem;
}

.experience-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.experience-details {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.experience-achievements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-item {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.achievement-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c6cd25;
}

.achievement-label {
    font-size: 0.95rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.85;
}

/* Responsive Design for Subtle Experience Section */
@media (max-width: 768px) {
    .experience-content-subtle {
        padding: 2rem;
        justify-content: center;
        text-align: center;
    }

    .experience-text-left {
        max-width: 100%;
    }

    .years-number {
        font-size: 3rem;
    }

    .experience-subtitle {
        font-size: 1.25rem;
    }

    .experience-achievements {
        align-items: center;
    }

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

@media (max-width: 480px) {
    .experience-content-subtle {
        padding: 1.5rem;
    }

    .years-number {
        font-size: 2.5rem;
    }

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

    .experience-details {
        font-size: 0.9rem;
    }
}

/* Mobile responsive for simple connectors */
@media (max-width: 768px) {
    .simple-connector-line {
        height: 40px;
    }
}

.not-found {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #151414 !important;
    color: #ffffff !important;
    padding: 0 !important;
}

.not-found-inner {
    max-width: 720px;
    padding: 2rem;
}

.not-found-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.not-found-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #cccccc;
    margin: 0 0 2rem 0;
}