/* OPTIMIZED: Consolidated all variables into one block */
:root {
    --color-black: #111111;
    --color-white: #ffffff;
    --color-text-dark: #222325;
    --color-text-grey: #62646a;
    --color-green: #00ac2c;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    height: auto;
    font-family: var(--font-main);
    background-color: var(--color-black);
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.home {
    margin: 0;
    padding: 0;
}

.main-container {
    background-color: var(--color-black);
    overflow-x: hidden;
    width: 100%;
    --home-section-gap: clamp(2.75rem, 6vw, 4.5rem);
}

body.home .main-container {
    margin: 0;
    padding-top: 0;
}

/* UPDATED: The header now moves into place while invisible, only appearing at the very end. */
@keyframes swap-animation {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    49% {
        transform: translateY(-100%);
        opacity: 0;
    }

    50% {
        transform: translateY(-100%);
        opacity: 0;
    }

    99% {
        transform: translateY(0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.header-hidden {
    transform: translateY(-110%);
}

.header.animate-to-white,
.header.animate-to-transparent {
    animation: swap-animation 0.7s ease-in-out;
}

.header.scrolled {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.menu-open {
    background-color: transparent;
    box-shadow: none;
}

.header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 101;
    transition: color 0.3s ease;
    color: var(--color-white);
}

.header.scrolled .logo {
    color: var(--color-text-dark);
}

.header.menu-open .logo {
    color: var(--color-white);
}

.logo-icon {
    height: 60px;
    width: auto;
    transition: filter 0.3s ease;
    filter: brightness(0) invert(1);
}

.header.scrolled .logo-icon {
    display: none;
}

.header.menu-open .logo-icon {
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    font-family: 'PP Neue Montreal', 'Inter', sans-serif;
    display: none;
    color: var(--color-text-dark);
}

.header.scrolled .logo-text {
    display: inline;
}

.header .logo-dot {
    color: #00ac2c;
}

.header .nav-links {
    display: flex;
}

.header .nav-links a {
    text-decoration: none;
    margin-left: 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    color: var(--color-white);
}

.header.scrolled .nav-links a {
    color: var(--color-text-grey);
}

/* TOP OF PAGE / TRANSPARENT HEADER: text remains white on hover */
.header .nav-links a:hover {
    color: var(--color-white);
}

/* SCROLLED UP / WHITE STICKY HEADER: text turns green on hover */
.header.scrolled .nav-links a:hover {
    color: #00ac2c;
}

.menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 101;
}

.menu-btn .line {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
    transition: all 0.3s ease;
}

.header.scrolled .menu-btn .line {
    background-color: var(--color-text-dark);
}

.menu-btn .line1 {
    top: 0;
}

.menu-btn .line2 {
    top: 50%;
    transform: translateY(-50%);
}

.menu-btn .line3 {
    bottom: 0;
}

.menu-btn.active .line1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-btn.active .line2 {
    opacity: 0;
}

.menu-btn.active .line3 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.menu-btn.active .line {
    background-color: var(--color-white);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    max-width: 400px;
    background-color: rgba(16, 16, 16, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-nav::-webkit-scrollbar {
    display: none;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav .menu-search-bar {
    width: 100%;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

.mobile-nav .menu-search-bar input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
    border-radius: 30px;
    padding: 0.8rem 1rem;
    color: var(--color-white);
    font-size: 1rem;
    font-family: var(--font-main);
}

.mobile-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--color-green);
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav a i {
    margin-right: 1.2rem;
    font-size: 1.4rem;
    color: var(--color-green);
    transition: transform 0.3s ease;
}

.mobile-nav a:hover i {
    transform: scale(1.2);
}

.support-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    width: 100%;
}

.support-section h4 {
    color: var(--color-green);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.support-section h4 i {
    margin-right: 0.8rem;
    font-size: 1.4rem;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.support-links a {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-white);
}

.support-links a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--color-green);
    transform: translateY(-3px);
}

.support-links a i {
    font-size: 1.8rem;
    margin-right: 1rem;
    transition: transform 0.3s ease;
}

.support-links a:hover i {
    transform: scale(1.1);
}

.support-links a .support-text {
    display: flex;
    flex-direction: column;
}

.support-links a span:first-child {
    font-size: 1rem;
    font-weight: 600;
}

.support-links a span:last-child {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.2rem;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.page1 {
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    overflow: hidden;
    margin-top: 0;
    padding: 0 4rem;
}

@supports (height: 100dvh) {
    .page1 {
        height: 100dvh;
        min-height: 100dvh;
    }
}

.page1 .background-video {
    position: absolute;
    top: -1.2rem;
    left: 50%;
    width: 100vw;
    height: calc(100% + 1.2rem);
    transform: translateX(-50%);
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.page1 .background-video .hero-bg-poster,
.page1 .background-video .hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.page1 .background-video .hero-bg-video {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.page1 .background-video .hero-bg-video.is-playing {
    opacity: 1;
}

.page1 .hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
    max-width: 65%;
}

.page1 h1 {
    font-size: clamp(1.5rem, 5vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    white-space: nowrap;
}

.page1 p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-top: 1rem;
    max-width: 600px;
    color: var(--color-white);
}

/* --- HERO BUTTONS STYLES --- */
.hero-buttons-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    align-items: center;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn.btn-primary {
    background-color: var(--color-green);
    color: var(--color-black);
}

.hero-btn.btn-primary:hover {
    background-color: #d8dde5;
    transform: translateY(-3px);
}

.hero-btn.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-btn.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-3px);
}

.hero-btn i {
    font-size: 1.2rem;
}


/* --- VIDEO POPUP STYLES --- */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    background-color: #181818;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-popup-overlay.active .video-popup-content {
    transform: scale(1);
}

.popup-close-btn {
    position: absolute;
    top: -45px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 10;
}

.popup-close-btn:hover {
    transform: rotate(90deg);
    background-color: var(--color-white);
    color: var(--color-black);
}

.video-frame-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 8px;
}

.video-frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-source-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.source-btn {
    padding: 0.6rem 1.5rem;
    background-color: #2a2a2a;
    color: #a0a0a0;
    border: 1px solid #444;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.source-btn:hover {
    background-color: #3a3a3a;
    color: var(--color-white);
}

.source-btn.active {
    background-color: var(--color-green);
    color: var(--color-black);
    border-color: var(--color-green);
}


/* --- SCROLL INDICATOR STYLES START (UPDATED) --- */
.scroll-indicator {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.scroll-indicator.indicator-hidden {
    opacity: 0;
    visibility: hidden;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 1.5px solid var(--color-white);
    border-radius: 12px;
    position: relative;
    margin-bottom: 0.5rem;
}

.scroll-indicator .scroll-wheel {
    width: 3px;
    height: 6px;
    background-color: var(--color-white);
    border-radius: 1.5px;
    position: absolute;
    top: 6px;
    left: 50%;
    animation: scroll-down 2.2s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 12px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
}

.scroll-indicator span {
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- SCROLL INDICATOR STYLES END --- */


.page-services {
    min-height: 80vh;
    width: 100%;
    padding: var(--home-section-gap) 4rem;
    background-color: var(--color-black);
    color: var(--color-white);
}

.page-services .hire_3d_artist {
    text-align: center;
    line-height: 1.5;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    padding-bottom: 30px;
}

.page-services .hire_3d_artist p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
}

.page-services .hire_3d_artist h3 {
    text-align: center;
    line-height: 1.5;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    padding-bottom: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(145deg, rgba(158, 111, 111, 0.04), rgba(255, 255, 255, 0.015));
    padding: clamp(1.2rem, 2vw, 1.5rem);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    isolation: isolate;
    transform: translateZ(0);
}

/* JS-Controlled Cursor State to prevent transition locking */
.service-card.hide-cursor,
.service-card.hide-cursor * {
    cursor: none !important;
}

.service-card:hover {
    transform: translateY(-6px) translateZ(0);
    border-color: rgba(255, 255, 255, 0.56);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.025));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.service-card h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.65rem);
    margin-bottom: 1rem;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
    color: var(--color-white);
    transition: color 0.4s ease;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card p {
    font-size: clamp(13px, 2vw, 1rem);
    line-height: 1.6;
    color: #b9bec7;
    transition: color 0.4s ease;
}

