@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Red Hat Display", sans-serif;
    background-color: #000000;
    color: #fff;
}
.hero {
    background-color: #1A1A1A;
    padding: 4rem 1.5rem 5rem;
    min-height: calc(70vh - 80px);
    display: flex;
    align-items: center;
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
}

.hero__title {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero__prefix {
    font-size: clamp(0.875rem, 1.2vw, 1.125rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.hero__brands,
.hero__visible {
    display: block;
    font-size: clamp(3.5rem, 11vw, 9.5rem);
    font-weight: 900;
    line-height: 0.88;
    color: #ffffff;
}

.hero__visible {
    background-image: linear-gradient(180deg, #ffe3a1 0%, #d29e31 45%, #8b6110 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero__tagline {
    flex: 0 1 500px;
    max-width: 500px;
    font-size: clamp(0.8125rem, 1vw, 1.25rem);
    font-weight: 400;
    line-height: 1.55;
    color: #ffffff;
    text-align: right;
    margin: 0;
}

@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes hero-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero__prefix,
.hero__brands,
.hero__tagline {
    opacity: 0;
    animation: hero-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__prefix {
    animation-delay: 0.15s;
}

.hero__brands {
    animation-delay: 0.35s;
}

.hero__visible {
    opacity: 0;
    animation: hero-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.55s;
}

.hero__tagline {
    animation-delay: 0.75s;
}

@media (prefers-reduced-motion: reduce) {
    .hero__prefix,
    .hero__brands,
    .hero__visible,
    .hero__tagline {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        padding: 3rem 2rem 4rem;
        min-height: auto;
    }

    .hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }

    .hero__tagline {
        flex: none;
        max-width: 480px;
        text-align: left;
        font-size: 0.9375rem;
    }

    .hero__brands,
    .hero__visible {
        font-size: clamp(3rem, 14vw, 6.5rem);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero {
        padding: 2.5rem 1rem 3rem;
    }

    .hero__inner {
        gap: 2rem;
    }

    .hero__prefix {
        font-size: 0.8125rem;
        margin-bottom: 0.35rem;
    }

    .hero__brands,
    .hero__visible {
        font-size: clamp(2.75rem, 18vw, 4.25rem);
        line-height: 0.92;
    }

    .hero__tagline {
        max-width: 100%;
        font-size: 0.875rem;
        line-height: 1.5;
    }
}


.video-section {
    width: 100%;
    background-color: #1A1A1A;
    overflow: hidden;
    padding-bottom: 4rem;
}

.video-section__wrapper {
    width: 100%;
    line-height: 0;
}

.video-section__player {
    display: block;
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1024px) {
    .video-section__player {
        max-height: 60vh;
    }
}

@media (max-width: 640px) {
    .video-section__player {
        max-height: 50vh;
        min-height: 200px;
    }
}


.elevator {
    background-color: #1A1A1A;
    padding: clamp(6rem, 8vw, 6rem);
}

.elevator__inner {
    max-width: 1700px;
    margin: 0 auto;
}

.elevator__heading {
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: 0.02em;
    text-align: center;
    font-size: clamp(1.75rem, 4.8vw, 3.25rem);
    color: #ffffff;
}

.elevator__line {
    display: block;
}

.elevator__line--1 {
    margin-bottom: 0.15em;
}

.elevator__bold {
    font-weight: 800;
}

.elevator__light {
    font-weight: 800;
}

/* Scroll-triggered animation (runs when .is-visible is added) */
@keyframes elevator-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.elevator__anim {
    opacity: 0;
    animation: elevator-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.elevator.is-visible .elevator__anim--1 {
    animation-play-state: running;
    animation-delay: 0.1s;
}

.elevator.is-visible .elevator__anim--2 {
    animation-play-state: running;
    animation-delay: 0.35s;
}

.elevator.is-visible .elevator__anim--3 {
    animation-play-state: running;
    animation-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .elevator__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .elevator {
        padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
    }

    .elevator__heading {
        font-size: clamp(1.5rem, 5.5vw, 1.8rem);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .elevator {
        padding: 2.5rem 1rem;
    }

    .elevator__heading {
        font-size: clamp(1.35rem, 7vw, 1rem);
        line-height: 1.12;
    }
}

/* Gallery / Projects */
.gallery {
    background-color: #1A1A1A;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}

.gallery__inner {
    max-width: 1700px;
    margin: 0 auto;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, 2vw, 1.25rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.gallery__item {
    overflow: hidden;
    border-radius: 2px;
    line-height: 0;
}

.gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

@keyframes gallery-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.gallery__anim {
    opacity: 0;
    animation: gallery-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.gallery.is-visible .gallery__item:nth-child(1).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.05s;
}

.gallery.is-visible .gallery__item:nth-child(2).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.15s;
}

.gallery.is-visible .gallery__item:nth-child(3).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.25s;
}

.gallery.is-visible .gallery__item:nth-child(4).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.35s;
}

.gallery.is-visible .gallery__item:nth-child(5).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.45s;
}

.gallery.is-visible .gallery__item:nth-child(6).gallery__anim {
    animation-play-state: running;
    animation-delay: 0.55s;
}

@media (prefers-reduced-motion: reduce) {
    .gallery__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery {
        padding: 2rem 1rem;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery__item img {
        aspect-ratio: 16 / 10;
    }
}

/* Services */
.services {
    background-color: #1A1A1A;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 8vw, 10rem);
}

.services__inner {
    max-width: 1700px;
    margin: 0 auto;
}

.services__heading {
    text-transform: uppercase;
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    color: #ffffff;
}

.services__heading-bold {
    font-weight: 800;
}

.services__heading-light {
    font-weight: 800;
}

.services__list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(151, 151, 151, 0.2);
}

.services__item {
    border-bottom: 1px solid rgba(151, 151, 151, 0.2);
}

.services__link {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    padding: clamp(1.35rem, 3vw, 2rem) 0;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.services__link:hover,
.services__link:focus-visible {
    opacity: 0.75;
}

.services__bullet {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border: 2px solid #c5e836;
    border-radius: 50%;
    background: transparent;
}

.services__name {
    flex: 1;
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.services__arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.9;
}

.services__arrow svg {
    width: clamp(18px, 2vw, 22px);
    height: clamp(18px, 2vw, 22px);
}

@keyframes services-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.services__anim {
    opacity: 0;
    animation: services-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.services.is-visible .services__anim--heading {
    animation-play-state: running;
    animation-delay: 0.05s;
}

.services.is-visible .services__item:nth-child(1).services__anim {
    animation-play-state: running;
    animation-delay: 0.2s;
}

.services.is-visible .services__item:nth-child(2).services__anim {
    animation-play-state: running;
    animation-delay: 0.35s;
}

.services.is-visible .services__item:nth-child(3).services__anim {
    animation-play-state: running;
    animation-delay: 0.5s;
}

.services.is-visible .services__item:nth-child(4).services__anim {
    animation-play-state: running;
    animation-delay: 0.65s;
}

@media (prefers-reduced-motion: reduce) {
    .services__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .services {
        padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .services__heading {
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 2.5rem 1rem;
    }

    .services__link {
        gap: 0.85rem;
        padding: 1.25rem 0;
    }

    .services__bullet {
        width: 10px;
        height: 10px;
    }

    .services__name {
        font-size: 1rem;
    }
}

/* Clients */
.clients {
    background-color: #1A1A1A;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.partners {
    background-color: #1A1A1A;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
}

.clients__inner {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.clients__heading {
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
}

.clients__heading-bold {
    font-weight: 800;
}

.clients__heading-light {
    font-weight: 800;
}

.clients__track {
    display: flex;
    width: max-content;
    animation: clients-marquee 48s linear infinite;
    animation-play-state: paused;
}

.clients.is-visible .clients__track {
    animation-play-state: running;
}

.partners.is-visible .clients__track {
    animation-play-state: running;
}

.clients__marquee:hover .clients__track {
    animation-play-state: paused;
}

.clients.is-visible .clients__marquee:hover .clients__track {
    animation-play-state: paused;
}

.partners.is-visible .clients__marquee:hover .clients__track {
    animation-play-state: paused;
}

@keyframes clients-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.clients__grid {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    list-style: none;
    margin: 0;
    padding: 0 0.5rem;
}

.clients__item {
    flex-shrink: 0;
}

.clients__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(120px, 14vw, 180px);
    height: clamp(120px, 14vw, 180px);
    border-radius: 50%;
    background-color: #222222;
    padding: clamp(1rem, 2vw, 1.5rem);
}

.clients__logo-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@keyframes clients-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.clients__anim {
    opacity: 0;
    animation: clients-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.clients.is-visible .clients__anim--heading {
    animation-play-state: running;
    animation-delay: 0.05s;
}

.partners.is-visible .clients__anim--heading {
    animation-play-state: running;
    animation-delay: 0.05s;
}

@media (prefers-reduced-motion: reduce) {
    .clients__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }

    .clients__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .clients__grid[aria-hidden="true"] {
        display: none;
    }

    .clients__marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (max-width: 640px) {
    .clients {
        padding: 2.5rem 1rem;
    }

    .partners {
        padding: 2rem 1rem 2.5rem;
    }

    .clients__heading {
        margin-bottom: 2rem;
    }

    .clients__logo-wrap {
        width: 110px;
        height: 110px;
        padding: 0.85rem;
    }

    .clients__grid {
        gap: 1rem;
    }

    .clients__track {
        animation-duration: 48s;
    }
}

/* Why Oneroad Media */
.why {
    background-color: #1A1A1A;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 4vw, 3rem);
}

.why__inner {
    max-width: 1700px;
    margin: 0 auto;
    text-align: center;
}

.why__heading {
    text-transform: uppercase;
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
}

.why__heading-bold {
    font-weight: 800;
}

.why__heading-light {
    font-weight: 800;
}

.why__text {
    max-width: 720px;
    margin: 0 auto clamp(2.5rem, 5vw, 4rem);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
}

.why__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.why__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.why__stat-value {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.why__stat-label {
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    font-weight: 400;
    line-height: 1.35;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    max-width: 12rem;
}

@keyframes why-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.why__anim {
    opacity: 0;
    animation: why-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.why.is-visible .why__anim--heading {
    animation-play-state: running;
    animation-delay: 0.05s;
}

.why.is-visible .why__text.why__anim {
    animation-play-state: running;
    animation-delay: 0.2s;
}

.why.is-visible .why__stat:nth-child(1).why__anim {
    animation-play-state: running;
    animation-delay: 0.35s;
}

.why.is-visible .why__stat:nth-child(2).why__anim {
    animation-play-state: running;
    animation-delay: 0.45s;
}

.why.is-visible .why__stat:nth-child(3).why__anim {
    animation-play-state: running;
    animation-delay: 0.55s;
}

.why.is-visible .why__stat:nth-child(4).why__anim {
    animation-play-state: running;
    animation-delay: 0.65s;
}

@media (prefers-reduced-motion: reduce) {
    .why__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .why__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }

    .why__stat-label {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .why {
        padding: 2.5rem 1rem;
    }

    .why__text {
        margin-bottom: 2rem;
    }

    .why__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .why__stat-value {
        font-size: clamp(2.25rem, 12vw, 1.5rem);
    }
}

/* Powering Dubai's Digital Landscape */
.landscape {
    background-color: #1A1A1A;
}

.landscape__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 8vw, 10rem);
}

.landscape__heading {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: 0.02em;
    font-size: clamp(1.75rem, 4.5vw, 3.25rem);
    flex: 0 1 auto;
    color: #ffffff;
}

.landscape__line {
    display: block;
}

.landscape__line--bold {
    font-weight: 800;
}

.landscape__line--light {
    font-weight: 800;
}

.landscape__text {
    flex: 0 1 420px;
    max-width: 420px;
    margin: 0;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.55;
    color: #ffffff;
    text-align: left;
}

@keyframes landscape-slide-left {
    from {
        opacity: 0;
        transform: translate3d(-32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes landscape-slide-right {
    from {
        opacity: 0;
        transform: translate3d(32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.landscape__anim {
    opacity: 0;
    animation-duration: 0.85s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.landscape__anim--left {
    animation-name: landscape-slide-left;
}

.landscape__anim--right {
    animation-name: landscape-slide-right;
}

.landscape.is-visible .landscape__anim--left {
    animation-play-state: running;
    animation-delay: 0.1s;
}

.landscape.is-visible .landscape__anim--right {
    animation-play-state: running;
    animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .landscape__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .landscape__inner {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
        gap: 2rem;
    }

    .landscape__text {
        flex: 0 1 340px;
        max-width: 340px;
    }
}

@media (max-width: 640px) {
    .landscape__inner {
        flex-direction: column;
        align-items: center;
        padding: 2.5rem 1rem;
        gap: 1.5rem;
    }

    .landscape__heading {
        font-size: clamp(1.5rem, 7vw, 2rem);
        text-align: center;
    }

    .landscape__text {
        flex: none;
        max-width: 100%;
        text-align: center;
        font-size: 0.9375rem;
    }
}

/* Our media points locations */
.points-locations {
    background-color: #1A1A1A;
    padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 5rem);
}

.points-locations__inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.points-locations__heading {
    margin: 0 0 clamp(1rem, 2vw, 1.25rem);
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.points-locations__heading-bold {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
}

.points-locations__heading-light {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
}

.points-locations__text {
    max-width: 720px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    font-size: clamp(0.875rem, 1.4vw, 1.125rem);
    line-height: 1.55;
    color: #fff;
}

.points-locations__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-items: center;
    gap: clamp(1.25rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.points-locations__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.points-locations__pin {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    background-color: #c5e836;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.points-locations__name {
    font-size: clamp(0.75rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.01em;
}

.points-reveal.is-visible .points-locations__heading.points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.1s;
}

.points-reveal.is-visible .points-locations__text.points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.2s;
}

.points-reveal.is-visible .points-locations__item:nth-child(1).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.25s;
}

.points-reveal.is-visible .points-locations__item:nth-child(2).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.3s;
}

.points-reveal.is-visible .points-locations__item:nth-child(3).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.35s;
}

.points-reveal.is-visible .points-locations__item:nth-child(4).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.4s;
}

.points-reveal.is-visible .points-locations__item:nth-child(5).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.45s;
}

.points-reveal.is-visible .points-locations__item:nth-child(6).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.5s;
}

.points-reveal.is-visible .points-locations__item:nth-child(7).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.55s;
}

.points-reveal.is-visible .points-locations__item:nth-child(8).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.6s;
}

.points-reveal.is-visible .points-locations__item:nth-child(9).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.65s;
}

.points-reveal.is-visible .points-locations__item:nth-child(10).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.7s;
}

.points-reveal.is-visible .points-locations__item:nth-child(11).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.75s;
}

.points-reveal.is-visible .points-locations__item:nth-child(12).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.8s;
}

.points-reveal.is-visible .points-locations__item:nth-child(13).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.85s;
}

.points-reveal.is-visible .points-locations__item:nth-child(14).points-reveal__anim--up {
    animation-name: points-reveal-up;
    animation-play-state: running;
    animation-delay: 0.9s;
}

@media (max-width: 1024px) {
    .points-locations {
        padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2.5rem);
    }

    .points-locations__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem 1rem;
    }

    .points-locations__item {
        white-space: normal;
        justify-content: flex-start;
    }
    .points-locations__text {
        font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    }
    .points-locations__name {
        font-size: clamp(1rem, 1.2vw, 1rem);
    }
}

@media (max-width: 640px) {
    .points-locations {
        padding: 2.25rem 1rem 2.75rem;
    }

    .points-locations__heading-bold,
    .points-locations__heading-light {
        font-size: clamp(1.35rem, 6vw, 1.85rem);
    }

    .points-locations__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 0.75rem;
    }

    .points-locations__name {
        font-size: 0.8125rem;
    }

    .points-locations__pin {
        width: 10px;
        height: 10px;
    }
}

