:root {
    --bg-primary: #000000;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --border-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1);
}

.splash-screen> :not(.splash-logo) {
    transition: opacity 0.25s ease-in-out;
}

.splash-screen.content-hidden> :not(.splash-logo) {
    opacity: 0;
}

.splash-screen.hidden {
    transform: translateY(-100%);
}

.splash-logo {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 3rem;
    text-align: center;
}

.splash-screen .loader {
    width: 3.75rem;
    height: 3.75rem;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #ff9800;
    /* Match project accent color */
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 2rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.splash-screen h2 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin: 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: transparent;
    z-index: 1000;
    margin-bottom: 0.625rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--text-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Dropdown Styles */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(1.5625rem);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    list-style: none;
    padding: 0;
    min-width: 11.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.5);
}

/* Invisible bridge to maintain hover between link and menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1.5625rem;
    left: 0;
    width: 100%;
    height: 1.5625rem;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(1.25rem);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.75rem;
}

.header-social-buttons {
    display: flex;
    gap: 1rem;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-icon img {
    position: relative;
    z-index: 2;
    width: 1.125rem;
    height: 1.125rem;
    filter: invert(1);
    transition: all 0.25s ease;
}

.btn-icon:hover img {
    filter: invert(0);
}

.btn-facebook:hover {
    background: hsl(214, 89%, 52%);
    border-color: hsl(214, 89%, 25%);
}

.btn-twitter:hover {
    background: hsl(203, 100%, 70%);
    border-color: hsl(203, 100%, 25%);
}

.btn-instagram::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-instagram:hover::after {
    opacity: 1;
}

.btn-instagram:hover {
    border-color: #d6249f;
}

.btn-whatsapp:hover {
    background: hsl(142, 70%, 49%);
    border-color: hsl(142, 75%, 25%);
}

.btn-icon:hover img {
    filter: invert(1);
}

/* Typography Utilities */
h1,
h2,
h3 {
    text-transform: uppercase;
}

/* Buttons */
button {
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
}

.btn-primary:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

/* Main Layout */
main {
    width: 100%;
}

/* Hero Intro Section */
.hero-intro {
    position: relative;
    width: 100%;
}

.hero-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/liquid-marbling-paint-texture-background-wallpaper.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

/* Video Article Section */
.video-article {
    padding: 0 8%;
    padding-top: 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.article-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}

.video-container {
    position: relative;
    width: 50%;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
    z-index: 1;
}

.rotating-text-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    width: 11.5625rem;
    height: 11.5625rem;
    z-index: -1;
    pointer-events: none;
}

.rotating-text-svg {
    width: 100%;
    height: 100%;
    animation: rotateClockwise 20s linear infinite;
}

