:root {
    /* Brand Colors derived from Logo */
    --brand-blue: #2f5982;
    /* Deep Navy */
    --brand-yellow: #fcc200;
    /* Golden Yellow */
    --brand-red: #8a1515;
    /* Deep Red */

    /* Light Mode Palette "Frais" */
    --bg-color: #F9FAFB;
    /* Very light gray/white mix */
    --card-bg: #FFFFFF;
    --text-color: #111827;
    /* Nearly black for main text */
    --text-body: #4b5563;
    /* Softer gray for paragraphs */
    --accent-color: var(--brand-blue);
    /* Blue as primary accent */
    --secondary-color: #9ca3af;
    --border-color: rgba(0, 0, 0, 0.1);

    --container-width: 1400px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

body {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

body.loading {
    opacity: 0;
    overflow: hidden;
}

/* Preloader Overlay (Snellenberg Style) */
/* Preloader Overlay (Snellenberg Style) */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-blue);
    /* Brand Blue */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
}

.preloader-text {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 300;
    overflow: hidden;
    z-index: 2;
}

.preloader-text .word {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}

.preloader-curve {
    position: absolute;
    top: 100%;
    /* Hanging below the main overlay */
    left: 0;
    width: 100%;
    height: 50%;
    /* Large enough for deep curve effects */
    z-index: 1;
    display: block;
    fill: var(--brand-blue);
    pointer-events: none;
}

.preloader-overlay path {
    fill: var(--brand-blue);
}

/* Floating Decoration Shadows */
.floating-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.blob-item {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
}

.blob-1 {
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(11, 61, 145, 0.15), transparent);
}

.blob-2 {
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15), transparent);
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Snellenberg Theme Styles */
.snellenberg-theme {
    background-color: var(--bg-color);
}

.minimal-header {
    padding: 18vh 0 10vh;
    overflow: hidden;
}

.header-inner {
    position: relative;
    z-index: 2;
}

/* Text Reveal Mask */
.split-line {
    overflow: hidden !important;
}

.giant-title {
    font-family: var(--font-heading);
    /* Reverted to Playfair Display */
    font-weight: 800;
    font-size: clamp(4rem, 11vw, 13rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--brand-blue);
    margin: 0;
    text-transform: uppercase;
    transform-origin: left;
}

.indent-title {
    display: block;
    margin-left: 15vw;
    /* Indent for style */
    color: #999;
    /* Mixed opacity feel */
    opacity: 0.5;
    transition: all 0.5s ease;
}

.header-inner:hover .indent-title {
    opacity: 1;
    color: var(--text-color);
    margin-left: 16vw;
}

.header-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 4rem;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.location-tag {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 61, 145, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(11, 61, 145, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(11, 61, 145, 0);
    }
}

/* Parallax Grid */
.parallax-gallery-scroll {
    padding-bottom: 10rem;
}

/* Parallax Grid - 2 Column */
.parallax-gallery-scroll {
    padding-bottom: 10rem;
}

.gallery-container-fluid {
    display: flex;
    gap: 60px;
    /* Wider gap for elegance */
    padding: 0 4vw;
}

.parallax-col {
    width: 48%;
    /* 2 Columns */
    display: flex;
    flex-direction: column;
    gap: 80px;
    /* More vertical space */
}

.spacer-top-large {
    height: 150px;
}

.spacer-top-medium {
    height: 80px;
}

/* --- HORIZONTAL SCROLL SECTION --- */
.horizontal-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.horizontal-pin-section {
    width: 100%;
    min-height: 120vh;
    /* Scaled up for two rows */
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5vh;
    background: var(--bg-color);
    padding: 10vh 0;
}

.horizontal-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 3vw;
    width: max-content;
    align-items: center;
}

.horizontal-track-left {
    padding-left: 10vw;
}

.horizontal-track-right {
    padding-right: 10vw;
    align-self: flex-end;
    /* Start from the right */
}

.horizontal-spacer {
    width: 15vw;
    flex-shrink: 0;
}

.layout-card-premium {
    flex-shrink: 0;
    width: 30vw;
    min-width: 400px;
    margin-bottom: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(100px);
}

@media (max-width: 900px) {
    .layout-card-premium {
        width: 75vw;
        min-width: 300px;
    }
}

.card-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #EBEBEB;
    /* Snellenberg Gray */
    aspect-ratio: 16/11;
    cursor: pointer;
    padding: 0;
    /* Changed to full bleed but with contain transition potential */
}

.card-revealer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #EBEBEB;
    z-index: 5;
    transform-origin: top;
}

.card-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.1);
    /* Slightly zoomed for entrance */
}

.card-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 6;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-blue);
    border-radius: 50%;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-blue);
}

