@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.coming-soon-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.487);
    top: 0;
    backdrop-filter: blur(20px);
}

.coming-soon-title {
    position: absolute;
    font-size: 100px;
    font-weight: bolder;
    color: #111;
    z-index: 9;
    align-self: anchor-center;
    justify-self: anchor-center;
    font-family: var(--font-sub);
}

.form-response {
    font-size: 20px;
    position: absolute;
    z-index: 9999;
    align-self: anchor-center;
    justify-self: anchor-center;
    background-color: #aae6bc;
    border-radius: 16px;
    padding: 32px 16px;
    font-weight: 800;
    font-style: italic;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    color: var(--color--black);
}

.form-response.success {
    color: var(--color--black);
}

.form-response.error {
    color: #c62828;
}


:root {
    --font-title: 'Satoshi', sans-serif;
    --font-highlight: 'Playfair Display', serif;
    --font-sub: 'Satoshi', sans-serif;
    --font-body: 'Noto Sans SC', sans-serif;
    --color--black: #0D0D0F;
    --color--white: #FAFBFD;
    --color--purple: #A883FF;
    --color--lightpink: #faded94f;
    --color--lightpurple: #f0eaff;
    --color--lightgrey: #f4f4f4;
    --color--mediumgrey: #cfcfcf;
    --color--grey: #888888;
    --color--offwhite: #faf3e9;
}

body.loading {
    opacity: 0;
    pointer-events: none;
}

body.ready {
    opacity: 1;
    transition: opacity 0.4s ease;
}

html {
    overscroll-behavior: none;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
    box-sizing: content-box;
}

#scroll-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#scroll-content {
    will-change: transform;
}

.main-content {
    background-color: var(--color--white);
    position: relative;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    width: 100%;
    overflow: visible !important; 
    display: block !important;
}

body {
    margin: 0;
}


h1 {
    font-family: var(--font-title);
    margin: 0;
    font-weight: 700;
}

h2 {
    font-family: var(--font-title);
    margin: 0;
}

h3 {
    font-family: var(--font-body);
    margin: 0;
}

h4 {
    font-family: var(--font-title);
    font-weight: 600;
}

.italic {
    font-style: italic;
}

p {
    margin: 0;
}

.desc {
    color: var(--color--grey);
}

body {
    font-family: var(--font-body);
}

li {
    list-style: none;
}

.chinese-text {
    font-family: var(--font-sub);
}

section {
    padding: 0px 160px;
    height: 100vh;
    justify-content: center;
    background-color: var(--color--white);
}

.subtitle {
    font-size: 18px;
}


.cta-btn {
    padding: 12px 32px;
    border-radius: 999px;
    font-family: var(--font-sub);
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
}

/* Initial state for fade-up */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
}

/* Optional delay classes for staggered appearance */
.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}


.section-title {
    text-align: center;
}

/******************* CONTACT MODAL *********************/

.contact-modal {
    display: none;
}

.contact-container h1 {
    color: var(--color--white);
}

.contact-modal.show {
    display: flex;
    position: fixed;
    width: -webkit-fill-available;
    height: 100%;
    background-color: #1d1e24f2;
    z-index: 9999;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    align-items: center;
    padding: 20px;
}

.modal-close {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color--black);
    border-radius: 100%;
    position: absolute;
    top: 5%;
    right: 5%;
}

.modal-close svg {
    width: 40%;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 90%;
    max-width: 800px;
    margin: auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group.full-width {
    width: 100%;
}

/* Floating label */
.contact-modal input,
.contact-modal textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    color: var(--color--white);
    font-size: 16px;
    padding: 1rem 0 0.8rem;
    outline: none;
}

.contact-modal label {
    position: absolute;
    left: 0;
    font-size: 18px;
    top: 1rem;
    color: #999;
    transition: 0.2s all;
}

/* Floating effect */
.contact-modal :focus+label,
.contact-modal input.filled+label,
.contact-modal textarea:focus+label,
.contact-modal textarea.filled+label {
    top: -0.8rem;
    font-size: 16px;
    color: var(--color--white);
    border: none !important;
}

/* For textarea */
textarea {
    resize: none;
    min-height: 80px;
}

/* Radio section */
.label-static {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Label flex pour aligner texte et cercle */
.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #b0b0b0;
    font-size: 18px;
    position: relative;
}

/* Masquer le radio natif */
.radio-group input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    cursor: pointer;
    margin: 0;
    z-index: 3;
}

.radio-group input[type="radio"]:checked+.radio-text {
    color: var(--color--white) !important;
    font-weight: 700;
}