.rotating-text {
    fill: #ff9800;
    font-size: 0.59375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@keyframes rotateClockwise {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cinematic-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.cinematic-video.active {
    opacity: 1;
    z-index: 1;
}

.cinematic-video.transitioning-in {
    opacity: 1;
    z-index: 2;
    transition: none;
    animation: swipeIn 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

.cinematic-video.transitioning-out {
    opacity: 0;
    z-index: 1;
}

@keyframes swipeIn {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

.video-text-top,
.video-text-bottom {
    position: absolute;
    font-size: clamp(2.2rem, 5.5vw, 6.5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 0.8;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}

.video-text-top {
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.video-text-bottom {
    bottom: 0;
    right: -10%;
    transform: translate(0, 50%);
}

/* Loading Bar */
.video-loading-bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    width: clamp(12rem, 30%, 18rem);
}

.loading-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 1.5rem;
}

.loading-bar-track {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.loading-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #ffffff;
    transition: width 0.1s linear;
}

.article-description {
    width: 25%;
    flex-shrink: 0;
}

.article-description h2 {
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 400;
    text-transform: none;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 4rem 0 3rem;
    background-color: #111;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    padding: 0 8%;
}

.footer-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 5rem;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    /* Centered title */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Symmetric columns */
    gap: 4rem;
    margin-bottom: 5rem;
    text-align: center;
    /* Consistent centering */
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 1.5rem;
}

.footer-info,
.footer-link {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff9800;
}

.footer-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-list li {
    margin-bottom: 0.5rem;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 4rem 0 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    /* Symmetric copyright */
    align-items: center;
}

.footer-bottom .copyright {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(1.875rem);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Specific entrance for tiles synced with splash screen */
.tile-entrance {
    opacity: 0;
    transform: translateY(1.875rem);
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: forwards;
    animation-name: none;
}

.start-animations .tile-entrance {
    animation-name: fadeUp;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

.delay-6 {
    animation-delay: 1.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Secondary Video Section */
.secondary-video-section {
    width: 100%;
    height: 65vh;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.fullscreen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Portfolio Marquee Section */
.portfolio-marquee-section {
    width: 100%;
    background-color: var(--bg-primary);
    padding: 2rem 0;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    animation: slideLeft 30s linear infinite;
}

.marquee-content h2 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 600;
    color: #444444;
    text-transform: none;
    margin: 0;
    line-height: 1.1;
    padding-right: 2rem;
}

@keyframes slideLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    padding: 0;
    background-color: var(--bg-primary);
}

.portfolio-grid-section .container {
    max-width: 100%;
    margin: 0;
    display: block;
}

.portfolio-grid-section.normal-scroll {
    background-color: #dddddd;
}

.portfolio-grid-section.normal-scroll .portfolio-item {
    position: relative;
    height: 100vh;
    padding: 2% 6%;
    transform: none !important;
    opacity: 1 !important;
    align-items: stretch;
    background-color: transparent;
}

.portfolio-grid-section.normal-scroll .portfolio-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
    color: #111111;
}

.portfolio-grid-section.normal-scroll .portfolio-image {
    height: 100%;
}

.portfolio-grid-section.normal-scroll .portfolio-title {
    color: #111111;
}

.portfolio-grid-section.normal-scroll .portfolio-category {
    color: #888888;
}

.portfolio-grid-section.normal-scroll .portfolio-text {
    color: #555555;
}

.portfolio-grid-section.normal-scroll .btn-view-project {
    color: #111111;
    border-color: #bbbbbb;
}

.portfolio-grid-section.normal-scroll .btn-view-project:hover {
    background-color: #111111;
    color: #ffffff;
}

.portfolio-item {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2% 8%;
    box-sizing: border-box;
    transform-origin: center center;
    will-change: transform, opacity;
    z-index: 1;
}

.portfolio-image {
    height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-image:hover img {
    transform: scale(1.05);
}

.portfolio-info {
    background-color: #111111;

    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 4%
}

.portfolio-category {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.portfolio-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.portfolio-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 31.25rem;
}

.btn-view-project {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-view-project:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

/* Responsive Grid */

/* Creative Vision Section */
.creative-vision-section {
    position: relative;
    padding: 10rem 8%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.creative-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/services-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}

.creative-vision-section .container {
    position: relative;
    z-index: 1;
    max-width: 56.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.section-label {
    display: block;
    font-size: 0.875rem;
    color: #ff9800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.vision-description {
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1.2;
    font-weight: 600;
    text-transform: none;
    color: var(--text-primary);
}

.underline-accent {
    position: relative;
    display: inline-block;
    color: #ff9800;
    text-decoration: underline #ff9800;
}

.typewriter-cursor {
    color: #ff9800;
    font-weight: 300;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.director-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.director-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.director-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll to Top Button */
.btn-scroll-top {
    position: fixed;
    bottom: 8rem !important;
    right: 1.5rem !important;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #000000;
    border: 1px solid #ff9800;
    color: #ff9800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.25rem);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0.25rem 0.9375rem rgba(255, 152, 0, 0.2);
}

.btn-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-scroll-top:hover {
    background: #ff9800;
    color: #000000;
    box-shadow: 0 0.375rem 1.25rem rgba(255, 152, 0, 0.4);
}

.btn-scroll-top svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-scroll-top:hover svg {
    transform: translateY(-0.1875rem);
}

/* Modern Design Section */
.modern-design-section {
    padding: 3rem 0;
    background-color: #f2f2f2;
    /* 95% white */
    position: relative;
    overflow: hidden;
    color: #000000;
}

.modern-design-section.dark-bg {
    background-color: #000000;
    color: #ffffff;
}

.modern-design-section.dark-bg .section-title {
    color: #ffffff;
}

.modern-design-section.dark-bg .btn-slider {
    background-color: #222222;
    border-color: #333333;
    color: #ffffff;
}

.modern-design-section.dark-bg .btn-slider:hover {
    background-color: #ff9800;
    border-color: #ff9800;
    color: #000000;
}

.modern-design-section.dark-bg .design-tile {
    background-color: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.4);
}

.modern-design-section.dark-bg .design-tile:hover {
    box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.6);
    border-color: #ff9800;
}

.modern-design-section.dark-bg .tile-title {
    color: #ffffff;
}

.modern-design-section.dark-bg .tile-desc {
    color: #bbbbbb;
}

.modern-design-section.dark-bg .tile-icon img {
    filter: invert(1) brightness(2);
}

.section-header {
    padding: 0 8%;
}

.header-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 4.5rem;
}

.modern-design-section .section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    color: #000000;
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.btn-slider {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ccc;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-slider svg {
    width: 1.5rem;
    height: 1.5rem;
}

.btn-slider:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.slider-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    /* Vertical padding for shadows */
    padding: 2rem 0;
    margin: -2rem 0;
}

.slider-container {
    display: flex;
    gap: 2%;
    padding-bottom: 2rem;
    will-change: transform;
}

.design-tile {
    flex: 0 0 26.65%;
    /* Exactly 3 tiles visible with 2% gaps */
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.03);
}

/* Added mild hover shadow */
.design-tile:hover {
    box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.2);
}

.tile-icon img {
    width: 5.5rem;
    height: 5.5rem;
    filter: none;
    /* Icons are black svgs */
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.design-tile:hover .tile-icon img {
    opacity: 1;
}

.tile-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
    color: #000000;
}

.tile-desc {
    color: #555555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.tile-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.tile-points li {
    font-size: 0.95rem;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tile-points li::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #ff9800;
    border-radius: 50%;
}

/* What We Do Section */
.what-we-do-section {
    background-color: hsl(0, 0%, 98%);
    overflow: hidden;
}

.grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    align-items: stretch;
}

.header-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;

    height: 100%;
    padding: 6rem 18%;
}

.what-we-do-title {
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    color: #111111;
    margin: 0;
    text-transform: none;
    letter-spacing: -0.03em;
}

.what-we-do-title .highlight {
    color: #ff9800;
}

.side-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
}