.card-footer-info {
    margin-top: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 4px;
}

.footer-title {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 2vw, 2.2rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text-color);
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.project-num {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: #999;
}

.view-indicator {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--brand-blue);
    background: transparent;
}

/* Hover Effects */
.layout-card-premium:hover .card-image {
    transform: scale(1.05);
}

.layout-card-premium:hover .card-badge {
    transform: translateY(0);
    opacity: 1;
}

.layout-card-premium:hover .view-indicator {
    background: var(--brand-blue);
    color: #fff;
    border-color: var(--brand-blue);
    transform: rotate(45deg);
}

.layout-card-premium:hover .footer-title {
    color: var(--brand-blue);
}

@media (max-width: 768px) {
    .card-visual {
        border-radius: 16px;
    }

    .footer-title {
        font-size: 1.25rem;
    }

    .card-badge {
        opacity: 1;
        transform: none;
    }
}



/* --- HIGH-IMPACT STUDIO CTA --- */
.creative-cta-studio {
    padding: 10rem 0;
    background: #f4f7fa;
    /* Clearly distinct light blue-grey */
    border-top: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.studio-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.word-reveal .reveal-mask {
    display: inline-block;
    vertical-align: top;
    padding-right: 0.3em;
}

.studio-info {
    max-width: 70%;
}

.reveal-mask {
    overflow: hidden;
    display: block;
}

.studio-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #475569;
    /* Distinct Slate */
    font-weight: 700;
    margin-bottom: 2rem;
    transform: translateY(105%);
}

.studio-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--brand-blue);
    border-radius: 50%;
}

.studio-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #0f172a;
    /* Deep Navy/Black */
    margin: 0;
}

.reveal-item {
    display: block;
    transform: translateY(30px);
    opacity: 0;
}

.italic-brand {
    font-family: var(--font-heading);
    color: var(--brand-blue);
}

.modern-reveal-btn {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    color: #0f172a;
    transform: translateX(30px);
    opacity: 0;
}

.btn-circle {
    width: 90px;
    height: 90px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-text {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    transition: width 0.4s ease;
}

.modern-reveal-btn:hover .btn-circle {
    transform: rotate(45deg) scale(1.1);
    background: var(--brand-blue);
}

.modern-reveal-btn:hover .btn-text::after {
    width: 100%;
}

@media (max-width: 991px) {
    .studio-cta-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 4rem;
        text-align: left;
    }

    .studio-info {
        max-width: 100%;
    }

    .btn-circle-icon {
        width: 100px;
        height: 100px;
    }
}

@keyframes rotate-slow {
    100% {
        transform: rotate(360deg);
    }
}

/* Minimalist Footer */
.cta-footer-minimal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    margin-top: auto;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-socials-simple {
    display: flex;
    gap: 2rem;
}

.footer-socials-simple a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cta-main-title {
        font-size: 3rem;
    }

    .cta-circle-btn {
        width: 160px;
        height: 160px;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .gallery-container-fluid {
        flex-direction: column;
        padding: 0 20px;
    }

    .parallax-col {
        width: 100%;
        gap: 2rem;
    }

    .spacer-top-large,
    .spacer-top-medium {
        display: none;
    }

    .giant-title {
        font-size: 4rem;
    }

    .indent-title {
        margin-left: 0;
    }
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: auto;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.3 !important;
}

body.loading {
    overflow: hidden;
}

/* Premium Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.1;
}

.display-text {
    font-size: clamp(3rem, 8vw, 8rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 60%;
    height: 2px;
    background-color: var(--accent-color);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-blue);
    display: block;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--brand-blue), #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.display-partner {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    color: #0f172a;
}

/* --- Modern Floating Navbar --- */
/* --- Simple Clean Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    /* Initially transparent */
    border-bottom: 1px solid transparent;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    /* Match standard container */
    padding: 0 40px;
}

/* Scrolled State - Always White BG, Dark Text */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.logo img {
    height: 40px;
    /* Optimized size */
    width: auto;
    transition: transform 0.3s ease;
}

.navbar.scrolled .logo img {
    transform: scale(0.95);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

/* Default Links (Light Pages): Dark Text */
.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    /* Dark for light pages */
    position: relative;
    transition: color 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Home Navbar (Light Hero): Dark Text */
.navbar.navbar-home .nav-links a {
    color: var(--text-color);
}

/* Scrolled Navbar (Any Page): Dark Text */
.navbar.scrolled .nav-links a {
    color: var(--text-color) !important;
}

/* Hover Effects */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--brand-blue);
    /* Default highlight */
    transition: width 0.3s ease;
}

/* Home Hover Highlight (Blue on Light) */
.navbar:not(.scrolled).navbar-home .nav-links a::after {
    background-color: var(--brand-blue);
}