.submit-btn {
    align-self: flex-start;
    background: transparent;
    border: 1px solid var(--color--white);
    color: var(--color--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--color--white);
    color: var(--color--black);
}

/* Placeholder hidden for floating label logic */
input::placeholder,
textarea::placeholder {
    color: transparent;
}


/********************** HEADER *************************/

header {
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    background-color: transparent;
    transition: all 0.3s ease;
}

/* Inner layout */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 80px;
    transition: padding 0.3s ease;
}

.logo {
    position: absolute;
}

/* Default logo visible, scrolled one hidden */
.logo .logo-scrolled {
    display: none;
}

.logo .logo-default {
    display: block;
    width: 100px;
    transition: all 0.3s ease;
}

/* When scrolled */
header.scrolled {}

header.scrolled .logo .logo-default {
    display: none;
}

.logo-scrolled path {
    transition: fill 0.3s;
}

header.scrolled .logo .logo-scrolled {
    display: block;
    width: 48px;
}

header.scrolled .header-inner {
    padding: 12px 160px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
}

nav .cta-project {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 105px;
    gap: 8px;
    color: var(--color--white);
}

nav .cta-project:hover .contact-arrow {
    display: flex;
}

.contact-arrow {
    display: none;
}

.dropdown {
    position: relative;
}

.dropdown button {
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none;
    background: none;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    font-family: var(--font-sub);
    font-size: 16px;
    color: var(--color--purple);
}

.dropdown button span svg {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Rotation subtile */
.dropdown.show button span svg {
    transform: rotate(180deg);
}

/* Menu dropdown */
.dropdown ul {
    position: absolute;
    top: 120%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 10;
}

.dropdown.show ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown ul li a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border-radius: 8px;
}

.dropdown ul li a:hover {
    background: #f0f0f0;
    color: #111;
}

.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.social-icons a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(168, 131, 255, 0.2);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 100%;
}

.studioylang-header.on-dark .social-icons circle {
    fill: var(--color--white);
}

.studioylang-header.on-dark .dropdown button {
    color: var(--color--white);
}

.studioylang-header.on-dark .dropdown button>span>svg>g>path:nth-child(2) {
    fill: var(--color--white);
}

/********************** NAVBAR *************************/

.liquidGlass-wrapper {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(90, 90, 90, 0.3);
}

.liquidGlass-effect {
    position: absolute;
    inset: 0;
    z-index: 0;
    backdrop-filter: blur(8px);
    filter: url(#glass-distortion);
}

.liquidGlass-tint {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.liquidGlass-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    box-shadow: inset 2px 2px 1px rgba(255, 255, 255, 0.3),
        inset -2px -2px 2px rgba(255, 255, 255, 0.2);
}

.liquidGlass-text {
    position: relative;
    z-index: 3;
    display: flex;
    font-family: var(--font-sub);
    font-weight: 600;
}

.svg-glass {
    position: absolute;
    width: 0;
    height: 0;
}

.navbar {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
    justify-self: center;
    margin-bottom: 2%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 8px;
    bottom: 0;
    height: 60px;
    z-index: 99;
    border-radius: 999px;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: all;
}

.nav-item {
    padding: 16px 24px;
    border-radius: 999px;
    align-content: center;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    text-decoration: none;
    color: var(--color--black);
}

.nav-pill {
    position: absolute;
    opacity: 0;
    height: 52px;
    width: 90px;
    background: rgba(168, 131, 255, 0.4);
    border-radius: 999px;
    transform: scale(0.85);
    z-index: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-pill.light {
    background: rgba(255, 255, 255, 0.5);
}

/******************* HERO SECTION **********************/

h1 {
    color: var(--color--white);
    font-size: 96px;
    line-height: 120%;
    text-transform: uppercase;
    font-weight: 700;
    text-align: end;
}

h3 {
    color: var(--color--white);
    font-size: 20px;
    font-weight: 300;
}

.hero-h3 {
    font-size: 16px;
    color: var(--color--grey);
    width: 25%;
    align-self: end;
}

.hero-section {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-size: cover;
    background-color: var(--color--black);
    justify-content: flex-end;
    position: sticky;
    top: 0;
}

.title-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 15%;
    gap: 8px;
    width: fit-content;
}

.title-sub {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 5%;
    gap: 32px;
}

.indicator {
    display: flex;
    flex-direction: row;
    align-items: center;
    opacity: 1;
    visibility: visible;
    position: relative;
    gap: 8px;
}

.Scrolltoexplore {
    font-size: 14px;
    font-weight: bold;
    font-family: var(--font-sub);
    color: var(--color--white);
}

.arrow-svg {
    width: 12px;
    height: auto;
    fill: var(--color--white);
}

.chinese-title {
    font-size: 32px;
    color: var(--color--white);
    opacity: 30%;
}

.cta-flex {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.cta-project {
    color: var(--color--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*background: linear-gradient(135deg, rgba(168, 131, 255, 0.3), rgba(168, 131, 255, 0.6));*/
    background: var(--color--purple);
    border: 1px solid rgba(168, 131, 255, 0.3);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-project:hover {
    transform: scale(1.03);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(168, 131, 255, 0.6), rgba(168, 131, 255, 0.8));
    border: 1px solid rgba(168, 131, 255, 0.1);
}

/*.cta-project::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    transition: all 0.6s ease;
    z-index: 1;
}

.cta-project:hover::before {
    left: 100%;
}*/

.cta-portfolio {
    background-color: var(--color--white);
    color: var(--color--black);
    border: 1.5px solid transparent;
    background-clip: border-box, padding-box;
    background: rgba(255, 255, 255, 0.5);
    color: var(--color--black);
    border-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-portfolio:hover {
    transform: scale(1.03);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(168, 131, 255, 0.1);
}


/******************* BRIDGE SECTION **********************/

#bridge {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color--white);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.bridge-wrap {
    position: relative;
    width: 100%;
}

.sticky-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--color--lightgrey);
    text-align: center;
}

.principles-overlay {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 160px;
}

#overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
}

