section {
    position: relative;
}

/* Desktop Responsive Padding */
.container-xl {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 1024px) {
    .container-xl {
        padding-left: 64px;
        padding-right: 64px;
    }
}

@media (min-width: 1440px) {
    .container-xl {
        padding-left: 165px;
        padding-right: 165px;
    }
}

@media (min-width: 1920px) {
    .container-xl {
        padding-left: 330px;
        padding-right: 330px;
    }
}


.section-title {
    color: rgba(255, 255, 255, 0.6);
    text-overflow: ellipsis;
    font-family: Georgia;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 32px;
}

.floating-menu {
    position: absolute;
    right: 10px;
    bottom: 0;
}


.home-screen {
    background-color: #121212;
    overflow: visible;
}

/* Hero Wrapper */
.hero-wrapper {
    height: min-content;
    min-height: 100vh;
    width: auto;
    display: contents;
    overflow: hidden;
    position: relative;
}

/* Hero Container */
.hero-container {
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0px;
    height: min-content;
    justify-content: center;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
}

/* Hero Section */
.hero-section {
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0px;
    height: 100vh;
    justify-content: center;
    overflow: visible;
    padding: 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1;
}

/* Hero Image Container */
.hero-image-container {
    position: absolute;
    border-radius: inherit;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Gradient overlay on hero image container */
.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    display: block;
    z-index: 2;
    will-change: opacity;
    backface-visibility: hidden;
    /* Gradient-specific properties */
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.20) 0%, rgba(20, 21, 22, 0.60) 100%);
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* Hero Image (video or img) */
.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center;
    object-fit: cover;
    /* Quality enhancement filters */
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Hero Content Wrapper (sibling of hero-image-container) */
.hero-content-wrapper {
    align-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex: 1 0 0px;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
    z-index: 2;
    justify-content: flex-end;
    max-width: 1920px;
    overflow: visible;
    padding: 40px;
    position: relative;
    width: 1px;
    margin-top: 20rem;
}

/* Remove margin-top in edit mode */
body.edit-mode-active .hero-content-wrapper,
body.editor-active .hero-content-wrapper {
    margin-top: 0 !important;
}

/* Hero Content Inner */
.hero-content-inner {
    display: contents;
}

/* Hero Text New */
.hero-text-new {
    height: auto;
    max-width: 730px;
    position: relative;
    width: 100%;
    gap: 16px;
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
    transform: none;
}

/* Hero Text h1 styles */
.hero-text h1 {
    color: #FFF8D7;
    text-align: center;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 101%;
    margin: 0;
}

/* Service edit button styles */
.service-edit-btn {
    position: absolute;
    top: -10px;
    right: 0px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.9);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Show edit buttons in editor mode */
body.editor-active .service-edit-btn {
    opacity: 1 !important;
}

/* ================================
   Desktop Hero - Same padding as about section
   ================================ */

@media (min-width: 1024px) {
    .hero-section {
        padding-left: 64px;
        padding-right: 64px;
        flex-direction: row-reverse;
    }

    .hero-image-container {
        width: 50%;
        left: auto;
        position: relative;
        height: 100%;
    }

    .hero-content-wrapper {
        margin-top: 0;
    }

    .hero-text-new {
        margin: auto;
        width: 50%;
    }

    .hero-text h1 {
        font-size: 60px;
    }

    .brief-container {
        font-size: 40px;
    }
}

@media (min-width: 1440px) {
    .hero-section {
        padding-left: 165px;
        padding-right: 165px;
    }
}

@media (min-width: 1920px) {
    .hero-section {
        padding-left: 330px;
        padding-right: 330px;
    }
}

/* ================================
   Content Section (sibling of hero-section)
   ================================ */

/* Content Section */
.content-section {
    align-items: center;
    background-color: #121212;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0px;
    height: min-content;
    justify-content: center;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 1;
}

/* Content Container */
.content-container {
    align-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex: 1 0 0px;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    height: min-content;
    justify-content: center;
    max-width: 1920px;
    overflow: visible;
    position: relative;
    width: 1px;
}

/* Content Inner */
.content-inner {
    align-content: center;
    align-items: center;
    display: flex;
    flex: 1 0 0px;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
    height: min-content;
    justify-content: center;
    overflow: visible;
    padding: 0;
    position: relative;
    width: 1px;
}

/* Content Text Wrapper */
.content-text-wrapper {
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
    transform: none;
}

/* Content Text Item */
.content-text-item {
    --framer-link-text-color: #0099ff;
    --framer-link-text-decoration: underline;
    flex: none;
    height: auto;
    position: relative;
    white-space: pre-wrap;
    width: 100%;
    word-break: break-word;
    word-wrap: break-word;
    color: #000000;
}

/* Legacy Hero Text Content (for backwards compatibility) */
.hero-text-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 90px 20px;
}

/* Legacy hero classes (for backwards compatibility) */
.hero .profile-pic {
    border-radius: 50%;
    width: 124px;
    height: 124px;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 90px 0;
    font-size: 18px;
}

/* Contact Me Button Section */
.contact-me-section {
    background-color: #121212;
}

.contact-me-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 120px;
}

/* Contact Me Button Styles */
.contact-me-button {
    position: relative;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff8d7;
    color: #fff8d7;
    cursor: pointer;
    overflow: hidden;
    transition: none;
    /* GSAP will handle animation */
    z-index: 10;
    pointer-events: auto;
    /* Allow clicks */
    --button-fill: 0%;
}

.contact-me-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--button-fill, 0%);
    background-color: #fff8d7;
    transition: none;
    /* GSAP will handle animation */
    z-index: 0;
}

.contact-me-text {
    position: relative;
    font-family: 'Zalando Sans SemiExpanded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 26.62px;
    letter-spacing: 0;
    text-align: center;
    display: block;
    z-index: 2;
    transition: none;
    /* GSAP will handle animation */
}

.contact-me-button:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .contact-me-wrapper {
        padding-bottom: 80px;
    }
    
    .contact-me-button {
        width: 120px;
        height: 120px;
    }
    
    .contact-me-text {
        font-size: 18px;
        line-height: 22px;
    }
}