.nav-links a:hover {
    color: var(--brand-blue);
}

/* Home Hover Text (Blue on Light) */
.navbar:not(.scrolled).navbar-home .nav-links a:hover {
    color: var(--brand-blue);
}

/* Scrolled Hover Text (Blue on White) */
.navbar.scrolled .nav-links a:hover {
    color: var(--brand-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Active State */
.nav-links a.active {
    color: var(--brand-blue);
}

.navbar:not(.scrolled).navbar-home .nav-links a.active {
    color: var(--brand-yellow);
}

.nav-links a.active::after {
    width: 100%;
}

/* Restored Partner Button */
.btn-partner-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    border-radius: 100px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(11, 61, 145, 0.2);
}

.btn-partner-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11, 61, 145, 0.3);
    filter: brightness(1.1);
}

/* Mobile Toggle Base */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

/* Mobile Toggle Visibility */
.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    /* Dark bars for light theme */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}

.navbar.scrolled .menu-toggle .bar {
    background-color: var(--text-color);
    /* Dark bars on scroll */
}

/* Hamburger to X Animation */
.menu-toggle.active .bar {
    background-color: var(--brand-blue) !important;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .navbar {
        width: 100%;
        top: 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 15px 20px;
        left: 0;
        transform: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
        color: var(--brand-blue) !important;
    }

    .logo img {
        height: 40px;
    }
}

.btn-primary {
    padding: 12px 30px;
    border: 2px solid var(--brand-blue);
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    background-color: var(--brand-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--brand-yellow);
    border-color: var(--brand-yellow);
    color: var(--brand-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- Partner Hero (Light Premium Style) --- */
.partner-hero {
    min-height: 100vh;
    background-color: #f8fafc;
    /* Light Slate/Gray */
    position: relative;
    color: var(--text-color);
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

/* Grid Background */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}

/* Background Blobs Animation (Subtle for Light Mode) */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.6;
    mix-blend-mode: multiply;
    animation: blobFloat 25s infinite alternate;
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #bfdbfe, transparent);
    /* Light Blue */
    top: -300px;
    left: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #fde68a, transparent);
    /* Light Yellow */
    bottom: -200px;
    right: -200px;
    animation-delay: -8s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -60px) scale(1.05);
    }

    66% {
        transform: translate(-30px, 40px) scale(0.95);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-container-centered {
    position: relative;
    z-index: 5;
    text-align: center;
    /* Centered Text */
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    /* Changed from Grid to Flex Column */
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 40px;
}

/* Animated Title Decor */
/* Animated Title Decor */
.title-decor-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, var(--brand-blue), transparent);
    margin: 0 auto 2rem;
    /* Centered */
    animation: growDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: top;
}

@keyframes growDown {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.display-partner {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.text-gradient {
    color: #2f5982 !important;
    background: none !important;
    -webkit-text-fill-color: #2f5982 !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    display: inline-block;
    position: relative;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }
}

.partner-desc {
    font-size: 1.25rem;
    /* Slightly larger for centered impact */
    max-width: 700px;
    margin: 0 auto 3.5rem;
    /* Centered margin */
    color: #475569;
    /* Slate 600 */
    line-height: 1.7;
    font-weight: 400;
}

/* Buttons */
.partner-actions {
    display: flex;
    justify-content: center;
    /* Centered buttons */
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.btn-partner-primary {
    background: var(--brand-blue);
    color: #fff;
    padding: 18px 48px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px -10px rgba(11, 61, 145, 0.3);
    border: none;
    text-transform: uppercase;
}

.btn-partner-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -10px rgba(11, 61, 145, 0.4);
    background: #1e3a8a;
    /* Darker blue */
}

.btn-partner-outline {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #0f172a;
    padding: 18px 48px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
}

.btn-partner-outline:hover {
    border-color: var(--brand-blue);
    color: var(--brand-blue);
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

/* Premium Feature Cards (Light Mode) */
.partner-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px -10px rgba(148, 163, 184, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px -10px rgba(148, 163, 184, 0.25);
    border-color: #e2e8f0;
}

.feature-card:hover::before {
    opacity: 1;
}

.f-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--brand-blue);
    background: #eff6ff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .f-icon {
    background: var(--brand-blue);
    color: #fff;
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 10px 20px rgba(11, 61, 145, 0.2);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0;
    font-family: var(--font-heading);
}

@media (max-width: 991px) {
    .partner-hero {
        padding-top: 100px;
        /* Reduced for tablet */
    }

    .partner-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .display-partner {
        font-size: 4rem;
    }
}