.big-title {
    font-size: 160px;
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-title span:nth-child(2) {
    font-family: var(--font-highlight);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    margin-top: -0.1em;
}

.principle-box h4 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--color--black);
    font-weight: 900;
}

.principle-box p {
    font-size: 16px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    color: var(--color--grey);
}

.icon-wrap svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--color--black);
    stroke-width: 1.5;
}

.icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 3rem;
    transition: transform 0.5s ease;
}

.principle-box:hover .icon-wrap {
    transform: scale(1.2) rotate(90deg);
}
.principle-box:hover p {
    opacity: 1;
    transform: translateY(0);
}

/******************** WORK SECTION ******************/

.work-section {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    color: var(--color--black);
    background-color: var(--color--white);
    height: auto;
    padding: 160px 160px 80px 160px;
}

.work-section-title {
    font-size: 64px;
}

.work-section .section-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

#title-highlight {
    font-family: var(--font-highlight);
    font-size: 160px;
    font-weight: 700;
}

.allwork-btn {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    color: var(--color--black);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
}

.work-flex {
    display: flex;
    flex-direction: column;
    gap: 80px;
    justify-content: center;
    width: 100%;
}

.work-flex-row {
    display: flex;
    flex-direction: row;
    gap: 80px;
}

.work {
    width: 100%;
}

.work-coming::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
}

.work-img {
    background-color: grey;
    width: 100%;
    height: 768px;
    border-radius: 24px;
    background-position: center;
}

.work-img>a {
    text-decoration: none;
}

.bg-zoom {
    position: relative;
    overflow: hidden;
}

.bg-zoom::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    transform: scale(1.1);
    z-index: 0;
}

.bg-zoom:hover::before {
    transform: scale(1);
}

.bg-zoom * {
    position: relative;
    z-index: 1;
}

.bg-zoom::before {
    background-image: var(--bg);
}

.work-img a {
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

.work-img a:hover .work-hover-badge {
    opacity: 1;
    transform: translateX(-2%) translateY(-2%);
}

.work-hover-badge {
    top: 2%;
    left: 2%;
    width: fit-content;
    border-radius: 999px;
    position: relative;
    opacity: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--color--white);
    padding: 8px 16px;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
    transform: translateX(-20%) translateY(-20%);
}

.work-content {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding-top: 16px;
}

.work-title {
    font-size: 18px;
    color: var(--color--black);
    margin: 0;
}

#view-label {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    pointer-events: none;
    /* Keeps the element from blocking clicks */
    z-index: 9999;

    /* Initial state: Hidden */
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Center the text perfectly on the point */
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

#view-label.active {
    opacity: 1;
    transform: scale(1);
}

/******************* SERVICES SECTION ******************/

.services-section {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: var(--color--black);
    background-color: var(--color--white);
    height: auto;
    padding: 80px 0 0;
    position: relative;
}

/*.services-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px; 
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 30%, #FAFBFD 100%);
    pointer-events: none; 
  }*/