/* Contact Section Padding */
.contact {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .contact {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.hero-content .lang-label {
    position: absolute;
    top: 300px;
    left: 0;
    padding: 5px;
    background: rgba(18, 18, 18, 0.59);
}

.hero-content .hero-text {
    margin-top: 5px;
    margin-bottom: 150px;
}

/* Brief Container styles */
.brief-container {
    color: #FFF8D7;
    text-align: center;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    width: 90%;
    margin: auto;
}

.hero-content .brief-container {
    text-align: center;
}

.hero-content .brief-container p {
    width: 250px;
}

.profile-image-container {}


/* reels section */

.reels {
    padding-bottom: 120px;
}

.intro {
    margin-bottom: 95px;
    padding-left: 10px;
}


.intro-video {
    width: 202px;
    height: 334px;
    max-width: unset;
    object-fit: cover;
}

.company-list .scroller__inner {
    display: flex;
    align-items: flex-start;
}

.company-list img,
.company-list video {
    width: 85vw;
    height: calc(85vw * 1.65);
    margin-right: 10px;
    /* Spacing between items */
    object-fit: cover;
    transition: transform 0.3s ease;
    max-width: unset;
    /* important */
}

.company-list a {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
    pointer-events: auto;
    /* ensure clicks work on carousel items */
}

#myScroller {
    width: 100%;
    /* or a fixed width if you prefer */
    overflow-x: hidden;
    /* hide scrollbar for cleaner look */
    white-space: nowrap;
    /* ensures items don't wrap to a new line */
    position: relative;
    /* optional, just for positioning */
    direction: ltr;
    cursor: grab;
    /* show grab cursor when hovering */
    user-select: none;
    /* prevent text selection during drag */
    -webkit-overflow-scrolling: touch;
    /* smooth scrolling on iOS */
}

#myScroller:active {
    cursor: grabbing;
    /* show grabbing cursor when dragging */
}

/* Each reel in the overlay is a "full-screen snap" */
.reel-page {
    width: 100%;
    height: 100vh;
    /* full viewport height */
    scroll-snap-align: start;
    /* each reel "snaps" to top when scrolling */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
    /* or whatever background you prefer */
}

/* For videos and images inside the reel overlay */
.reel-content {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Example: close “X” button at top-right (optional).
   You can rely on the built-in Bootstrap close button if you prefer. */
.reel-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 999;
}

/*ABOUT SECTION - Bio Section Matching Figma Design*/
.about {
    padding: 80px 0;
}

@media screen and (min-width: 768px) {
    .about {
        padding-left: 0;
        padding-right: 0;
    }
    
    .about .bio-section {
        border: none !important;
    }
}

/* Desktop Section Spacing - 200px between sections */
@media (min-width: 1024px) {

    /* Enable flexbox ordering for section reordering */
    .home-screen {
        display: flex;
        flex-direction: column;
    }

    .about {
        padding: 200px 64px;
    }

    .reels {
        padding-bottom: 200px;
    }

    .services-section {
        padding: 200px 20px;
    }

    .feedback-section {
        padding: 180px 0px 0px 0px !important;
        order: 6;
        /* Move feedback after gallery on desktop */
    }

    .gallery-section {
        padding: 200px 0;
        order: 5;
        /* Gallery comes before feedback on desktop */
    }

    .contact-section {
        padding: 200px 20px;
        order: 7;
        /* Contact section stays at the end */
    }

    .newsletter.footer-section {
        order: 8;
        /* Footer after contact */
        display: block;
        /* Show footer on desktop */
    }

    /* Bio Profile Pic - Desktop Size */
    .bio-profile-pic-container {
        min-width: 167px !important;
        min-height: 167px !important;
        max-width: 167px !important;
        max-height: 167px !important;
        width: 167px !important;
        height: 167px !important;
    }

    /* Desktop Font Sizes */

    /* About Section Title - 45px */
    .bio-heading,
    .about .bio-heading {
        font-size: 45px !important;
    }

    /* About Body Text - 28px */
    .bio-body,
    .about .bio-body,
    .bio-body p,
    .about .bio-body p {
        font-size: 28px !important;
        line-height: 142% !important;
    }

    /* Followers Count - 36px */
    .followers-count-new {
        font-size: 36px !important;
    }

    /* Services Section Title - 60px */
    .services-heading {
        font-size: 60px !important;
    }

    /* Contact Me Title - 60px */
    .contact-heading {
        font-size: 60px !important;
    }

    /* Contact Me Button - Desktop Size */
    .contact-me-button {
        width: 250px !important;
        height: 250px !important;
    }

    /* Contact Me Button Text - 36px */
    .contact-me-text {
        font-size: 36px !important;
        line-height: 142% !important;
    }

    .contact-cta-new {
        font-size: 36px !important;
    }

    /* Services Section - Desktop Responsive Padding */
    .services-section {
        padding-left: 64px;
        padding-right: 64px;
    }

    /* Feedback Section - Desktop Responsive Padding */
    .feedback-section {
        padding-left: 64px !important;
        padding-right: 64px !important;
    }

    /* Services Section - Match Figma Spacing */
    .service-title-text {
        font-size: 36px !important;
        margin-bottom: 40px !important;
    }

    .service-number {
        font-size: 24px !important;
        margin-bottom: 40px !important;
    }
}

@media (min-width: 1440px) {

    /* About Section - 1440px Padding */
    .about {
        padding-left: 165px;
        padding-right: 165px;
    }

    /* Services Section - 1440px Padding */
    .services-section {
        padding-left: 165px;
        padding-right: 165px;
    }

    /* Feedback Section - 1440px Padding */
    .feedback-section {
        padding-left: 165px !important;
        padding-right: 165px !important;
    }
}

@media (min-width: 1920px) {

    /* About Section - 1920px Padding */
    .about {
        padding-left: 330px;
        padding-right: 330px;
    }

    /* Services Section - 1920px Padding */
    .services-section {
        padding-left: 330px;
        padding-right: 330px;
    }

    /* Feedback Section - 1920px Padding */
    .feedback-section {
        padding-left: 330px !important;
        padding-right: 330px !important;
    }
}

/* Bio Section - Clean Structure Matching Figma */
.about .bio-section {
    width: 100%;
    margin: 0 auto;
}