@media (max-width: 600px) {
    .hero-container-centered {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
        gap: 2rem;
    }

    .partner-hero {
        padding-top: 120px;
        min-height: auto;
    }

    .display-partner {
        font-size: 3.5rem;
    }

    .partner-features {
        display: none;
        /* Hide features on mobile for cleaner look */
    }

    .partner-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }

    .btn-partner-primary,
    .btn-partner-outline {
        width: 100%;
        max-width: 300px;
    }
}


/* New Right Side Visuals */
/* New Right Side Visuals (High Contrast) */
/* Horizontal Hero Stack */
/* Modern Browser Mockup Container */
.hero-visual-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    width: 100%;
    max-width: 900px;
    /* Increased max-width for centered look */
    margin: 50px auto 0;
    /* Add top margin */
}

/* The Browser Window */
.browser-mockup {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow:
        0 50px 100px -20px rgba(15, 23, 42, 0.2),
        0 0 0 1px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
    transform: rotateY(-5deg) rotateX(2deg);
    /* Initial 3D tilt */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float-mockup 6s ease-in-out infinite;
}

.browser-mockup:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
    z-index: 20;
    box-shadow:
        0 60px 120px -25px rgba(59, 130, 246, 0.25),
        0 0 0 2px var(--brand-blue);
}

/* Browser Header Bar */
.browser-header {
    height: 48px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #eab308;
}

.browser-dots span:nth-child(3) {
    background: #22c55e;
}

.browser-address-bar {
    flex: 1;
    height: 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #94a3b8;
    font-family: 'Courier New', monospace;
    letter-spacing: -0.5px;
}

/* Image Container */
.browser-content {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f1f5f9;
}

.project-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 6s ease;
    transform: scale(1.05);
    /* Slight zoom start */
}

.project-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Decorative Background Blobs */
.dec-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
}

.dc-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #bfdbfe, transparent);
    top: -50px;
    right: -50px;
    animation: float-bg 8s infinite alternate;
}

.dc-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #fde68a, transparent);
    bottom: -50px;
    left: -50px;
    animation: float-bg 10s infinite alternate-reverse;
}

@keyframes float-mockup {

    0%,
    100% {
        transform: translateY(0) rotateY(-5deg) rotateX(2deg);
    }

    50% {
        transform: translateY(-20px) rotateY(-5deg) rotateX(4deg);
    }
}

@keyframes float-bg {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -30px);
    }
}

.anim-char {
    display: block;
    transform: translateY(110%);
}

.anim-char.highlight {
    color: transparent;
    -webkit-text-stroke: 2px var(--brand-blue);
}

/* Manifesto & Actions */
.hero-actions-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    max-width: 900px;
}

.manifesto-text {
    font-size: 1.25rem;
    max-width: 400px;
    color: var(--text-body);
}

.u-border {
    border-bottom: 1px solid var(--brand-blue);
    padding-bottom: 2px;
    color: var(--brand-blue);
}

.btn-modern-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: var(--transition);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border: 1px solid var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-modern-icon:hover .icon-circle {
    background: var(--brand-blue);
    color: #fff;
    transform: rotate(45deg);
}

/* Floating Visuals (Parallax) */
.hero-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: 2;
}

.float-card {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 5px;
    transition: transform 0.1s linear;
    /* For smoothing */
}

.card-1 {
    top: 15%;
    right: 10%;
    width: 250px;
    transform: rotate(5deg);
}

.card-2 {
    bottom: 20%;
    left: 5%;
    width: 200px;
    transform: rotate(-3deg);
    z-index: 12;
    /* Above text */
}

.card-3 {
    top: 40%;
    left: 45%;
    z-index: 1;
    /* Behind text */
    mix-blend-mode: multiply;
}

.abstract-shape {
    width: 100px;
    height: 100px;
    background: var(--brand-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: monospace;
}

.float-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .modern-hero {
        padding: 100px 0;
    }

    .hero-bg-anim {
        animation: none;
    }

    .display-text-modern {
        font-size: 14vw;
    }

    .hero-actions-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .float-card {
        opacity: 0.3;
    }

    /* Fade visuals on mobile so text is legible */
}

.anim-word {
    display: block;
    transform: translateY(100%);
    /* Start hidden due to mask */
}

.hero h1.display-text {
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: 0.9;
    color: var(--brand-blue);
    font-weight: 800;
    margin-bottom: 0;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--brand-blue);
}

.hero-secondary {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 2rem;
    border-left: 1px solid var(--border-color);
}

.sub-label {
    text-transform: uppercase;
    color: var(--brand-yellow);
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 3rem;
}