.service-card:hover p {
    color: #ffffff;
}

.white-bg-wrapper {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: var(--home-section-gap) 4rem;
}

.white-bg-wrapper>section {
    padding: 0;
}

.white-bg-wrapper>section+section {
    margin-top: var(--home-section-gap);
}

.section-title {
    position: relative;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 2.25rem;
    padding-bottom: 1rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title.dark {
    color: var(--color-text-dark);
}

.section-title.light {
    color: var(--color-white);
}

.animated-portfolio-title {
    font-family: "PP Neue Montreal", sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-text-dark);
    margin-bottom: 2.5rem;
    line-height: 1;
}

/* Character wrapper for text animation */
.char-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    clip-path: inset(100% 0 0 0);
}

.char {
    display: inline-block;
}

.why-us-title {
    font-size: clamp(0.82rem, 4.1vw, 5.5rem);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.05;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
}

.why-us-title .brand-lock {
    white-space: nowrap;
    display: inline-block;
}

.work-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: clamp(2.2rem, 4vw, 3.5rem);
}

.work-item:nth-child(even) {
    flex-direction: row-reverse;
}

.work-item .image-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.work-item img,
.work-item video {
    width: 100%;
    height: auto;
    display: block;
}

.work-item .text-content {
    flex: 1;
    padding: 0 2rem;
}