/* Bio Text Frame */
.bio-text-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.bio-heading,
.about .bio-heading {
    font-family: 'Zalando Sans SemiExpanded', sans-serif !important;
    font-weight: 400 !important;
    font-size: 30px;
    line-height: 39.3px !important;
    letter-spacing: 0.3px !important;
    color: #fff8d7;
    text-align: center;
    margin: 0 !important;
}

/* Bio Body Text - Match Figma Exactly */
.bio-body,
.about .bio-body {
    font-family: 'Zalando Sans SemiExpanded', sans-serif !important;
    font-weight: 300 !important;
    font-size: 20px;
    line-height: 26.2px;
    letter-spacing: 0.2px !important;
    color: #fff8d7;
    text-align: center;
    margin: 0 !important;
}

.bio-body p,
.about .bio-body p {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Zalando Sans SemiExpanded', sans-serif !important;
    font-weight: 300 !important;
    font-size: 20px;
    line-height: 26.2px;
    letter-spacing: 0.2px !important;
    color: #fff8d7;
    text-align: center;
}

/* Followers Section */
.followers-section {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 24px;
    position: relative;
}

.followers-divider-line,
.bio-divider-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 248, 215, 0.3);
    width: 0;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.followers-divider-line-visible,
.bio-divider-line-visible {
    width: 100%;
}

.followers-count-new {
    font-family: 'Zalando Sans SemiExpanded', sans-serif !important;
    font-weight: 300 !important;
    font-size: 24px;
    line-height: 26.2px;
    letter-spacing: 0.2px !important;
    color: #fff8d7;
    white-space: nowrap;
    padding: 0 16px;
}

/* Desktop responsive styles for bio section */
@media (min-width: 768px) {
    .about .bio-heading {
        text-align: left !important;
        font-size: 30px;
        line-height: 39.3px !important;
        letter-spacing: 0.3px !important;
    }

    .about .bio-body {
        font-size: 18px !important;
        line-height: 26.2px;
        letter-spacing: 0.2px !important;
        text-align: left !important;
    }

    .about .bio-body p {
        font-size: 18px !important;
        line-height: 26.2px;
        letter-spacing: 0.2px !important;
        text-align: left !important;
    }

    .followers-count-new {
        font-size: 24px;
        line-height: 26.2px !important;
        letter-spacing: 0.2px !important;
    }

    .bio-text-frame {
        align-items: flex-start;
    }

    .bio-profile-pic-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .bio-profile-pic-container {
        margin-left: auto;
        margin-right: 20px;
        max-width: 105px;
        max-height: 105px;
        min-width: 105px;
        min-height: 105px;
        border-radius: 50%;
    }

    .bio-profile-pic {
        min-width: 167px !important;
        min-height: 167px !important;
        max-width: 167px !important;
        max-height: 167px !important;
        border-radius: 50%;
        object-fit: cover;
    }
}

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

.services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-direction: row-reverse;
}

.services-title-container {
    margin-left: 20px;
}

.services-heading {
    color: #FFF8D7;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 125%;
    margin: 0;
}

.services-divider {
    flex: 1;
    display: flex;
    align-items: center;
}

.services-divider-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 248, 215, 0.3);
    width: 0;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-divider-line-visible {
    width: 100%;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1120px;
    margin: 0 auto;
}

.service-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.service-link-wrapper:hover {
    transform: translateX(10px);
}

.service-link-wrapper:hover .service-title-text {
    opacity: 0.6;
}

.service-link-wrapper:hover .service-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.service-item {
    padding: 24px 0;
}

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

.service-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service-text {
    flex: 1;
}

.service-number {
    color: rgba(255, 248, 215, 0.5);
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

.service-title-text {
    color: #FFF8D7;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    transition: color 0.3s ease;
}

.service-arrow-container {
    flex-shrink: 0;
    width: 69px;
    height: 69px;
    border-radius: 50%;
    background-color: #FFF8D7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-arrow {
    color: #121212;
    font-size: 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 16px;
    }

    .services-header {
        margin-bottom: 30px;
    }

    .services-heading {
        font-size: 36px;
        line-height: 40px;
    }

    .service-title-text {
        font-size: 24px;
    }

    .service-arrow-container {
        width: 56px;
        height: 56px;
    }
}

/* Contact Section Container */
.contact-section {
    padding: 120px 20px;
    background-color: #121212;
}