.hero-desc strong {
    color: var(--brand-blue);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-text {
    font-weight: 600;
    color: var(--brand-blue);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.btn-text:hover {
    border-bottom-color: var(--brand-blue);
}

/* Abstract Shape */
.hero-shape {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(11, 61, 145, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .hero-secondary {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 2rem;
    }

    .line-mask {
        margin-bottom: 0;
    }
}

/* Work Section - Sticky Cards Layout */
/* Work Section - Ultra-Premium Editorial Cards */
.work {
    padding: 15rem 0 0;
    background-color: #f8fafc;
}

.project-list {
    position: relative;
    padding-bottom: 5vh;
}

.project-revealer {
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 10;
    transform: scaleY(0);
    transform-origin: bottom;
}

.reveal-mask {
    overflow: hidden;
    display: block;
}

.reveal-up {
    transform: translateY(60px);
    opacity: 0;
}

/* Background Number Watermark */
.project-item {
    position: sticky;
    top: 10vh;
    height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 6rem;
    padding: 5rem;
    margin-bottom: 8vh;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 48px;
    width: 100%;
    transform-origin: center top;
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.05),
        0 0 1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Background Number Watermark */
.project-item::before {
    content: attr(data-number);
    position: absolute;
    top: -2rem;
    left: -2rem;
    font-size: 25vw;
    font-weight: 900;
    color: #f1f5f9;
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    opacity: 0.5;
    display: none;
    /* Hide old pseudo-element */
}

.project-number-bg {
    position: absolute;
    top: -2rem;
    left: -2rem;
    font-size: 25vw;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #f1f5f9;
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    opacity: 0.5;
}

.project-info {
    position: relative;
    z-index: 2;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
    color: var(--brand-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.project-info h3 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    margin-bottom: 2rem;
    line-height: 1.05;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 4rem;
}

.project-tags .tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-item:hover .tag {
    background: #eff6ff;
    color: var(--brand-blue);
}

.project-img-wrapper {
    height: 100%;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    background: #f1f5f9;
    /* Matte base */
}

/* Matte Overlay for deep "shaded" feel */
.project-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.15);
    /* Subtle dark matte wash */
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.6s ease;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    /* Matte Filter: Lower contrast, muted saturation, slight brightness bump to keep it airy */
    filter: contrast(0.85) brightness(1.02) saturate(0.65) grayscale(0.1);
}

.project-item:hover .project-img-wrapper img {
    transform: scale(1.05);
    filter: contrast(0.95) brightness(1) saturate(0.85) grayscale(0);
    /* Reveal colors slightly on hover */
}

.project-item:hover .project-img-wrapper::after {
    opacity: 0.4;
    /* Soften overlay on hover */
}

@media (max-width: 900px) {
    .project-item {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
        padding: 5rem 2rem 3rem;
        margin-bottom: 4rem;
        gap: 3rem;
    }

    .project-item::before {
        font-size: 40vw;
        top: -5%;
        left: -5%;
        opacity: 0.4;
    }

    .project-info {
        padding-right: 0;
        margin-bottom: 1rem;
        text-align: left;
    }

    .project-img-wrapper {
        height: 35vh;
        border-radius: 20px;
    }

    .project-info h3 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .project-tags {
        margin-bottom: 2.5rem;
    }
}

/* Services Section */
/* Services / Expertise Section - Premium Light Redesign */
.services {
    padding: 8rem 0 10rem;
    background: #f8fafc;
    /* Crisp Light Background */
    position: relative;
    overflow: hidden;
}

/* Subtle Pastel Blobs */
.services::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
    /* Very faint Cyan */
    z-index: 1;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
    /* Very faint Blue */
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

/* Services Section Title - Clean Editorial Style */
.services .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.services .section-header .eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.services .section-header .eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--brand-blue);
    transform: translateY(-50%);
}

.services .section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0;
}

.services .section-title span {
    color: var(--brand-blue);
    background: none;
    -webkit-text-fill-color: initial;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    padding: 3.5rem 2.5rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    /* Light borders */
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

/* Hover Effect - Lift & Glow */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
    /* Soft Blue Shadow */
    border-color: rgba(37, 99, 235, 0.3);
}