.services-flex {
    padding: 80px 160px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(to bottom, #dbccff, #faded9, #FAFBFD);
    position: relative;
}

#services-section>div.services-flex.dark-bg>div:nth-child(1)>img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 30%, #FAFBFD 100%);
    pointer-events: none;
}

#services-section>div.section-title {
    padding-bottom: 80px;
}

.services-section>div:nth-child(1) {
    padding-bottom: 80px;
    align-content: center;
}

.service-card {
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 40%;
    color: var(--color--black);
}

.service-card:nth-child(1) {
    align-self: end;
}

.service-card:nth-child(2) {
    align-self: baseline;
}

.service-card:nth-child(3) {
    align-self: end;
}

.scontainer {
    position: relative;
    width: 32px;
    height: 32px;
    margin-left: 1rem;
    z-index: 10;
    /* important → passe au-dessus */
}

.flip-proxy {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 999;
}

.box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
    /* passe devant tout */
}

.marker {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.box,
.marker {
    width: 32px;
    height: 32px;
    border-radius: 16px;
}

.box {
    background-image: url("https://framerusercontent.com/images/PxczJo36L4xtAyptLU8m4kZMnno.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.marker {
    background-color: transparent;
    /* invisible mais sert de cible */
}

.card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.card-header h3 {
    font-size: 40px;
    font-family: var(--font-sub);
    font-weight: 600;
    margin: 0;
}

.card-content h4 {
    font-family: var(--font-sub);
    font-size: 18px;
    font-weight: 600;
}

.card-icon {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

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

.service-desc {
    color: var(--color--black) !important;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color--lightgrey);
    font-weight: 500;
    font-size: 14px;
}

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

hr {
    border: none;
    border-top: 1px solid var(--color--black);
    width: 100%;
}

/* Animated background blobs with subtle color variations */
.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    filter: blur(80px);
    z-index: 0;
    animation: float 30s infinite alternate ease-in-out;
    mix-blend-mode: multiply;
}

.blob1 {
    background: #A883FF;
    width: 300px;
    height: 300px;
    top: -80px;
    left: -100px;
    animation-delay: 0s;
}

.blob2 {
    background: #B093FF;
    width: 350px;
    height: 350px;
    bottom: -120px;
    right: -100px;
    animation-delay: 5s;
    z-index: 3;
}

.blob3 {
    background: #9670FF;
    width: 250px;
    height: 250px;
    top: 150px;
    right: -50px;
    animation-delay: 10s;
}

.blob4 {
    background: linear-gradient(238deg,rgba(237, 17, 136, 1) 0%, rgba(150, 112, 255, 1) 100%);
    width: 800px;
    height: 800px;
    top: 200px;
    left: -600px;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    }

    25% {
        transform: translate(30px, -20px) scale(1.05) rotate(15deg);
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    }

    50% {
        transform: translate(-25px, 25px) scale(1.1) rotate(-10deg);
        border-radius: 50% 50% 60% 40% / 40% 50% 50% 60%;
    }

    75% {
        transform: translate(20px, -15px) scale(0.95) rotate(5deg);
        border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
    }

    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 1.8rem;
    }

    .service-desc {
        font-size: 0.95rem;
    }

    .blob1,
    .blob2,
    .blob3,
    .blon4 {
        width: 180px;
        height: 180px;
    }
}

/******************* PROCESS SECTION *******************/

.process-section {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    color: var(--color--black);
    background-color: var(--color--offwhite);
    height: auto;
    padding: 80px 0px;
}

.process-section .section-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    text-align: left;
    font-size: 64px;
    padding: 0 160px;
}

.process-section h2 {
    font-size: 64px;
}

.process-flex {
    border-top: 1px solid var(--color--lightgrey);
    width: 100%;
}

.process-item {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 40px 160px;
    border-bottom: 1px solid var(--color--mediumgrey);
    transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    position: relative;
    align-items: center;
}

.process-item:hover {
    padding-left: 20px;
    background: var(--color--lightpink);
}

.process-item .num {
    font-size: 12px;
    font-weight: 400;
    color: var(--color--grey);
}

.process-item .title {
    font-size: 40px;
    font-weight: 500;
    font-family: var(--font-title);
}