.work-item h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.work-item h3 span {
    color: var(--color-green);
}

.work-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.work-item .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.work-item .tags span {
    background-color: #e0e0e0;
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* ==========================================================================
   EXPANDING VIDEO SHOWCASE SECTION — CLIP-PATH REVEAL
   ========================================================================== */

.expanding-showcase-section {
    position: relative;
    width: 100%;
    /* Natural height — no dead-space timeline needed, container is in flow */
    margin-top: clamp(2rem, 4vw, 4rem);
    margin-bottom: clamp(2.2rem, 4vw, 3.5rem);
    background-color: transparent;
    padding: 0;
}

.expanding-showcase-container {
    /* Normal flow element — scrolls naturally at all times */
    width: 100%;
    height: clamp(260px, 56.25vw, 680px);
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    /* clip-path drives the reveal; border-radius lives inside inset() */
    --reveal-inset-v: 17.5%;
    --reveal-inset-h: 17.5%;
    clip-path: inset(var(--reveal-inset-v) var(--reveal-inset-h) round 15px);
    /* GPU compositing layer — no animated transform */
    transform: translateZ(0);
    will-change: clip-path;
}

.expanding-showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: #000;
    border: none;
    outline: none;
    box-shadow: none;
    /* Fully static — GPU layer only */
    transform: translateZ(0);
    will-change: transform;
}

.before-after-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    cursor: ew-resize;
}

.before-after-slider.is-dragging {
    cursor: grabbing;
}

.before-after-slider>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.before-after-slider>img.after-image {
    position: relative;
    height: auto;
}