/* Decorative Gradient Line */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #2563eb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* Number counter styling */
.service-step {
    font-size: 5rem;
    font-weight: 900;
    color: #f1f5f9;
    /* Near white/light gray */
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    line-height: 1;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-card:hover .service-step {
    color: #e0f2fe;
    /* Light Blue Tint */
    transform: translateX(-10px) scale(1.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background: var(--brand-blue);
    color: #ffffff;
    transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #0f172a;
    /* Dark text */
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #64748b;
    /* Medium Slate */
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Marquee - Ultra-High Energy Style */
.marquee-section {
    padding: 5rem 0;
    overflow: hidden;
    white-space: nowrap;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    display: flex;
    align-items: center;
}

/* Side Fading Effects */
.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 15s linear infinite;
    /* Faster energy */
    gap: 3.5rem;
}

/* Smooth slow down on hover instead of hard pause */
.marquee-section:hover .marquee-content {
    animation-play-state: running;
    animation-duration: 40s;
}

.marquee-item {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    transition: all 0.3s ease;
}

/* Alternate styles for items */
.marquee-item:nth-child(odd) {
    color: #f1f5f9;
    -webkit-text-stroke: 1.5px #cbd5e1;
}

.marquee-item:nth-child(even) {
    color: #0f172a;
    position: relative;
}

/* Featured item with brand color */
.marquee-item:nth-child(3n) {
    color: var(--brand-blue);
}

.marquee-dot {
    width: 14px;
    height: 14px;
    background: var(--brand-blue);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 3.5rem;
        gap: 1.5rem;
    }
}

/* --- GLOBAL PAGE BANNER --- */
.page-banner {
    padding: 16rem 0 8rem;
    /* Large top padding to clear fixed header + visual space */
    background: var(--bg-color);
    text-align: center;
    overflow: hidden;
    /* For animations coming from outside */
}

.page-banner .banner-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    /* Responsive Giant Text */
    line-height: 1.1;
    color: var(--brand-blue);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.banner-title span {
    display: inline-block;
    /* For animations */
}

.banner-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

/* Secondary/Highlight Style in Titles */
.text-highlight {
    position: relative;
    color: var(--brand-blue);
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 100%;
    height: 0.2em;
    background: var(--brand-yellow);
    z-index: -1;
    opacity: 0.4;
    transform: scaleX(0);
    /* Animate this in main.js if desired, or keep static */
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.text-highlight.active::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .page-banner {
        padding: 12rem 0 5rem;
    }
}

.footer {
    padding: 10rem 0 3rem;
    background: #0f172a;
    /* Deep Slate */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Big Logo Watermark in Footer */
.footer::before {
    content: "APEXXA";
    position: absolute;
    bottom: -10%;
    right: -5%;
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 0.8;
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 8rem;
    align-items: start;
}

.footer-cta h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-top: -0.1em;
    /* Optical alignment with side col */
}

.footer-cta p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 500px;
}

.email-link {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 600;
    color: var(--brand-yellow);
    display: inline-block;
    position: relative;
    transition: all 0.4s ease;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand-yellow);
    transition: width 0.4s ease;
}

.email-link:hover {
    transform: translateX(10px);
}

.email-link:hover::after {
    width: 100%;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.column h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-yellow);
    margin-bottom: 2rem;
    font-weight: 700;
}

.column a {
    display: block;
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.column a:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--brand-blue);
    transform: translateY(-5px);
    border-color: var(--brand-blue);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 900px) {
    .footer {
        padding: 6rem 0 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 5rem;
        margin-bottom: 5rem;
    }
}

@media (max-width: 600px) {
    .footer-cta h2 {
        font-size: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* --- Enhanced Page Banner (Generic) --- */
.page-banner-enhanced {
    padding: 10rem 0 10rem;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.banner-bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 150%;
    background: radial-gradient(circle at 50% 30%, rgba(11, 61, 145, 0.08), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.banner-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.banner-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--brand-blue);
    display: block;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.banner-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--brand-blue);
}

.banner-title-large {
    font-family: var(--font-body);
    /* Modern Sans Base */
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    font-weight: 200;
    /* Ultra Light weight for entire heading */
    color: var(--text-color);
    margin: 0;
    letter-spacing: -0.03em;
}

.banner-title-large .italic-serif {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 200;
    /* Matching Ultra Light weight */
    color: var(--brand-blue);
}

.banner-desc p {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-top: 2rem;
    max-width: 450px;
}

/* Separator Object */
/* Separator Object 3D */
.banner-separator-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 5rem;
    perspective: 1000px;
}

.separator-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.separator-button {
    width: 100px;
    height: 100px;
    background: #3b82f6;
    border-radius: 50%;
    margin-left: auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    /* Larger icon */
    cursor: pointer;
    transform-style: preserve-3d;
    box-shadow:
        inset -10px -10px 20px rgba(0, 0, 0, 0.3),
        /* Inner shadow for depth */
        inset 10px 10px 20px rgba(255, 255, 255, 0.4),
        /* Highlight */
        0 20px 40px rgba(59, 130, 246, 0.3);
    /* Drop shadow */
    transition: transform 0.3s ease;
    animation: float-3d 6s ease-in-out infinite;
}

/* Continual 3D Floating Animation */
@keyframes float-3d {

    0%,
    100% {
        transform: translateY(0) rotateX(0deg);
    }

    50% {
        transform: translateY(-10px) rotateX(10deg);
    }
}