.process-item .desc {
    font-size: 16px;
    color: var(--color--grey);
    max-width: 320px;
    line-height: 1.4;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.process-item:hover .desc {
    opacity: 1;
    transform: translateX(-20px);
}

/******************* CONTACT SECTION *******************/

.contact-section {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
    color: var(--color--white);
    background-color: var(--color--black);
    padding: 80px 160px;
}

.contact-section-title {
    font-size: 64px;
}

.contact-flex {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.home-contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 6vw;
}

.home-contact-submit-btn  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--color--white);
    color: var(--color--white);
    padding: 12px 32px;
    border-radius: 999px;
    font-family: var(--font-sub);
    font-weight: bold;
    font-size: 16px;
}

.home-contact-submit-btn:hover  {
    background-color: var(--color--lightpurple);
    color: var(--color--black);
}

.contact-form,
.contact-info {
    width: 50%;
}

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

.home-form-group {
    position: relative;
    margin-bottom: 40px;
}

.home-form-group input,
.home-form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #222;
    padding: 14px 0;
    color: var(--color--white);
    font-size: 1rem;
    outline: none;
}

.home-form-group label {
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--color--grey);
    font-size: 16px;
    pointer-events: none;
    transition: 0.4s cubic-bezier(0.2, 1, 0.2, 1);
}

.home-form-group:focus-within label {
    top: -8px;
    font-size: 12px;
    color: var(--color--lightpurple);
    text-transform: uppercase;
}

.home-form-group:has(input:not(:placeholder-shown)),
.home-form-group:has(textarea:not(:placeholder-shown)) {
    label {
        top: -8px;
        font-size: 12px;
        color: var(--color--lightpurple);
        text-transform: uppercase;
    }
}
/* Project Chips */
.chips-label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color--grey);
    display: block;
}

.chips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 40px;
}

.chip {
    border: 1px solid var(--color--white);
    padding: 12px;
    text-align: center;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 999px;
}

.chip.active {
    background: var(--color--lightpurple);
    color: var(--color--black);
    border-color: var(--color--lightpurple);
    font-weight: 700;
}

.location-box {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: auto;
}

.loc {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color--grey);
}

.dot {
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 1280px) {
    section {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 768px) {
    section {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/************************ FOOTER ***********************/

.studioylang-footer {
    position: relative;
    padding: 80px 160px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: stretch;
    background-color: var(--color--white);
}

.studioylang-footer .footer-bg {
    position: absolute;
    bottom: 0;
    justify-self: anchor-center;
    z-index: 0;
    padding: 0 160px;
    width: -webkit-fill-available;
    pointer-events: none;
}

.studioylang-footer .grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    align-items: start;
}

.studioylang-footer .grid>div {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.studioylang-footer .sig {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 18px;
}

.studioylang-footer .sig .word {
    position: relative;
    overflow: visible;
}

.studioylang-footer .sig .split {
    display: inline-block;
    transform-origin: center left;
}

.studioylang-footer .sig .split:nth-child(1) {
    transform: translateY(-3px) rotate(-1deg);
}

.studioylang-footer .sig .split:nth-child(2) {
    transform: translateY(3px) rotate(0.6deg);
    opacity: 0.95;
}

.studioylang-footer .kinetic-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #7a7a7a, transparent);
    flex: 1;
}

.studioylang-footer .description {
    max-width: 680px;
    font-size: 16px;
    color: #7a7a7a;
}

.studioylang-footer .right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-size: 12px;
    color: #7a7a7a;
    text-align: right;
}

.studioylang-footer .tag {
    padding: 10px 16px;
    border: 2px solid var(--color--white);
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 1px;
    mix-blend-mode: screen;
    transition: transform 0.2s ease;
}

.studioylang-footer .tag:active {
    transform: translateY(2px);
}

.studioylang-footer .availability {
    font-size: 12px;
}

.studioylang-footer .nav {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.studioylang-footer .nav a:nth-child(1),
.studioylang-footer .nav a:nth-child(2) {
    width: 32px;
    height: 32px;
}

.studioylang-footer .nav a:nth-child(3) {
    color: var(--color--black);
}

.studioylang-footer .nav a>svg {
    width: -webkit-fill-available;
    height: auto;
}

.studioylang-footer .nav a:hover {
    transform: translateY(-4px);
    opacity: 1;
}

.studioylang-footer .bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 22px;
    font-size: 13px;
    color: #7a7a7a;
    margin-bottom: 10%;
    width: 65%;
    align-self: end;
}

.studioylang-footer .bottom-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.studioylang-footer .locations-block {
    font-size: 12px;
    color: var(--color--grey);
}

.studioylang-footer .policies {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}

.studioylang-footer .policies a {
    color: var(--color--grey);
    text-decoration: none;
    transition: color 0.18s;
}

.studioylang-footer .policies a:hover {
    color: var(--color--black);
}