/* Projects showcase */
.projects-showcase {
    background-color: #1A1A1A;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 8vw, 10rem);
}

.projects-showcase__inner {
    max-width: 1700px;
    margin: 0 auto;
}

.projects-showcase__heading {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.projects-showcase__slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.projects-showcase__slider::-webkit-scrollbar {
    display: none;
}

.projects-showcase__slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
    user-select: none;
}

.projects-showcase__track {
    display: flex;
    width: max-content;
}

.projects-showcase__slide {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, 2vw, 1.25rem);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
    padding-right: 0;
}

.projects-showcase__card {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 2px;
    background-color: #1A1A1A;
}

.projects-showcase__card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;

}

.projects-showcase__placeholder {
    width: 100%;
    height: 100%;
    background-color: #222222;
}

.projects-showcase__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.projects-showcase__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #3a3a3a;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.projects-showcase__dot.is-active {
    background-color: #8a8a8a;
}

.projects-showcase__dot:hover,
.projects-showcase__dot:focus-visible {
    background-color: #fff;
    outline: none;
}

@keyframes projects-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.projects-showcase__anim {
    opacity: 0;
    animation: projects-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.projects-showcase.is-visible .projects-showcase__heading.projects-showcase__anim {
    animation-play-state: running;
    animation-delay: 0.05s;
}

.projects-showcase.is-visible .projects-showcase__card {
    animation: projects-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.projects-showcase.is-visible .projects-showcase__slide:nth-child(1) .projects-showcase__card:nth-child(1) { animation-delay: 0.15s; }
.projects-showcase.is-visible .projects-showcase__slide:nth-child(1) .projects-showcase__card:nth-child(2) { animation-delay: 0.22s; }
.projects-showcase.is-visible .projects-showcase__slide:nth-child(1) .projects-showcase__card:nth-child(3) { animation-delay: 0.29s; }
.projects-showcase.is-visible .projects-showcase__slide:nth-child(1) .projects-showcase__card:nth-child(4) { animation-delay: 0.36s; }
.projects-showcase.is-visible .projects-showcase__slide:nth-child(1) .projects-showcase__card:nth-child(5) { animation-delay: 0.43s; }
.projects-showcase.is-visible .projects-showcase__slide:nth-child(1) .projects-showcase__card:nth-child(6) { animation-delay: 0.5s; }

.projects-showcase.is-visible .projects-showcase__pagination {
    animation: projects-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .projects-showcase__anim,
    .projects-showcase.is-visible .projects-showcase__card,
    .projects-showcase.is-visible .projects-showcase__pagination {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .projects-showcase {
        padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
    }

    .projects-showcase__slide {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .projects-showcase {
        padding: 2.5rem 1rem;
    }

    .projects-showcase__heading {
        margin-bottom: 1.5rem;
    }

    .projects-showcase__slide {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials {
    background-color: #1A1A1A;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
}

.testimonials__inner {
    max-width: 1700px;
    margin: 0 auto;
}

.testimonials__heading {
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
}

.testimonials__heading-bold {
    font-weight: 800;
}

.testimonials__heading-light {
    font-weight: 800;
}

.testimonials__slider {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.25rem;
}

.testimonials__slider::-webkit-scrollbar {
    display: none;
}

.testimonials__slider.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
    user-select: none;
}

.testimonials__track {
    display: flex;
    gap: clamp(1rem, 2vw, 1.5rem);
    width: max-content;
    padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.testimonials__card {
    flex: 0 0 clamp(260px, 32vw, 340px);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background-color: #222222;
    border-radius: 24px;
    scroll-snap-align: start;
    min-height: 280px;
}

.testimonials__avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #1A1A1A;
}

.testimonials__initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.testimonials__avatar img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
}

.testimonials__quote {
    flex: 1;
    margin: 0;
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    line-height: 1.55;
    color: #ffffff;
    font-weight: 400;
}

.testimonials__quote::before {
    content: "\201C";
}

.testimonials__footer {
    margin-top: auto;
}

.testimonials__name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.testimonials__role {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #a3a3a3;
}

.testimonials__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.testimonials__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #3a3a3a;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.testimonials__dot.is-active {
    background-color: #8a8a8a;
}

.testimonials__dot:hover,
.testimonials__dot:focus-visible {
    background-color: #fff;
    outline: none;
}

.testimonials__anim {
    opacity: 0;
    animation: projects-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-play-state: paused;
}

.testimonials.is-visible .testimonials__heading.testimonials__anim {
    animation-play-state: running;
    animation-delay: 0.05s;
}

.testimonials.is-visible .testimonials__card {
    animation: projects-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.testimonials.is-visible .testimonials__card:nth-child(1) { animation-delay: 0.15s; }
.testimonials.is-visible .testimonials__card:nth-child(2) { animation-delay: 0.25s; }
.testimonials.is-visible .testimonials__card:nth-child(3) { animation-delay: 0.35s; }
.testimonials.is-visible .testimonials__card:nth-child(4) { animation-delay: 0.45s; }
.testimonials.is-visible .testimonials__card:nth-child(5) { animation-delay: 0.55s; }
.testimonials.is-visible .testimonials__card:nth-child(6) { animation-delay: 0.65s; }

.testimonials.is-visible .testimonials__pagination {
    animation: projects-fade-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.75s;
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .testimonials__anim,
    .testimonials.is-visible .testimonials__card,
    .testimonials.is-visible .testimonials__pagination {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .testimonials__card {
        flex: 0 0 clamp(240px, 42vw, 300px);
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .testimonials {
        padding: 2.5rem 1rem;
    }

    .testimonials__heading {
        margin-bottom: 2rem;
    }

    .testimonials__card {
        flex: 0 0 min(85vw, 300px);
        min-height: 240px;
        border-radius: 20px;
    }

    .testimonials__track {
        gap: 1rem;
        padding: 0;
    }
}

/* Contact */
.contact {
    background-color: #1A1A1A;
    padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 8rem);
}

.contact__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    max-width: 1700px;
    margin: 0 auto;
}

.contact__info {
    flex: 0 1 42%;
    max-width: 520px;
}

.contact__heading {
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact__subheading {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.contact__list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    line-height: 1.45;
    color: #ffffff;
}

.contact__item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact__item a:hover,
.contact__item a:focus-visible {
    opacity: 0.75;
}

.contact__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #222222;
    color: #fff;
}

.contact__map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    background-image: linear-gradient(180deg, #ffe3a1 0%, #d29e31 45%, #8b6110 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 999px;
    transition: background-color 0.2s ease;
}

.contact__map-btn:hover,
.contact__map-btn:focus-visible {
    background-color: #8f8f8f;
}

.contact__form-wrap {
    flex: 0 1 52%;
    max-width: 640px;
    width: 100%;
}

.contact__form {
    position: relative;
    background-color: #222222;
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2.25rem);
}

.contact__form-accent {
    position: absolute;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
}

.contact__field {
    margin-bottom: 1.25rem;
}

.contact__field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact__required {
    color: #fff;
}

.contact__field input,
.contact__field textarea,
.contact__field select {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: #222222;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease;
}

.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
}

.contact__field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact__phone-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    background-color: #222222;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding-left: 0.75rem;
}

.contact__phone-wrap:focus-within {
    border-color: rgba(255, 255, 255, 0.25);
}

.contact__phone-wrap input {
    border: none;
    padding-left: 0;
    background: transparent;
}

.contact__phone-wrap input:focus {
    border: none;
}

.contact__flag {
    font-size: 1.125rem;
    line-height: 1;
    flex-shrink: 0;
}

.contact__select-wrap {
    position: relative;
}

.contact__select-wrap select {
    appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact__select-wrap select option {
    background-color: #ffffff;
    color: #000000;
}

.contact__select-icon {
    position: absolute;
    right: 1rem;
    bottom: 50%;
    transform: translateY(50%);
    pointer-events: none;
    color: #ffffff;
    display: flex;
}

.contact__submit {
    display: block;
    margin: 0.5rem auto 0;
    padding: 0.75rem 2.5rem;
    background-image: linear-gradient(180deg, #ffe3a1 0%, #d29e31 45%, #8b6110 100%);
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact__submit:hover,
.contact__submit:focus-visible {
    background-color: #8f8f8f;
}

.contact__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form__status {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
}

.contact-form__status--success {
    color: #4ade80;
}

.contact-form__status--error {
    color: #f87171;
}

@keyframes contact-slide-left {
    from {
        opacity: 0;
        transform: translate3d(-32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes contact-slide-right {
    from {
        opacity: 0;
        transform: translate3d(32px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.contact__anim {
    opacity: 0;
    animation-duration: 0.85s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.contact__anim--left {
    animation-name: contact-slide-left;
}

.contact__anim--right {
    animation-name: contact-slide-right;
}

.contact.is-visible .contact__heading.contact__anim--left {
    animation-play-state: running;
    animation-delay: 0.05s;
}

.contact.is-visible .contact__subheading.contact__anim--left {
    animation-play-state: running;
    animation-delay: 0.15s;
}

.contact.is-visible .contact__list.contact__anim--left {
    animation-play-state: running;
    animation-delay: 0.25s;
}

.contact.is-visible .contact__map-btn.contact__anim--left {
    animation-play-state: running;
    animation-delay: 0.35s;
}

.contact.is-visible .contact__anim--right {
    animation-play-state: running;
    animation-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    .contact__anim {
        opacity: 1;
        animation: none;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .contact__inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .contact__info,
    .contact__form-wrap {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .contact {
        padding: 2.5rem 1rem;
    }

    .contact__row {
        grid-template-columns: 1fr;
    }

    .contact__form {
        padding: 2rem 1.25rem;
    }
}