.side-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 1.875rem 3.75rem rgba(0, 0, 0, 0.1);
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-we-do-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 6rem 18%;
}

.what-we-do-text {
    line-height: 1.8;
    color: #444444;
    margin: 0;
}

.what-we-do-text-wrapper .btn-view-project {
    color: #111111;
    border-color: #bbbbbb;
    margin-top: 1.5rem;
}

.what-we-do-text-wrapper .btn-view-project:hover {
    background-color: #111111;
    color: #ffffff;
}

/* --- Team Page Styles --- */

.team-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3)), url('../assets/liquid-marbling-paint-texture-background-wallpaper.jpg');
    background-size: cover;
    background-position: center;
}

.page-header-title {
    z-index: 2;
}

.page-header-title .main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-top: 0.5rem;
}

.team-grid-section {
    padding: 6rem 8%;
    background-color: hsl(0, 0%, 95%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 75rem;
    margin: 0 auto;
}

.team-card {
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

/* removed old decorative element */

.team-card:hover {
    transform: translateY(-0.5rem);
}

.team-image-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-image-wrapper {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.team-card:hover .team-social-overlay {
    opacity: 1;
}

.team-social-buttons {
    display: flex;
    gap: 0.75rem;
    transform: translateY(1rem);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-social-buttons {
    transform: translateY(0);
}

.team-card .btn-icon {
    width: 2.25rem;
    height: 2.25rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border: none;
}

.team-card .btn-icon img {
    width: 1rem;
    height: 1rem;
    filter: none;
    /* Black icon on white background */
}

.team-card .btn-icon:hover img {
    filter: invert(1);
    /* White icon on hover (brand background) */
}

.team-card .btn-facebook:hover {
    background: hsl(214, 89%, 52%);
    border-color: hsl(214, 89%, 25%);
}

.team-card .btn-twitter:hover {
    background: hsl(203, 100%, 70%);
    border-color: hsl(203, 100%, 25%);
}

.team-card .btn-instagram:hover {
    border-color: #d6249f;
}

.team-card .btn-gmail:hover {
    background: #ea4335;
    border-color: #b31412;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111111;
    transition: color 0.3s ease;
}

.team-summary-section .member-name {
    color: #ffffff;
}

.team-summary-section .btn-view-project {
    color: #ffffff;
    border-color: #ffffff;
}

.team-summary-section .btn-view-project:hover {
    background-color: #ffffff;
    color: #000000;
}

.team-card:hover .member-name {
    color: #ff9800;
}

.member-role {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ff9800;
    font-weight: 600;
}

/* About Us Summary Section */
.about-summary-section {
    padding: 0;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.about-summary-section.light-bg {
    background-color: #f2f2f2;
}

.about-summary-section.light-bg .summary-title {
    color: #111111;
}

.about-summary-section.light-bg .summary-text {
    color: #444444;
}

.summary-flex-container {
    display: flex;
    align-items: stretch;
    min-height: 80vh;
    width: 100%;
}

.about-summary-section .summary-content {
    flex: 1;
    padding: 8rem 8% 8rem 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
}

.summary-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: var(--text-primary);
    text-transform: capitalize;
}

.summary-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.summary-video-wrapper {
    flex: 1.2;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    box-shadow: none;
}

.summary-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Services Page Styles */
.services-page-section {
    padding: 6rem 0;
    min-height: 40vh;
}

.services-tile-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
    padding: 2rem 0;
}

.services-tile-grid .design-tile {
    align-items: center;
    text-align: center;
}

.services-tile-grid .design-tile .btn-service {
    align-self: center;
}

.btn-service {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2.5rem;
    background-color: transparent;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
}

/* Welcome & Video Section */
.welcome-section {
    padding: 0;
    background-color: var(--bg-primary);
}

.welcome {
    background-color: #f2f2f2;
    color: hsl(0, 0%, 5%);
    padding: 5rem 25%;
}

.welcome-video-flex {
    display: flex;
    flex-direction: row;
}

/* ==========================================================================
   About Page Photo Slider
   ========================================================================== */

.about-photo-slider {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
    background: #000;
}

.photo-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.photo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.photo-slide.active {
    opacity: 1;
    visibility: visible;
}

.photo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.photo-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 4%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.photo-btn-slider {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-btn-slider:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.photo-btn-slider svg {
    width: 1.5rem;
    height: 1.5rem;
}

.photo-slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.photo-slider-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-slider-indicators .indicator.active {
    background: #fff;
    transform: scale(1.3);
}

.welcome-and-what-we-do-wrapper {
    flex: 1.75;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.welcome-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-transform: capitalize;
    line-height: 1.1;
    margin: 1.5rem 0;
    font-weight: 600;
}

.welcome-text {
    font-size: 1.125rem;
    max-width: 34.375rem;
}

.video-wrapper {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;

    padding: 0;
    margin: 0;
    min-height: 0%;
}

.welcome-video {
    width: 100%;
    height: 100%;
    object-fit: cover;

    padding: 0;
    margin: 0;
}

.what-we-do {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.what-we-do-left {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
    height: 100%;
}

.what-we-do-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-do-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    padding: 5%;
}

.what-we-do-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.what-we-do-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */


/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */

@media (max-width: 68.75rem) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 64rem) {
    .summary-flex-container {
        flex-direction: column;
        min-height: auto;
    }

    .about-summary-section .summary-content {
        padding: 6rem 8%;
        align-items: center;
        text-align: center;
    }

    .summary-video-wrapper {
        height: 50vh;
    }
}

@media (max-width: 61.9375rem) {
    .portfolio-grid-section .container {
        padding: 0 5%;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .portfolio-item {
        position: sticky;
        top: 6rem;
        height: auto;
        min-height: 70vh;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        gap: 0;
        border-radius: 0;
        overflow: hidden;
        background-color: #111111;
        box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.15);
    }

    .portfolio-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        flex-shrink: 1;
    }

    .portfolio-info {
        width: 100%;
        height: auto;
        padding: 2.5rem 2rem;
        background-color: #111111;
    }

    .portfolio-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .portfolio-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .btn-view-project {
        margin-top: 1.5rem;
    }

    .portfolio-grid-section.normal-scroll .container {
        gap: 1rem;

        height: fit-content;
        padding: 5%;
    }

    .portfolio-grid-section.normal-scroll .portfolio-item {
        top: 0;

        height: 80vh;
        padding: 0;
    }

    .what-we-do-section {
        padding: 4rem 5%;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .side-image-wrapper,
    .main-image-wrapper {
        aspect-ratio: 16 / 9;
        max-height: 40vh;
    }

    .header-group,
    .what-we-do-text-wrapper {
        padding: 2rem 5%;
    }

    .welcome-video-flex {
        flex-direction: column;
    }

    .btn-scroll-top {
        bottom: 10.5% !important;
        right: 3% !important;
        width: 3.5rem;
        height: 3.5rem;
    }
}

@media (max-width: 56.25rem) {
    .service-flex-item {
        flex-direction: column;
    }

    .service-image-container {
        flex: 0 0 100%;
        max-width: 100%;
        height: 17.5rem;
    }

    .service-content {
        padding: 2.5rem;
    }

    .navbar {
        flex-direction: row;
        gap: 0;
        padding: 1rem 1.5rem;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        /* Push it to the right */
    }

    .navbar nav {
        position: absolute;
        /* Remove from flex flow to fix spacing */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 100%;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
    }

    .nav-links.nav-open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .menu-toggle.nav-open .bar {
        position: absolute;
        top: 50%;
        left: 0;
        margin: 0;
    }

    .menu-toggle.nav-open .bar:nth-child(1) {
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-toggle.nav-open .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-1rem);
    }

    .menu-toggle.nav-open .bar:nth-child(3) {
        transform: translateY(-50%) rotate(-45deg);
    }

    .has-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        display: block;
        /* Ensure dropdown links are visible on mobile */
        margin-top: 1rem;
        padding-left: 0;
    }

    .has-dropdown:hover .dropdown-menu {
        display: block;
        transform: none;
    }

    .dropdown-menu a {
        font-size: 1.1rem;
        text-align: center;
        padding: 0.5rem 0;
    }

    .header-social-buttons {
        display: none;
    }

    .footer {
        padding: 2rem;
    }

    .footer-container {
        padding: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer-title {
        font-size: clamp(1.5rem, 4.5vw + 0.5rem, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
    }

    .footer-divider {
        margin: 0;
    }

    .footer-heading {
        font-size: .85rem;
        margin-bottom: .25rem;
    }

    .footer-info,
    .footer-link {
        font-size: .8rem;
    }

    .footer-social-list li {
        margin-bottom: 0.25rem;
    }

    .video-article {
        align-items: center;
        text-align: center;
        min-height: fit-content;
        padding-top: 5%;
        padding-bottom: 7.5%;
    }

    .article-content {
        display: contents;
    }

    .video-container {
        width: 80%;
        order: 1;
        margin-top: 25%;
        margin-bottom: 5%;
    }

    .video-loading-bar-container {
        order: 2;
        margin-top: 0;
        margin-bottom: 5%;
        align-self: flex-start;
        width: clamp(10rem, 20%, 15rem);
    }

    .article-description {
        width: 100%;
        order: 3;
    }

    .article-description h2 {
        font-size: .85rem;
        line-height: 1;
    }

    .secondary-video-section {
        height: 25vh;
        height: 25svh;
    }

    .portfolio-marquee-section {
        padding: 1rem 0;
    }

    .marquee-content h2 {
        font-size: 2.5rem;
        padding-right: 1rem;
    }

    .welcome {
        padding: 0 8% 4rem 8%;
    }

    .about-photo-slider {
        height: 25vh;
        height: 25svh;
    }
}

@media (max-width: 48rem) {
    .splash-logo {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .splash-screen h2 {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }

    .splash-screen .loader {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .creative-vision-section {
        padding: 5%;
        min-height: 50vh;
        min-height: 50svh;
    }

    .creative-vision-section .container {
        gap: 1rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .vision-description {
        font-size: clamp(1rem, 4vw, 2rem);
    }

    .director-info {
        gap: 0.125rem;
    }

    .director-name {
        font-size: 0.85rem;
    }

    .director-title {
        font-size: 0.75rem;
    }

    .modern-design-section {
        padding: 7.5% 0;
    }

    .header-content-row {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;

        gap: .5rem;

        margin: 0 0 .5rem 0;
        padding: 0;
    }

    .btn-slider {
        width: 100%;
        aspect-ratio: 1/1;
    }

    .btn-slider svg {
        width: 55%;
        height: 55%;
    }

    .design-tile {
        flex: 0 0 calc(100% - 3rem);
    }

    .about-summary-section .summary-content {
        padding: 4rem 5%;
    }

    .portfolio-grid-section .container {
        gap: 1rem;
        padding: 0% 5% 5% 5%;
    }

    .what-we-do-section {
        padding: 0;
    }

    .grid-container {
        gap: 0;
    }

    .header-group {
        gap: .75rem;
        padding: 7.5%;
    }

    .what-we-do {
        flex-direction: column;
        gap: 2.5rem;
    }

    .what-we-do-left {
        width: 100%;
        height: 15.625rem;
    }

    .main-image-wrapper {
        display: none;
    }

    .welcome {
        padding: 0 8% 4rem 8%;
    }

    .welcome-title {
        margin: 1rem 0;
    }

    .about-photo-slider {
        height: 25vh;
        height: 25svh;
    }
}

@media (max-width: 40.625rem) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-hero {
        height: 40vh;
        height: 40svh;
    }

    .team-grid-section {
        padding: 4rem 5%;
    }
}