/* Rest of contact section styles... */
@media (min-width: 1024px) {

    /* Desktop Contact Section - Figma Design */
    .contact-desktop-wrapper {
        width: 100%;
        max-width: 1920px;
        margin: 0 auto;
        padding: 0 330px;
    }

    /* Contact Upper Line (Divider + Title like Followers Section) */
    .contact-upper-line {
        width: 100%;
        margin-bottom: 100px;
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .contact-divider-line {
        flex: 1;
        height: 1px;
        background-color: rgba(255, 248, 215, 0.3);
        width: 0;
        transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .contact-divider-line-visible {
        width: 100%;
    }

    .contact-title-container {
        margin-left: 20px;
        flex-shrink: 0;
    }

    .contact-desktop-title {
        color: #FFF8D7;
        font-family: "Zalando Sans SemiExpanded", sans-serif;
        font-size: 60px;
        font-weight: 400;
        line-height: 66px;
        margin: 0;
        white-space: nowrap;
    }

    .contact-desktop-content {
        display: flex;
        gap: 70px;
        align-items: flex-start;
        justify-content: center;
    }

    .contact-desktop-left {
        flex: 0 0 515px;
        display: flex;
        flex-direction: column;
        gap: 33px;
    }

    .contact-subtitle {
        color: #FFF8D7;
        font-family: "Zalando Sans SemiExpanded", sans-serif;
        font-size: 35px;
        font-weight: 300;
        line-height: 43px;
        margin: 0;
    }

    .contact-info-group {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .contact-info-label {
        color: #FFF8D7;
        font-family: "Zalando Sans SemiExpanded", sans-serif;
        font-size: 20px;
        font-weight: 400;
        line-height: 24.28px;
        margin: 0 0 4px 0;
    }

    .contact-info-details,
    .contact-info-details-wrapper p {
        color: #FFF8D7;
        font-family: "Zalando Sans SemiExpanded", sans-serif;
        font-size: 20px;
        font-weight: 400;
        line-height: 24.28px;
        margin: 0;
    }

    .contact-social-media {
        display: flex;
        gap: 20px;
        align-items: center;
        margin-top: 28px;
    }

    .contact-social-link {
        color: #FFF8D7;
        font-size: 32px;
        text-decoration: none;
        transition: color 0.3s ease;
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-social-link:hover {
        color: #fff;
    }

    .contact-copyright {
        margin-top: 40px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 248, 215, 0.6);
    }

    .contact-copyright p {
        color: #FFF8D7;
        font-family: "Zalando Sans SemiExpanded", sans-serif;
        font-size: 20px;
        font-weight: 400;
        line-height: 24.28px;
        margin: 0;
    }

    .contact-location {
        color: #FFF8D7;
        font-family: "Zalando Sans SemiExpanded", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 24.24px;
        text-align: center;
        margin: 40px 0 0 0;
    }

    /* Desktop Form Styling - Figma Design */
    .contact-desktop-right {
        flex: 1;
        max-width: 565px;
    }

    .contact-form-desktop {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .contact-form-field-desktop input,
    .contact-form-field-desktop textarea {
        width: 100%;
        opacity: 0.6;
        background: transparent;
        border: 1px solid rgba(255, 248, 215, 0.8);
        border-radius: 11px;
        color: #FFF8D7;
        font-family: "Zalando Sans SemiExpanded", sans-serif;
        font-size: 18px;
        font-weight: 300;
        letter-spacing: 0.9px;
        line-height: 18.18px;
        padding: 16px;
        outline: none;
        transition: border-color 0.3s ease;
    }

    .contact-form-field-desktop input:focus,
    .contact-form-field-desktop textarea:focus {
        border-color: #FFF8D7;
    }

    .contact-form-field-desktop input::placeholder,
    .contact-form-field-desktop textarea::placeholder {
        color: #FFF8D7;
        font-family: "Zalando Sans SemiExpanded", sans-serif;
        font-size: 18px;
        font-weight: 300;
        letter-spacing: 0.9px;
        line-height: 18.18px;
    }

    .contact-form-textarea-desktop textarea {
        resize: vertical;
        min-height: 139px;
        padding-top: 50px;
    }

    .contact-submit-btn-desktop {
        width: 100%;
        background: transparent;
        color: #FFF8D7;
        border: 1px solid #FFF8D7;
        border-radius: 11px;
        padding: 16px 24px;
        font-family: "Zalando Sans SemiExpanded", sans-serif;
        font-size: 23px;
        font-weight: 500;
        line-height: 23.23px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .contact-submit-btn-desktop:hover {
        background: rgba(255, 248, 215, 0.1);
        transform: translateY(-2px);
    }

    .contact-tools-desktop {
        display: flex;
        gap: 25px;
        justify-content: center;
        margin-top: 24px;
    }

    .contact-tool-btn-desktop {
        width: 57px;
        height: 57px;
        border-radius: 50%;
        background: transparent;
        border: 1px solid rgba(255, 248, 215, 0.7);
        color: #FFF8D7;
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .contact-tool-btn-desktop:hover {
        background: rgba(255, 248, 215, 0.1);
        border-color: #FFF8D7;
    }
}

@media (min-width: 1440px) {
    .contact-desktop-wrapper {
        padding: 0 165px;
    }
}

@media (max-width: 1439px) and (min-width: 1024px) {
    .contact-desktop-wrapper {
        padding: 0 64px;
    }
}

/* Bio Section - Clean Structure Matching Figma */
.about .bio-section {
    width: 100%;
    margin: 0 auto;
}

.bio-upper-line {
    width: 100%;
    margin-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.bio-divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 248, 215, 0.3);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.bio-divider.bio-divider-visible {
    transform: scaleX(1);
    opacity: 1;
}

.bio-profile-pic {
    border-radius: 50%;
    object-fit: cover;
    margin-left: 25px;
    display: block;
    max-width: 105px;
    max-height: 105px;
    min-width: 105px;
    min-height: 105px;
}

.bio-text-frame {
    width: 100%;
    padding-top: 0;
}


.bio-heading,
.about .bio-heading {
    font-family: 'Zalando Sans SemiExpanded', sans-serif !important;
    font-weight: 400 !important;
    font-size: 30px;
    line-height: 39.3px !important;
    letter-spacing: 0.3px !important;
    color: #fff8d7;
    text-align: left !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    white-space: normal !important;
}

/* Bio Body Text - Match Figma Exactly */
.bio-body,
.about .bio-body {
    font-family: 'Zalando Sans SemiExpanded', sans-serif !important;
    font-weight: 300 !important;
    font-size: 20px;
    line-height: 26.2px;
    letter-spacing: 0.2px !important;
    color: #fff8d7;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bio-body p,
.about .bio-body p {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Zalando Sans SemiExpanded', sans-serif !important;
    font-weight: 300 !important;
    font-size: 20px;
    line-height: 26.2px;
    letter-spacing: 0.2px !important;
    color: #fff8d7;
}

/* Followers Section */
.followers-section {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 24px;
    position: relative;
}

.followers-divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 248, 215, 0.3);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.followers-divider.followers-divider-visible {
    transform: scaleX(1);
    opacity: 1;
}

.followers-count-new {
    font-family: 'Zalando Sans SemiExpanded', sans-serif !important;
    font-weight: 300 !important;
    font-size: 24px;
    line-height: 26.2px;
    letter-spacing: 0.2px !important;
    color: #fff8d7;
    text-align: left !important;
    padding: 0 !important;
    margin-left: 25px;
    white-space: nowrap;
}

.followers-count-new span {
    width: 100%;
    display: block;
    text-align: right;
}

.intro-brief {
    font-size: clamp(28px, 4vw, 45px);
}

/*LINKS AND MORE*/
/* Services Section - New Design */
.services-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #121212;
}

/* Services Upper Line (Title + Divider like Bio) */
.services-upper-line {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.services-title-container {
    margin-left: 20px;
}

.services-heading {
    font-family: 'Zalando Sans SemiExpanded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 50.6px;
    letter-spacing: 0;
    color: #fff8d7;
    margin: 0;
    text-align: left;
}

.services-divider-line {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 248, 215, 0.3);
    width: 0;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-divider-line-visible {
    width: 100%;
}

/* Hide old title wrapper if it exists */
.services-title-wrapper {
    display: none;
}

.services-title {
    display: none;
}

.services-list {
    max-width: 100%;
    margin: 0 auto;
}

.service-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 12px 0;
    transition: opacity 0.3s ease;
    width: 100%;
}

.service-link-wrapper:hover {
    opacity: 0.8;
}

/* Text Wrapper: Number + Title in column */
.service-text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.service-number {
    font-family: 'Zalando Sans SemiExpanded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    font-size: 18px;
    opacity: 0.6;
    font-style: normal;
    line-height: 101%;
    letter-spacing: 0;
    color: #fff8d7;
    margin-bottom: 8px;
}

.service-title-text {
    font-family: 'Zalando Sans SemiExpanded', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 30px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0;
    color: #fff8d7;
    margin: 0;
}

.service-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 248, 215, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
}

.service-arrow i {
    font-size: 24px;
    color: #fff8d7;
}

/* Service Item Divider Animation */
.service-item-divider {
    width: 0%;
    height: 1px;
    background-color: rgba(255, 248, 215, 0.3);
    margin: 40px 0;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item-divider-visible {
    width: 100%;
}

/* Legacy link-box styles for backwards compatibility */
.link-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 235px;
}

.link-box.link-box-has-link {
    cursor: pointer;
}

.link-box .link-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    text-indent: -9999px;
    background: rgba(0, 0, 0, 0);
}

.link-box .gradiant {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
}

.link-box a {
    border-radius: 9px;
    border: 0.5px solid #FFF;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    padding: 10px 8px;
    z-index: 1;
}

.link-box .service-link {
    color: #FFF;
    text-align: center;
    font-family: Georgia;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 101%;
    z-index: 1;
}

@media screen and (max-width: 767px) {

    /* Services Section Mobile Styles */
    .services-section {
        padding: 0px 20px;
    }
    
    .services-upper-line {
        margin-bottom: 30px;
    }
    
    .services-heading {
        font-size: 36px;
        line-height: 40px;
    }
    
    .service-title-text {
        font-size: 24px;
        line-height: 30px;
    }
    
    .service-arrow {
        width: 40px;
        height: 40px;
    }
    
    .service-arrow i {
        font-size: 20px;
    }
    
    .service-item-divider {
        margin: 30px 0;
    }
    
    /* Bio Section Mobile Styles - Match Figma Exactly */
    .about .container.container-xl {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .about .bio-section {
        max-width: 100%;
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .bio-upper-line {
        width: 100%;
        margin-bottom: 0;
        position: relative;
        display: flex;  
        align-items: center;
    }

    .bio-profile-pic-container {
        margin-left: auto;
    margin-right: 20px;  
        max-width: 105px;
        max-height: 105px;
        min-width: 105px;
        min-height: 105px;
    border-radius: 50%;
}
    
    .bio-text-frame {
        width: 100%;
        align-items: flex-start;
        padding-left: 0;
    }

    /* Mobile: Keep same font sizes and left alignment as desktop per Figma */
    .about .bio-section .bio-heading,
    .about .bio-section .bio-text-frame .bio-heading,
    .about .bio-section .editable-container .bio-heading,
    .bio-heading.bio-heading,
    .about .bio-heading {
        text-align: left !important;
        font-size: 30px;
        line-height: 39.3px !important;
        letter-spacing: 0.3px !important;
    }

    .about .bio-section .bio-body,
    .about .bio-section .bio-text-frame .bio-body,
    .about .bio-section .editable-container .bio-body,
    .bio-body.bio-body,
    .about .bio-body {
        font-size: 18px !important;
        line-height: 26.2px;
        letter-spacing: 0.2px !important;
        text-align: left !important;
    }

    .about .bio-section .bio-body p,
    .about .bio-section .bio-text-frame .bio-body p,
    .about .bio-section .editable-container .bio-body p,
    .bio-body.bio-body p,
    .about .bio-body p {
        font-size: 18px !important;
        line-height: 26.2px;
        letter-spacing: 0.2px !important;
        text-align: left !important;
    }
    
    /* Force override any editor styles on mobile */
    .about .bio-section .editable-text-field.bio-heading,
    .about .bio-section .editable-text-field.bio-body {
        text-align: left !important;
    }

    /* Followers Section Mobile Styles */
    .followers-section {
        margin-top: 24px;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .followers-count-new {
        font-size: 24px;
        line-height: 26.2px !important;
        letter-spacing: 0.2px !important;
        text-align: left !important;
    }
}

/* Address Field Styling */
.address {
    color: #FFF8D7;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 101%;
}

@media screen and (max-width: 768px) {
    .address {
        color: #FFF8D7;
    }
}

/* Edit Reels button styling - only target reels section */
.reels .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.reels .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* Media Editor Selection Styles */
.media-item.selected {
    border: 2px solid #007bff !important;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.media-item.selected .card-img-top {
    opacity: 0.8;
}

/* "See More" button styling */
.tm-button {
    display: flex;
    width: 305.266px;
    height: 35.565px;
    padding: 8.891px;
    justify-content: center;
    align-items: center;
    border-radius: 10.867px;
    background: radial-gradient(50% 50% at 50% 50%, #212121 0%, #2D2D2D 100%);
    /*transition: background-color 0.2s ease;*/
    color: #fff;
    outline: none;
}

.tm-button:hover {
    background-color: #555;
}


.contact {
    margin-top: 60px;
}

@media screen and (min-width: 768px) {
    .contact {
        max-width: 600px;
        margin: 120px auto 0 auto;
    }
}


.contact-form-container {
    width: 100%;
    /* limit form width */
    margin: 0 auto;
    /* center horizontally */
    padding: 0px 1rem 5px;
    /* top/bottom & side padding */
    box-sizing: border-box;
    text-align: center;
    /* center the heading and button */

}

/* ===== Heading style ===== */
.form-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* ===== Form itself ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    /* spacing between fields */
}

/*
   Each "form-field" just wraps the input/textarea
   so we can apply a gradient border, etc.
*/
.form-field {
    position: relative;
}

/* ===== Inputs and Textarea styling ===== */
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1.1rem 1rem 0.6rem 1rem;
    /* extra top space for floating label */
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    outline: none;

    /* Optional: smooth transition for hover/focus effect */
    transition: border 0.25s ease, box-shadow 0.25s ease;
}

/* Placeholder color (optional) */
.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #ccc;
}

/* On focus, you can give a subtle gradient border */
.form-field input:focus,
.form-field textarea:focus {
    border: 1px solid #ffffffa6;
    /* slightly brighter border */
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

/* ===== Floating Label pattern ===== */
.floating-label {
    position: relative;
}

.floating-label label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.2s ease;
    padding: 0 4px;
    background: transparent;
}

/* Create a small background patch behind the floated label for better contrast */
.floating-label:has(input:focus),
.floating-label:has(textarea:focus),
.floating-label:has(input:not(:placeholder-shown)),
.floating-label:has(textarea:not(:placeholder-shown)) {
    /* This selector is used for label positioning - no visual changes needed */
    position: relative;
}

.floating-label input::placeholder,
.floating-label textarea::placeholder {
    color: transparent;
    /* hide placeholder; label acts as placeholder */
}

.floating-label input:placeholder-shown~label,
.floating-label textarea:placeholder-shown~label {
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0.8;
}

.floating-label input:focus~label,
.floating-label textarea:focus~label,
.floating-label input:not(:placeholder-shown)~label,
.floating-label textarea:not(:placeholder-shown)~label {
    top: -6px;
    transform: none;
    font-size: 0.75rem;
    color: #fff;
    opacity: 1;
    background: #121212;
    /* matches page bg so label sits over the border */
}

/* Rounded background chip behind floated label */
.floating-label label::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 1.2em;
    transform: translateY(-50%);
    background: transparent;
    z-index: -1;
    border-radius: 4px;
}

.floating-label input:focus~label::before,
.floating-label textarea:focus~label::before,
.floating-label input:not(:placeholder-shown)~label::before,
.floating-label textarea:not(:placeholder-shown)~label::before {
    background: #121212;
    /* same bg to mask the input border under label */
}

/* ===== Submit Button ===== */
.submit-button {
    cursor: pointer;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    transition: 0.3s ease;
}

.submit-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}


/*SOCIAL AND NEWSLETTER*/
/* Footer Section - Based on Figma Design */
.footer-section {
    background: #121212;
    color: #fff8d7;
    padding: 3rem 1rem;
    margin-bottom: 80px;
}

.newsletter-section.footer-content {
    background: transparent;
    text-align: left;
    padding: 0;
}

/* Footer Header: Divider + Heading */
.footer-header-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 33px;
}

/* Footer Divider (animated like bio/followers/contact) */
.footer-divider {
    display: block;
    flex: 1;
    height: 1px;
    background-color: rgba(255, 248, 215, 0.3);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.footer-divider.footer-divider-visible {
    transform: scaleX(1);
    opacity: 1;
}

.footer-heading {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-weight: 300;
    font-size: 30px;
    line-height: 43px;
    color: #fff8d7;
    text-align: right;
    margin: 0;
    flex-shrink: 0;
}

/* Animated Footer Content Divider */
.footer-content-divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 248, 215, 0.3);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    margin-top: 33px;
}