/* Icon 3D Spin (SVG) */
.separator-button svg.globe-symbol {
    width: 45%;
    /* Smaller, like reference */
    height: 45%;
    animation: spin-globe 12s linear infinite;
    transform-origin: center center;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
    /* Initial tilt to match 'global symbol' look */
    transform: rotate(25deg);
}

/* Modifying animation to only rotate, keeping tilt?
   Actually, 'spin-globe' overwrites transform.
   Let's wrap the rotation in a container or modify kf.
*/
@keyframes spin-globe {
    0% {
        transform: rotate(25deg);
    }

    100% {
        transform: rotate(385deg);
    }

    /* 25 + 360 */
}

/* Hover Interaction */
.separator-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow:
        inset -10px -10px 25px rgba(0, 0, 0, 0.4),
        inset 10px 10px 25px rgba(255, 255, 255, 0.5),
        0 30px 60px rgba(59, 130, 246, 0.5);
}

@media (max-width: 992px) {
    .page-banner-enhanced {
        padding: 14rem 0 6rem;
    }

    .separator-button {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

/* --- PREMIUM ALIGNED LAYOUTS --- */
.layouts-hero {
    padding: 12rem 0 8rem;
    background-color: #ffffff;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.layouts-gallery {
    padding: 8rem 0 12rem;
    background-color: #f8fafc;
    /* Very light slate */
}

.layouts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.layout-card-new {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    height: 100%;
    display: flex;
}

.layout-card-new .card-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.layout-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.1);
}

.card-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--brand-blue);
    opacity: 0.3;
    z-index: 10;
    font-family: var(--font-body);
}

.card-image-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f1f5f9;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.8s ease;
}

.layout-card-new:hover .card-image-box img {
    transform: scale(1.08);
}

.card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8a1515;
    /* Match user reference red */
    margin-bottom: 1rem;
    display: block;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.card-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .layouts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .layouts-grid {
        grid-template-columns: 1fr;
    }

    .layouts-hero {
        padding: 10rem 0 6rem;
    }
}

/* --- PREMIUM CONTACT PAGE --- */
/* --- PREMIUM CONTACT PAGE (REFINED) --- */
.contact-page-premium {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.contact-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--brand-blue);
    top: -10%;
    right: -10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--brand-yellow);
    bottom: 10%;
    left: -10%;
    opacity: 0.1;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--brand-blue);
    top: 40%;
    left: 30%;
    opacity: 0.05;
}

.contact-hero-premium {
    padding: 15rem 0 5rem;
    position: relative;
    z-index: 1;
}

.hero-content-wrap {
    max-width: 1000px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 800;
    color: var(--brand-blue);
    margin-bottom: 2.5rem;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--brand-blue);
}

/* --- UNIQUE CONTACT HERO (Split Typographic) --- */
.contact-hero-unique {
    padding: 16rem 0 8rem;
    position: relative;
    z-index: 2;
}

.unique-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 4rem;
}

.unique-huge-title {
    font-family: var(--font-body);
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 200;
    line-height: 0.85;
    letter-spacing: -0.06em;
    color: #0f172a;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.unique-huge-title .word-wrap {
    overflow: hidden;
    height: 1.1em;
    display: block;
}

.unique-huge-title .italic-brand {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--brand-blue);
    padding-left: 0.5em;
}

.hero-subline {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.4;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-subline .accent {
    color: #0f172a;
    font-weight: 600;
}

/* Abstract Geometry */
.abstract-geometry {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    animation: geo-spin 8s linear infinite;
}

.geo-orb {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-blue), #1e40af);
    border-radius: 50%;
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.3);
    animation: geo-float 4s ease-in-out infinite;
}

@keyframes geo-spin {
    from {
        transform: rotate(0deg) skew(10deg);
    }

    to {
        transform: rotate(360deg) skew(10deg);
    }
}