.before-image {
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0px;
    height: 100%;
    background-color: transparent;
    transform: translateX(-50%);
    pointer-events: none;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.before-after-slider.is-dragging .slider-handle::before {
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-handle::after {
    content: '\ea64';
    font-family: 'remixicon';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-size: 1.5rem;
}

.page-fiverr-gallery {
    padding-bottom: 0;
}

.gallery-grid {
    column-count: 4;
    column-gap: 1.5rem;
}

.gallery-item {
    margin-bottom: 1.5rem;
    break-inside: avoid;
    transform: translate3d(0, 0, 0);
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translate3d(0, var(--gallery-scroll-offset, 0px), 0) scale(1);
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease, filter 420ms ease;
    will-change: transform;
}

.gallery-item:hover,
.gallery-item:focus-within {
    transform: translate3d(0, -8px, 0);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
    transform: translate3d(0, var(--gallery-scroll-offset, 0px), 0) scale(1.035);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

@media (prefers-reduced-motion: reduce) {

    .gallery-item,
    .gallery-item img {
        transition: none;
    }

    .gallery-item,
    .gallery-item:hover,
    .gallery-item:focus-within {
        transform: none;
    }

    .gallery-item img,
    .gallery-item:hover img,
    .gallery-item:focus-within img {
        transform: none;
    }
}

.page-process+.page-testimonials {
    margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.page-testimonials {
    padding: 0;
    text-align: center;
}

.testimonial-header h2 {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.testimonial-header p {
    font-size: 1.1rem;
    color: var(--color-text-grey);
    margin-bottom: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    text-align: left;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-text span {
    color: var(--color-text-dark);
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    color: var(--color-text-dark);
}

.author-details p {
    font-size: 0.9rem;
    color: var(--color-text-grey);
    margin: 0;
}

.footer {
    padding: 4rem;
    text-align: center;
    background-color: var(--color-black);
}

.footer h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

.footer h2 span {
    color: var(--color-green);
}

.footer-socials {
    margin-bottom: 2rem;
}

.footer-socials a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 2rem;
    margin: 0 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-socials a:hover {
    color: var(--color-green);
    transform: translateY(-5px);
}

.footer .email-link {
    color: var(--color-green);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 2px solid var(--color-green);
    transition: background-color 0.3s;
}

.footer .email-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer .copyright {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #888;
}

.page-why-us {
    padding: 0;
}

.why_choose_us .why-us-guarantee {
    margin-bottom: 3rem;
}

.why-us-item {
    padding: 1.5rem 0 1.5rem 4rem;
}

.why-us-item::before {
    font-size: 1.5rem;
    top: 1.4rem;
}

.why-us-item h3 {
    font-size: 1.5rem;
}

.why_choose_us .why-us-intro,
.why_choose_us .why-us-guarantee {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 0 auto;
    font-size: 1.2rem;
    color: var(--color-text-grey);
    line-height: 1.2;
}

.why_choose_us .why-us-guarantee {
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    font-size: clamp(1.3rem, 3vw, 1rem);
    margin-top: 10px;
}

.why-us-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    counter-reset: why-us-counter;
}

.why-us-item {
    position: relative;
    padding: 0.5rem 0 0.5rem 2.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.why-us-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.why-us-item::before {
    counter-increment: why-us-counter;
    content: "0" counter(why-us-counter);
    position: absolute;
    left: 0;
    top: 1.3rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-green);
}

.why-us-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.2rem;
}

.why-us-item p {
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--color-text-grey);
    margin: 0;
}

.page-process {
    padding: 0;
    text-align: center;
}

.process-timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 0 auto 2.2rem auto;
    max-width: 1000px;
}

.process-line {
    position: absolute;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 4px;
    background-image: linear-gradient(to right, #ccc 50%, transparent 50%);
    background-size: 10px 4px;
    z-index: 1;
    transform-origin: left;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    z-index: 3;
}

.progress-circle-container {
    width: 120px;
    height: 120px;
    position: relative;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 42%, #ffffff 52%, #f4f5f7 100%);
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .progress-circle-container {
    transform: scale(1.05);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(17, 17, 17, 0.12);
}

.progress-ring {
    width: 100%;
    height: 100%;
}

.progress-ring-bg {
    fill: var(--color-white);
    stroke: #cfd4db;
    stroke-width: 8;
}

.progress-ring-circle {
    fill: none;
    stroke: #1b1f25;
    stroke-width: 8;
    stroke-linecap: round;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
    transition: stroke 0.3s ease;
}

.process-step:hover .progress-ring-circle,
.process-step.active .progress-ring-circle {
    stroke: #0d0f13;
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

.process-step:hover .progress-percentage,
.process-step.active .progress-percentage {
    color: #111111;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    max-width: 150px;
    margin: 0 auto;
}

.process-descriptions-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    min-height: clamp(4.5rem, 8vw, 6.25rem);
    position: relative;
}

.process-description {
    display: none;
}

.process-description.active {
    display: block;
}

.process-description p {
    font-size: 1.1rem;
    color: var(--color-text-grey);
    line-height: 1.6;
}

.page-faq {
    padding: 0;
}

.faq-container {
    max-width: 900px;
    margin: 1.5rem auto 0 auto;
    border-top: 1px solid #e9ecef;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    cursor: pointer;
    background-color: #fff;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    padding-right: 1rem;
}

.faq-icon {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-green);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-icon {
    transform: scale(1.1);
}

.faq-icon .icon-line-h,
.faq-icon .icon-line-v {
    position: absolute;
    background-color: var(--color-green);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-icon .icon-line-h {
    width: 14px;
    height: 2px;
}

.faq-icon .icon-line-v {
    width: 2px;
    height: 14px;
}

.faq-answer {
    display: none;
}

.faq-answer p {
    padding: 0 1rem 1.5rem 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-grey);
    margin: 0;
}

.faq-item.active .faq-icon .icon-line-v {
    transform: rotate(90deg) scaleX(0);
}

.faq-item.active .faq-question-text {
    color: var(--color-text-dark);
}

.faq-item.active .faq-answer {
    display: block;
}

/* --- CUSTOM CURSOR STYLES --- */
.cursor-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999 !important;
    opacity: 0.30;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.25s ease;
    isolation: isolate;
}

.custom-cursor {
    width: 80px;
    height: 80px;
    background-color: var(--color-white);
    border-radius: 50%;
    position: relative;
    /* Changed to relative for positioning burst */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Added smooth transition */
}

.cursor-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
}

.cursor-wrapper.is-view-mode .custom-cursor {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cursor-wrapper.is-view-mode .cursor-text {
    color: var(--color-white);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cursor-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background-color: var(--color-white);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    /* Initially hidden */
    z-index: -1;
    /* Position behind the main cursor */
    opacity: 0;
}

.cursor-burst.is-bursting {
    animation: cursorBurstPop 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cursorBurstPop {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }

    to {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}


@media (max-width: 992px) {
    .process-timeline-container {
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .process-timeline-container::-webkit-scrollbar {
        display: none;
    }

    .process-line {
        width: 550px;
        left: 70px;
    }

    .process-step {
        flex-shrink: 0;
        width: 140px;
        margin: 0 0.5rem;
    }

    .progress-circle-container {
        width: 90px;
        height: 90px;
    }

    .progress-percentage {
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 0.9rem;
        max-width: 120px;
    }

    .gallery-grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {

    .main-container {
        --home-section-gap: clamp(2rem, 8vw, 2.75rem);
    }

    /* --- HIDE SCROLL INDICATOR ON MOBILE --- */
    .scroll-indicator {
        display: none;
    }

    /* --- HIDE CUSTOM CURSOR ON MOBILE --- */
    .cursor-wrapper {
        display: none !important;
    }

    .page1 {
        padding: 0 1rem;
    }

    .page1 .hero-content {
        max-width: 100%;
    }

    .header {
        padding: 1rem;
    }

    .header .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .mobile-nav {
        padding: 100px 1rem 2rem;
    }

    .page-services {
        padding: var(--home-section-gap) 1rem;
        background-color: var(--color-white);
    }

    .page-services .hire_3d_artist h3 {
        color: var(--color-text-dark);
    }

    .page-services .hire_3d_artist p {
        color: var(--color-text-grey);
    }

    .page-services .section-title.light {
        color: var(--color-text-dark);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
        background-color: var(--color-white);
        border: 1px solid #e9ecef;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        flex-direction: column;
        align-items: flex-start;
    }

    .service-card h3 {
        color: var(--color-text-dark);
        font-size: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.35;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .service-card p {
        color: var(--color-text-grey);
        width: 100%;
    }

    .service-card:hover h3 {
        color: var(--color-text-dark);
    }

    .service-card:hover p {
        color: var(--color-text-grey);
    }

    .white-bg-wrapper {
        padding: var(--home-section-gap) 1rem;
    }

    .work-item,
    .work-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .work-item .text-content {
        padding: 2rem 0;
    }

    .work-item .text-content p {
        text-align: left;
    }

    .work-item h3 {
        font-size: 1.8rem;
    }

    .footer {
        padding: 3rem 1rem;
    }

    .footer h2 {
        margin-bottom: 1.5rem;
    }

    .footer-socials {
        margin-bottom: 1.5rem;
    }

    .support-links a {
        padding: 0.8rem;
    }

    .support-links a i {
        font-size: 1.5rem;
    }

    .support-links a span:first-child {
        font-size: 0.95rem;
    }

    .support-links a span:last-child {
        font-size: 0.8rem;
    }

    .gallery-grid {
        column-count: 2;
    }

    .page-why-us {
        padding: 0;
    }

    .why-us-item {
        padding-left: 3.5rem;
    }

    .why-us-item::before {
        top: 1.3rem;
    }

    .why-us-item h3 {
        font-size: 1.4rem;
    }

    .why-us-item p {
        font-size: 1rem;
    }

    .faq-question-text {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 1.2rem 0.5rem;
    }

    .faq-answer p {
        padding: 0 0.5rem 1.2rem 0.5rem;
        font-size: 1rem;
    }

    .hero-buttons-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .popup-close-btn {
        top: 10px;
        right: 10px;
        background-color: rgba(0, 0, 0, 0.5);
        border: none;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 1;
    }

    .work-item h3 {
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .logo-icon {
        height: 30px;
    }

    .why-us-title {
        font-size: clamp(0.82rem, 4.1vw, 5.5rem);
        line-height: 1.05;
        white-space: nowrap;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: var(--color-white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-green), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Footer CTA Section */
.footer-cta {
    text-align: center;
    padding: 5rem 0 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--color-white);
}

.footer-cta h2 span {
    color: var(--color-green);
    position: relative;
    display: inline-block;
}

.footer-cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-btn.btn-primary {
    background-color: var(--color-green);
    color: var(--color-black);
}

.footer-btn.btn-primary:hover {
    background-color: #d8dde5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.footer-btn.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-btn.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-3px);
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer About/Company Info */
.footer-about {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    font-weight: 700;
    color: var(--color-white);
}

.footer-logo .logo-dot {
    color: var(--color-green);
}

.footer-description {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-badges .badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-green);
    transform: translateX(5px);
}

.footer-badges .badge i {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--color-green);
}

.footer-badges .badge span {
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    font-weight: 500;
    color: var(--color-white);
}

/* Footer Column Titles */
.footer-column-title {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-green);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    color: var(--color-green);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-contact li i {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--color-green);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact li div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-contact .contact-label {
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-align: left;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-green);
}

.footer-contact li div span:not(.contact-label) {
    color: #b0b0b0;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
}

/* Newsletter */
.footer-newsletter {
    margin-top: 1rem;
}

.footer-newsletter h4 {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.footer-newsletter p {
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    color: #888;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.4rem;
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: var(--color-green);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.6rem 1rem;
    color: var(--color-white);
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    font-family: var(--font-main);
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    background: var(--color-green);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background: #d8dde5;
    transform: scale(1.1);
}

.newsletter-form button i {
    color: var(--color-black);
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.copyright {
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    color: #888;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: clamp(0.75rem, 0.95vw, 0.85rem);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-green);
}

.footer-legal .separator {
    color: #555;
    font-size: clamp(0.7rem, 0.9vw, 0.8rem);
}

/* Footer Socials */
.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 0.75rem;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b0b0;
    text-decoration: none;
    margin: 0;
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--color-green);
    border-color: var(--color-green);
    color: var(--color-black);
    transform: translateY(-5px);
}

.footer-socials a i {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
}

/* ============================================
   FOOTER RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
        gap: 2rem;
    }

    .footer-about {
        padding-right: 1rem;
    }
}

@media (max-width: 992px) {
    .footer-container {
        padding: 0 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
        max-width: 600px;
    }

    .footer-badges {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1rem;
    }

    .footer-cta {
        padding: 3rem 0 2.5rem;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }

    .footer-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .footer-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .footer-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-badges {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 0;
    }

    .footer-bottom-left {
        width: 100%;
    }

    .footer-bottom-right {
        width: 100%;
    }

    .footer-socials {
        width: 100%;
        justify-content: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-cta h2 {
        font-size: 1.8rem;
    }

    .footer-logo .logo-text {
        font-size: 1.5rem;
    }

    .footer-badges .badge {
        padding: 0.6rem 1rem;
    }

    .footer-badges .badge i {
        font-size: 1.1rem;
    }

    .footer-badges .badge span {
        font-size: 0.85rem;
    }

    .footer-socials {
        gap: 0.65rem;
    }

    .footer-socials a {
        width: 38px;
        height: 38px;
    }

    .footer-socials a i {
        font-size: 1rem;
    }
}