.footer-content-divider.footer-content-divider-visible {
    transform: scaleX(1);
    opacity: 1;
}

/* Footer Info Wrapper */
.footer-info-wrapper {
    margin-bottom: 32px;
}

.footer-info-group {
    margin-bottom: 24px;
}

.footer-info-group:last-child {
    margin-bottom: 0;
}

.footer-info-label {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24.28px;
    color: #fff8d7;
    margin: 0 0 8px 0;
}

.footer-info-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info-details {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 21.85px;
    color: #fff8d7;
    margin: 0;
}

/* Social icons row */
.social-links.footer-social {
    margin-top: 32px;
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    /* spacing between icons */
}

/* Each icon link */
.social-links a {
    color: #FFF8D7;
    font-size: 1.5rem;
    /* adjust icon size */
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: #fff;
    /* lighter on hover */
}

/* Legacy newsletter styles (kept for backwards compatibility) */
.newsletter-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.newsletter-form {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 25px;
}

.newsletter-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 200px;
    min-width: 0;
}

.newsletter-submit {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.newsletter-submit:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


/*fan-mail SECTION*/
.fan-mail {
    margin-bottom: 80px;
}

.fan-mail .section-title {
    color: #FFF;
    text-overflow: ellipsis;
    font-family: Georgia;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.overlap-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 25px;
    width: 241px;
    height: 124px;
    border-radius: 21px;
    border: 0.8px solid rgba(255, 255, 255, 0.15);
}

.overlap-group .comment-text {
    color: #FFF;
    font-family: Assistant;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.overlap-group .comment-username {
    color: #FFF;
    font-family: Georgia;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.overlap-group .comment-profile-pic {
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.carousel {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 50px auto;
    /* אנימציית סיבוב לקרוסלה */
    animation: rotate 25s linear infinite;
}

.carousel-vertical {
    /*max-width: 300px;*/
    height: 372px;
    /* 3 פריטים בגובה 60px */
    overflow: hidden;
    position: relative;
    /* Soft fade on top and bottom (fallback using overlays) */
}

@media screen and (min-width: 768px) {
    .carousel-vertical {
        max-width: 720px;
        width: 100%;
    }
}

.carousel-vertical::before,
.carousel-vertical::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}

.carousel-vertical::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 1), rgba(18, 18, 18, 0));
}