@keyframes geo-float {

    0%,
    100% {
        transform: translateY(0) scale(1.0);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@media (max-width: 900px) {
    .unique-hero-inner {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .abstract-geometry {
        width: 120px;
        height: 120px;
    }
}

.contact-main-section {
    padding: 5rem 0 15rem;
    position: relative;
    z-index: 1;
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 10rem;
    align-items: flex-start;
}

/* Left Panel */
.contact-details-panel {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.detail-value {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    color: #0f172a;
    margin: 0;
    font-weight: 200;
}

.detail-link {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    color: #0f172a;
    text-decoration: none;
    font-weight: 200;
    position: relative;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-link:hover {
    color: var(--brand-blue);
    transform: translateX(10px);
}

.detail-link:hover::after {
    width: 100%;
}

.social-list-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-link-item {
    font-size: 1.5rem;
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link-item .link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--brand-blue);
}

.social-link-item:hover {
    color: var(--brand-blue);
    transform: translateX(15px);
}

.social-link-item:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Right Panel: Form Glassmorphism */
.contact-form-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6rem;
    border-radius: 50px;
    box-shadow: 0 50px 120px rgba(15, 23, 42, 0.08);
    position: relative;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.input-wrap label {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475569;
    margin-bottom: 1.5rem;
}

.input-wrap input,
.input-wrap textarea,
.input-wrap select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    padding: 1.2rem 0;
    font-size: 1.4rem;
    font-family: inherit;
    color: #0f172a;
    font-weight: 300;
    transition: all 0.4s ease;
    border-radius: 0;
}

.select-modern-wrap {
    position: relative;
}

.select-modern-wrap::after {
    content: '↓';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1rem;
    color: #94a3b8;
}

.input-wrap select {
    appearance: none;
}

.input-wrap textarea {
    min-height: 150px;
    resize: none;
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-blue);
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.input-wrap input:focus~.input-focus-line,
.input-wrap textarea:focus~.input-focus-line,
.input-wrap select:focus~.input-focus-line {
    width: 100%;
}

.input-wrap input:focus,
.input-wrap textarea:focus,
.input-wrap select:focus {
    outline: none;
    border-color: transparent;
}

/* Studio Submit Button (Refined) */
.form-footer {
    margin-top: 3.5rem;
}

.studio-form-btn {
    appearance: none;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.btn-content-inner {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    position: relative;
}

/* --- NEW EDITORIAL CONTACT Page --- */
.contact-page-new {
    background: #ffffff;
}

.contact-banner-short {
    padding: 12rem 0 5rem;
    border-bottom: 1px solid #f1f5f9;
}

.contact-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--brand-blue);
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: block;
}

.banner-title {
    font-size: clamp(3rem, 7vw, 7.5rem);
    line-height: 1;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

/* Contact Main Grid */
.contact-main {
    padding: 8rem 0;
}

.contact-grid-sync {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 12rem;
    align-items: flex-start;
}

/* Form Styles */
.studio-form {
    max-width: 700px;
}

.form-row-sync {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.form-field {
    margin-bottom: 3rem;
}

.form-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
    margin-bottom: 1.2rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1.5px solid #e2e8f0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #0f172a;
    background: transparent;
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
}

/* Submit Button Custom */
.studio-submit-btn {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #0f172a;
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.studio-submit-btn:hover {
    transform: translateY(-5px);
    background: var(--brand-blue);
    box-shadow: 0 15px 30px rgba(11, 61, 145, 0.2);
}

.btn-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.4s ease;
}

.studio-submit-btn:hover .btn-arrow {
    transform: translateX(8px);
}

/* Info Column */
.contact-info-col {
    padding-top: 1rem;
}

.info-block {
    margin-bottom: 4rem;
}

.block-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.5;
}

.info-value address {
    font-style: normal;
}

.social-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-item {
    width: 50px;
    height: 50px;
    border: 1.5px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-item:hover {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}

@media (max-width: 1100px) {
    .contact-grid-sync {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 4rem;
    border: 1.5px solid #0f172a;
    border-radius: 200px;
    background: transparent;
    color: #0f172a;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-text-roll {
    position: relative;
    display: block;
    height: 2.2rem;
    overflow: hidden;
}

.roll-item {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0f172a;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 2.2rem;
}

.roll-item.hover {
    color: var(--brand-blue);
    position: absolute;
    top: 100%;
    left: 0;
}

.studio-form-btn:hover .original {
    transform: translateY(-100%);
}

.studio-form-btn:hover .hover {
    transform: translateY(-100%);
}

/* Liquid Circle Effect */
.btn-circle-wrap {
    width: 120px;
    height: 120px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.btn-circle-solid {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #0f172a;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-circle-solid svg {
    width: 36px;
    height: 36px;
}

.btn-circle-fill {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Hover States */
.studio-form-btn:hover .btn-circle-fill {
    bottom: 0;
    border-radius: 0;
}

.studio-form-btn:hover .btn-circle-solid {
    color: #ffffff;
    transform: rotate(45deg);
}

.studio-form-btn:hover .btn-circle-wrap {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

@media (max-width: 1200px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 8rem;
    }

    .contact-form-panel {
        padding: 4rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-hero-premium {
        padding: 12rem 0 4rem;
    }

    .hero-title-large {
        font-size: 4rem;
    }

    .btn-circle-wrap {
        width: 80px;
        height: 80px;
    }

    .roll-item {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }

    .btn-text-roll {
        height: 1.6rem;
    }
}