.carousel-vertical::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(18, 18, 18, 1), rgba(18, 18, 18, 0));
}

.fan-mail .carousel-vertical .carousel-items {
    display: flex;
    flex-direction: column;
    align-items: end;
    /* Replaced step-based transform with continuous drift animation */
    animation: driftUp var(--drift-duration, 20s) linear infinite;
    will-change: transform;
    transition: none;
    /* Smooth mask fade for modern browsers */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 10%, #000 50%, rgba(0, 0, 0, 0.9) 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 10%, #000 50%, rgba(0, 0, 0, 0.9) 90%, transparent 100%);
}

.fan-mail .carousel-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 25px;
    margin-bottom: 25px;
    width: 241px;
    height: 124px;
    border-radius: 21px;
    border: 0.8px solid rgba(255, 255, 255, 0.15);
    opacity: var(--opacity, 0.75);
    transition: opacity 0.3s, transform 0.3s;
    margin-right: 1px;
    /* transform: translateX(var(--x, 0px)) rotate(var(--rot, 0deg)); */
    will-change: transform, opacity;
}

.fan-mail .carousel-item.middle {
    font-size: 22px;
    font-weight: bold;
    margin-right: 40px;
    opacity: 1;
}

.comments-container {
    display: flex;
    width: 100%;
    justify-content: center;
}

.comment {
    position: absolute;
    top: 50%;
    left: 50%;
    /* חישוב דינמי של הזווית */
    transform: translate(-50%, -50%) rotate(calc(var(--index) * (360deg / var(--total)))) translate(120px);
    transform-origin: center;
}

/* === The "bubble" styling for each comment === */
.overlap-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* A bit of padding all around for the bubble shape */
    padding: 1rem 1.5rem;
    /* Round rectangle background
       (choose a color with slight transparency or a solid color) */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    /* A subtle border or outline if you like: */
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: rotate(calc(var(--index) * (-360deg / var(--total))));
    /* For better text contrast, consider
       color: #fff or #ddd or a subtle text-shadow. */
}

/* Profile pic inside comment */
.comment-profile-pic {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

/* Username below pic */
.comment-username {
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

/* The main text comment */
.comment-text {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.rotating {
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Continuous upward drift for the testimonial track - Reversed to go downward */
@keyframes driftUp {
    from {
        transform: translateY(calc(-1 * var(--drift-distance, 100%)));
    }

    to {
        transform: translateY(0);
    }
}

/* Floating Action Button - Merlin 3 Style */
.fab-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 1049;
}

.fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1100;
    background: none;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.fab-menu.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.fab-menu-item {
    width: 48px;
    height: 48px;
    background: #2D2D2D;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fab-menu-item:hover {
    background: #252525B2;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1);
}

.fab-circle {
    width: clamp(50px, 12vw, 70px);
    height: clamp(50px, 12vw, 70px);
    background: #252525B2;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fab-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px #2525258f;
    background: #252525B2;
}

.fab-dots {
    display: flex;
    gap: 0.25rem;
}

.fab-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

@media screen and (min-width: 768px) {
    .hero .hero-video {
        height: 900px;
        width: unset;
        overflow: hidden;
    }

    .hero .hero-video video {
        height: auto;
        object-fit: cover;
        position: absolute;
        top: -550px;
        left: 0;
    }

    .profile-pic {
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
        margin-bottom: 25px;
    }

    .floating-menu {
        position: relative;
        right: 10px;
        bottom: 0;
    }

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

    .intro .intro-video {
        width: 403.395px;
        height: 667px;
        object-fit: cover;
    }

    .intro-brief {
        max-width: 300px;
    }

    .company-list img,
    .company-list video {
        width: 331px;
        height: 546px;
    }

    .about-content p {
        font-size: 24px;
    }

    .container-xl {
        max-width: 900px;
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 2rem;
    }

    /* Desktop: hero-content hero-text 60px */
    .hero-content .hero-text h1 {
        font-size: 60px;
    }

    /* Desktop: hero-content brief-container 40px */
    .hero-content .brief-container,
    .hero-content .brief-container p {
        font-size: 40px;
    }

    .fab-menu.show {
        padding-right: 10px;
    }

    /* Desktop: text-align center for sections 3 and 4 headings, but not bio */
    .section-title:not(.bio-heading) {
        text-align: center;
    }

    /* Desktop: Set width 100% and height for fan-mail carousel items */
    .fan-mail .carousel-item {
        width: 100%;
        height: 210px;
    }
}

/* ================================
   Contact Section (New Figma Design)
   ================================ */

/* Contact Section Container */
.contact-section {
    padding: 120px 20px;
    background-color: #121212;
}

/* Contact Header Wrapper (Divider + Title) */
.contact-header-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 33px;
}

/* Contact Divider (animated like bio/followers) */
.contact-divider {
    display: block;
    flex: 1;
    height: 1px;
    background-color: rgba(255, 248, 215, 0.3);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.contact-divider.contact-divider-visible {
    transform: scaleX(1);
    opacity: 1;
}

/* Contact Header/Title */
.contact-header {
    text-align: center;
    flex-shrink: 0;
}

.contact-title {
    font-family: 'Zalando Sans SemiExpanded', sans-serif !important;
    font-weight: 400 !important;
    font-size: 44px !important;
    line-height: 48.4px !important;
    letter-spacing: 0 !important;
    color: #fff8d7;
    margin: 0;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    margin: 0 auto;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Contact Form Fields */
.contact-form-field {
    position: relative;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    opacity: 0.6;
    background: transparent;
    border: 1px solid rgba(255, 248, 215, 0.8);
    border-radius: 11px;
    padding: 16px 17px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 15.15px;
    letter-spacing: 0.75px;
    color: #fff8d7;
    transition: all 0.3s ease;
}

.contact-form-field input {
    height: 52px;
}

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

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    outline: none;
    border-color: #fff8d7;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: #fff8d7;
    opacity: 1;
}

/* Contact Submit Button */
.contact-form-submit {
    margin-top: 0;
}

.contact-submit-btn {
    width: 100%;
    height: 56px;
    background: transparent;
    border: 1px solid #fff8d7;
    border-radius: 11px;
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 20.2px;
    letter-spacing: 0;
    color: #fff8d7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: #fff8d7;
    color: #121212;
}

/* Contact Tool Buttons (Phone/Message icons) */
.contact-tools {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin-top: 14px;
}

.contact-tool-btn {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    border: 1px solid rgba(255, 248, 215, 0.7);
    background: transparent;
    color: #fff8d7;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-tool-btn:hover {
    background: rgba(255, 248, 215, 0.1);
    border-color: #fff8d7;
}

.contact-tool-btn i {
    font-size: 20px;
}

/* ================================
   Feedback Section (New Design from Figma)
   ================================ */

.feedback-section {
    background-color: #121212;
    padding: 80px 0px;
    overflow: hidden;
}

.feedback-title {
    color: #FFF8D7;
    text-align: center;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: 101%;
    margin-bottom: 60px;
}

/* Feedback Carousel Container */
.feedback-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Feedback Track (horizontal scroll) */
.feedback-track {
    display: flex;
    gap: 32px;
    will-change: transform;
    transition: none;
}

/* Desktop: Feedback Track - 95px gap */
@media (min-width: 1024px) {
    .feedback-track {
        gap: 95px;
    }
}

body {
    overflow-x: hidden !important;
}

.body {
    overflow-x: hidden;
}

/* Feedback Card */
.feedback-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0px;
    border-radius: 21px;
    height: 141px;
    max-height: 141px;
    min-width: 200px;
    max-width: 350px;
    position: relative;
    cursor: pointer;
}

/* Feedback Text Wrapper */
.feedback-txt {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    overflow: hidden;
}

/* Feedback Username */
.feedback-username {
    color: #FFF8D7;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Feedback Comment Text */
.feedback-comment {
    color: #FFF8D7;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    /* Text ellipsis for overflow */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 81px;
    /* 3 lines * 27px line-height */
}

/* Feedback Profile Picture Wrapper */
.feedback-pic {
    flex-shrink: 0;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

/* Black and white overlay for feedback profile picture */
.feedback-pic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 29.322px;
    opacity: 0.5;
    background: #FFF8D7;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.feedback-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feedback-section {
        padding: 80px 0px;
    }

    .feedback-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .feedback-card {
        min-width: 180px;
        max-width: 300px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 80px 20px;
    }

    .contact-title {
        font-size: 36px !important;
        line-height: 40px !important;
    }

}

/* ===================================
   MERLIN 3 HEADER & MOBILE MENU
   =================================== */

/* Header Section (mobile only) */
.merlin3-header {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px;
    transition: z-index 0s;
}

/* When burger menu is open, increase z-index */
body.merlin3-menu-open .merlin3-header {
    z-index: 1000000;
}


/* In edit mode, header should be relative to not interfere with editor banner */
body.edit-mode-active .merlin3-header {
    position: absolute;
    top: 20px;
}

/* Desktop: Hide header */
@media screen and (min-width: 1024px) {
    .merlin3-header {
        display: none;
    }
}

.merlin3-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.merlin3-header-left {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.merlin3-header-left:hover {
    opacity: 0.8;
}

/* Hide header-left when mobile menu is open in edit mode */
body.merlin3-menu-open.editor-active .merlin3-header-left {
    opacity: 0; 
}

.merlin3-header-username {
    color: #FFF8D7;
    text-align: center;
    font-family: Switzer, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.merlin3-header-right {
    display: flex;
    align-items: center;
}

.merlin3-burger-icon {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.merlin3-burger-icon:hover {
    transform: scale(1.05);
}

/* Menu Overlay */
.merlin3-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.merlin3-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Menu */
.merlin3-mobile-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 999999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.merlin3-mobile-menu.active {
    right: 0;
}

/* Menu Header with username */
.merlin3-menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.merlin3-menu-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Username in menu */
.merlin3-menu-username {
    color: #FFF8D7;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Switzer, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.merlin3-menu-username:hover {
    opacity: 0.7;
}

/* Menu Pages */
.merlin3-menu-pages {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.merlin3-menu-link {
    text-decoration: none;
    display: block;
    padding: 40px 0 0 0;
    transition: opacity 0.3s ease;
}

.merlin3-menu-link:hover {
    opacity: 0.7;
}

.merlin3-menu-link-text {
    overflow: hidden;
    color: #FFF8D7;
    text-align: left;
    text-overflow: ellipsis;
    font-family: "Zalando Sans SemiExpanded", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 250;
    line-height: 110%;
    display: block;
}

/* Menu divider - animates from right to left */
.merlin3-menu-divider {
    width: 100%;
    height: 1px;
    background: #FFF8D7;
    margin-top: 10px;
    opacity: 0.4;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.merlin3-menu-divider-visible {
    transform: scaleX(1);
}


.merlin3-language-toggle-item {
    display: flex;
    align-items: center;
}

.merlin3-language-toggle-link {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.merlin3-language-toggle-link:hover {
    opacity: 0.7;
}

.merlin3-language-icon {
    color: #FFF8D7;
    font-size: 22px;
}

.merlin3-language-text {
    color: #FFF8D7;
    text-align: center;
    font-family: "Zalando Sans SemiExpanded", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 250;
    line-height: 93%;
    text-transform: uppercase;
}

/* Language visibility toggle button (editor only) */
.merlin3-lang-visibility-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    margin-left: 8px;
    transition: opacity 0.3s ease;
    color: #FFF8D7;
    font-size: 18px;
}

.merlin3-lang-visibility-btn:hover {
    opacity: 0.7;
}

.merlin3-language-toggle-item.disabled .merlin3-language-toggle-link {
    opacity: 0.5;
    cursor: not-allowed !important;
}

/* Hide language container for visitors when disabled */
.merlin3-menu-language .merlin3-language-toggle-item.disabled {
    display: flex !important; /* Keep visible in editor */
}

/* In online mode (visitor view), hide language toggle when disabled */
body:not(.edit-mode-active) .merlin3-language-toggle-item.disabled {
    display: none !important;
}

/* Menu Social */
.merlin3-menu-social {
    display: flex;
    gap: 16px;
    padding-top: 20px;
    margin-top: 20px;
    justify-content: center;
    border-top: 1px solid rgba(255, 248, 215, 0.2);
}

.merlin3-social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 248, 215, 0.1);
    border: 1px solid rgba(255, 248, 215, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF8D7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.merlin3-social-link:hover {
    background: #FFF8D7;
    color: #121212;
    border-color: #FFF8D7;
    transform: scale(1.05);
}

/* Prevent body scroll when menu is open */
body.merlin3-menu-open {
    overflow: hidden;
}

body.merlin3-menu-open .merlin3-header-username {
    display: none;
}

/* Desktop: Hide mobile menu */
@media screen and (min-width: 1024px) {

    .merlin3-mobile-menu,
    .merlin3-menu-overlay {
        display: none !important;
    }
}