/* :root {
    --color-primary: #c5a059;
    --color-background-dark: #0a1628;
    --color-background-card: #1a2332;
    --color-text-white: #ffffff;
    --color-text-light: #e5e7eb;
    --color-text-gray: #8b95a8;
    --color-text-gray-dark: #6b7b94;
    --color-text-muted: #9ca3af;
    --color-border-light: rgba(255, 255, 255, 0.1);
    --color-border-primary: rgba(197, 160, 89, 0.3);
    --color-border-divider: #1a2942;
    --color-overlay-light: rgba(255, 255, 255, 0.01);
    --gradient-gold: linear-gradient(to right,
            transparent,
            #c5a059,
            transparent);
    --gradient-scrollbar: linear-gradient(180deg, #c5a059 0%, #c5a059 100%);
    --gradient-scroll-progress: linear-gradient(90deg, #ffd700, #ff6b6b);
    --font-family-base:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, sans-serif;
    --breakpoint-mobile: 480px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;
    --breakpoint-large: 1200px;
} */
:root {
    --color-primary: #b8953d;
    --color-background-dark: #ffffff;
    --color-background-card: #f3f4f6;
    --color-text-white: #111827;
    --color-text-light: #1f2937;
    --color-text-gray: #6b7280;
    --color-text-gray-dark: #4b5563;
    --color-text-muted: #6b7280;
    --color-border-light: rgba(0, 0, 0, 0.08);
    --color-border-primary: rgba(184, 149, 61, 0.15);
    --color-border-divider: #e5e7eb;
    --color-overlay-light: rgba(0, 0, 0, 0.01);
    --gradient-gold: linear-gradient(to right, transparent, #b8953d, transparent);
    --gradient-scrollbar: linear-gradient(180deg, #b8953d 0%, #b8953d 100%);
    --gradient-scroll-progress: linear-gradient(90deg, #f59e0b, #ef4444);
    --font-family-base:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, sans-serif;
    --breakpoint-mobile: 480px;
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;
    --breakpoint-large: 1200px;
}

[data-theme="light"] {
    --color-primary: #b8953d;
    --color-background-dark: #ffffff;
    --color-background-card: #f3f4f6;
    --color-text-white: #111827;
    --color-text-light: #1f2937;
    --color-text-gray: #6b7280;
    --color-text-gray-dark: #4b5563;
    --color-text-muted: #6b7280;
    --color-border-light: rgba(0, 0, 0, 0.08);
    --color-border-primary: rgba(184, 149, 61, 0.15);
    --color-border-divider: #e5e7eb;
    --color-overlay-light: rgba(0, 0, 0, 0.01);
    --gradient-gold: linear-gradient(to right,
            transparent,
            #b8953d,
            transparent);
    --gradient-scrollbar: linear-gradient(180deg, #b8953d 0%, #b8953d 100%);
    --gradient-scroll-progress: linear-gradient(90deg, #f59e0b, #ef4444);
}

[data-theme="dark"] {
    --color-primary: #c5a059;
    --color-background-dark: #0a1628;
    --color-background-card: #1a2332;
    --color-text-white: #ffffff;
    --color-text-light: #e5e7eb;
    --color-text-gray: #8b95a8;
    --color-text-gray-dark: #6b7b94;
    --color-text-muted: #9ca3af;
    --color-border-light: rgba(255, 255, 255, 0.1);
    --color-border-primary: rgba(197, 160, 89, 0.3);
    --color-border-divider: #1a2942;
    --color-overlay-light: rgba(255, 255, 255, 0.01);
    --gradient-gold: linear-gradient(to right,
            transparent,
            #c5a059,
            transparent);
    --gradient-scrollbar: linear-gradient(180deg, #c5a059 0%, #c5a059 100%);
    --gradient-scroll-progress: linear-gradient(90deg, #ffd700, #ff6b6b);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-background-dark);
}


body {
    font-family: var(--font-family-base);
    background: var(--color-background-dark);
    cursor: none !important;
    font-display: swap;
}


/* Custom Scrollbar - Webkit */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(to bottom,
            var(--color-background-dark),
            var(--color-background-card));
    border-left: 1px solid var(--color-border-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-scrollbar);
    border-radius: 10px;
    border: 2px solid rgba(11, 19, 32, 0.8);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-scrollbar);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
    border-color: var(--color-border-primary);
}

::-webkit-scrollbar-thumb:active {
    background: var(--gradient-scrollbar);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.7);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-scroll-progress);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-text-white);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition:
        transform 0.2s ease,
        width 0.3s ease,
        height 0.3s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-text-white);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.05s ease;
    transform: translate(-50%, -50%);
}

.cursor-dot

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-background-card);
    border: 2px solid var(--color-border-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
}

.theme-toggle:active {
    transform: scale(0.95) rotate(0deg);
}

.theme-icon {
    width: 24px;
    height: 24px;
    color: var(--color-text-white);
    transition: all 0.3s ease;
    position: absolute;
}

/* Icon visibility based on theme */
[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="light"] .moon-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Card */
.card {
    background: var(--color-background-card);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--color-border-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Typography */
.title {
    color: var(--color-text-white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description {
    color: var(--color-text-gray);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Color Showcase */
.color-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.color-box {
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--color-border-light);
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.color-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.color-box.primary {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary-dark);
}

.color-box.accent {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.color-box.card-bg {
    background: var(--color-background-medium);
    color: var(--color-text-white);
    border-color: var(--color-border-divider);
}

/* Responsive Design */
@media (max-width: 768px) {
    .theme-toggle {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .container {
        padding: 1rem;
    }

    .card {
        padding: 2rem;
    }

    .title {
        font-size: 2rem;
    }

    .color-showcase {
        grid-template-columns: 1fr;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
}

.navbar__container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar__toggle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 1024px) {
    .navbar__toggle {
        display: none;
    }
}

.navbar__toggle-line {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.navbar__logo-img {
    height: 100px;
}

.navbar__links {
    display: none;
    list-style: none;
    gap: 40px;
}

@media (min-width: 1024px) {
    .navbar__links {
        display: flex;
    }
}

.navbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.navbar__item-num {
    font-size: 10px;
    color: #8b95a8;
    margin-bottom: 4px;
}

.navbar__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.navbar__link:hover {
    color: #c5a059;
}

.navbar__phone {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0a1628;
    z-index: 2000;
    display: flex;
    align-items: center;
    padding-left: 8%;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-overlay--active {
    transform: translateY(0);
}

.menu-overlay__close {
    position: absolute;
    top: 30px;
    left: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
}

.menu-overlay__list {
    list-style: none;
}

.menu-overlay__item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.menu-overlay__index {
    color: #8b95a8;
    font-size: 14px;
    margin-top: 10px;
}

.menu-overlay__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.menu-overlay__link:hover,
.menu-overlay__link--active {
    color: #c5a059;
}

@media (max-width: 480px) {
    .menu-overlay__link {
        font-size: 2rem;
    }
}


.location-section {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-background-dark);
}

.map-card {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-card__wrapper {
    position: relative;
    height: 600px;
    width: 100%;
    z-index: 1;
}

@media (max-width: 768px) {
    .map-card__wrapper {
        height: 80vh;
        /* touch-action: none; prevents map from capturing page scroll */
    }
}

.map-card__canvas {
    width: 100%;
    height: 100%;
    background-color: #222;
}

.map-card__controls {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.map-card__btn {
    width: 38px;
    height: 38px;
    background-color: #fff;
    border: none;
    color: #333;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.map-card__btn:hover {
    background-color: #c5a059;
    color: #fff;
}

.map-card__directions-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    margin: 0 !important;
}

.map-card .project-info__cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid #1f2937;
    border-radius: 0.5rem;
    color: #111827;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .map-card .project-info__cta {
        padding: 1rem 2rem;
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .map-card .project-info__cta {
        font-size: 0.95rem;
        padding: 1.25rem 2.5rem;
    }
}

.map-card .project-info__cta:hover {
    border-color: var(--color-primary);
    background-color: var(--color-overlay-lighter);
    transform: translateY(-2px);
}

.map-card .project-info__cta:hover .project-info__cta-icon {
    background-color: var(--color-primary);
    color: #0a1628;
}

.side-actions {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3000;
}

.side-actions__btn {
    width: 50px;
    height: 50px;
    background-color: rgba(10, 22, 40, 0.9);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.side-actions__btn:hover {
    border-color: #c5a059;
    transform: scale(1.1);
    color: #c5a059;
}

.side-actions__btn--whatsapp:hover {
    color: #25d366;
    border-color: #25d366;
}

.side-actions__btn--sub {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.side-actions__lang {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.side-actions__social-group {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.side-actions__social-group:hover .side-actions__sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-60px);
}

.side-actions__sub-menu {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: row;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


/* ============================================ Hero Block ========================================*/
.page-wrapper {
    overflow-x: hidden;
    max-width: 100%;
}


.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .project-info__cta-icon {
    background-color: white;
    color: black;

}

.hero .project-info__cta {
    border: 2px solid white;
    border-radius: 0.5rem;
    color: white;
}

.hero__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    clip-path: circle(0% at 50% 50%);
    animation: circleZoomIn 5s ease-out forwards;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.3);
    z-index: 1;
}

@keyframes circleZoomIn {
    0% {
        clip-path: circle(0% at 50% 50%);
    }

    100% {
        clip-path: circle(100% at 50% 50%);
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-white);
    transform: rotate(-10deg);
}

.header__nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.header__link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header__link:hover {
    color: var(--color-text-white);
}

.header__login {
    color: var(--color-text-white);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: var(--color-text-white);
    max-width: 900px;
    padding: 0 2rem;
}

.content__announcement {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.content__announcement-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.content__title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    color: white;
}

.content__description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.content__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.button--primary {
    background: var(--color-primary);
    color: var(--color-text-white);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.button--secondary {
    background: transparent;
    color: var(--color-text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.button--secondary:hover {
    border-color: var(--color-text-white);
    background: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .header__nav {
        gap: 1.5rem;
    }

    .header__link {
        font-size: 0.9rem;
    }

    .content__title {
        font-size: 2.5rem;
    }

    .content__description {
        font-size: 1rem;
    }

    .content__buttons {
        flex-direction: column;
        width: 100%;
    }

    .button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header__nav {
        gap: 1rem;
    }

    .content__title {
        font-size: 2rem;
    }
}

/* ============================================ Hero Block ========================================*/

/* About Section */
.about {
    background: var(--color-background-dark);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.3;
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 1024px) {
    .about__container {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fadeInLeft 0.8s ease-out;
}

.about__label {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-left: 50px;
}

.about__label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-primary);
}

.about__title {
    color: var(--color-text-white);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 768px) {
    .about__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .about__title {
        font-size: 3.5rem;
    }
}

.about__description {
    color: var(--color-text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

@media (min-width: 768px) {
    .about__description {
        font-size: 1.1rem;
    }
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 480px) {
    .about__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.about__stat {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about__stat::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about__stat:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: var(--color-border-primary);
    transform: translateY(-4px);
}

.about__stat:hover::before {
    transform: scaleX(1);
}

.about__stat-number {
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1;
}

@media (min-width: 768px) {
    .about__stat-number {
        font-size: 3rem;
    }
}

.about__stat-label {
    color: var(--color-text-light);
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.about__media {
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: fadeInRight 0.8s ease-out;
}

.about__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.about__image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.about__image:hover .about__image-overlay {
    background: linear-gradient(to bottom,
            rgba(197, 160, 89, 0.1) 0%,
            rgba(0, 0, 0, 0.4) 100%);
}

.about__image--top {
    height: 400px;
}

@media (min-width: 768px) {
    .about__image--top {
        height: 500px;
    }
}

.about__image--bottom {
    height: 350px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .about__image--bottom {
        height: 400px;
    }
}

@media (min-width: 1024px) {
    .about__image--bottom {
        margin-top: 0;
    }
}

.about__image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    transition: background 0.4s ease;
    pointer-events: none;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 32px 28px;
    backdrop-filter: blur(10px);
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.about__feature:nth-child(1) {
    animation-delay: 0.1s;
}

.about__feature:nth-child(2) {
    animation-delay: 0.2s;
}

.about__feature:nth-child(3) {
    animation-delay: 0.3s;
}

.about__feature:nth-child(4) {
    animation-delay: 0.4s;
}

.about__feature:nth-child(5) {
    animation-delay: 0.5s;
}

.about__feature:hover {
    transform: translateX(8px);
}

.about__feature:hover .about__feature-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.about__feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: transparent;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.about__feature-icon svg {
    width: 20px;
    height: 20px;
}

.about__feature-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding-top: 10px;
}

@media (min-width: 768px) {
    .about__feature-text {
        font-size: 1rem;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }

    .about__title {
        font-size: 2rem;
    }

    .about__image--top,
    .about__image--bottom {
        height: 300px;
    }

    .about__features {
        padding: 24px 20px;
    }
}

/* Flip vertical borders for RTL */
:lang(ar) .features__item {
    /* border-right: none; */
    border-left: 1px solid var(--color-border-light);
}

/* :lang(ar) .features__item:nth-child(3n) {
    border-left: none;
} */

/* Reverse slide order for RTL */
/* Force the track layout to stay LTR so the JS transform works normally */
[lang="ar"] .projects-horizontal__track {
    direction: ltr;
    flex-direction: row;
    /* remove any row-reverse */
}

/* But keep the slide content itself RTL */
[lang="ar"] .project-slide {
    direction: rtl;
}


.projects-horizontal {
    position: relative;
    background-color: var(--color-background-dark);
}

.projects-horizontal__wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.projects-horizontal__track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.project-slide {
    flex-shrink: 0;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--color-background-dark);
}

@media (min-width: 768px) {
    .project-slide {
        grid-template-columns: 40% 60%;
    }
}

.project-slide__content {
    background-color: var(--color-background-dark);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

@media (min-width: 768px) {
    .project-slide__content {
        padding: 4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .project-slide__content {
        padding: 5rem 4rem 5rem 6rem;
    }
}

@media (min-width: 1200px) {
    .project-slide__content {
        padding: 6rem 5rem 6rem 8rem;
    }
}

.project-slide__social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .project-slide__social {
        gap: 2rem;
    }
}

.project-slide__social-link {
    color: var(--color-primary);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.project-slide__social-link svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 1024px) {
    .project-slide__social-link svg {
        width: 22px;
        height: 22px;
    }
}

.project-slide__social-link:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.project-slide__scroll {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .project-slide__scroll {
        bottom: 4rem;
        left: 3rem;
    }
}

@media (min-width: 1024px) {
    .project-slide__scroll {
        bottom: 5rem;
        left: 6rem;
    }
}

.project-slide__scroll-line {
    width: 1px;
    height: 60px;
    background: var(--gradient-scrollbar);
}

@media (min-width: 1024px) {
    .project-slide__scroll-line {
        height: 80px;
    }
}

.project-slide__scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .project-slide__scroll-text {
        font-size: 0.75rem;
    }
}

.project-slide__image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: var(--color-background-dark);
}

.project-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%);
}

.project-slide:hover .project-slide__img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.project-info {
    max-width: 600px;
}

.project-info__location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .project-info__location {
        margin-bottom: 2.5rem;
    }
}

.project-info__icon {
    width: 18px;
    height: 18px;
    color: var(--color-text-white);
}

@media (min-width: 1024px) {
    .project-info__icon {
        width: 20px;
        height: 20px;
    }
}

.project-info__location-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-white);
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .project-info__location-text {
        font-size: 0.95rem;
    }
}

.project-info__title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--color-text-white);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .project-info__title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .project-info__title {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
    }
}

.project-info__description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .project-info__description {
        font-size: 1.05rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .project-info__description {
        font-size: 1.1rem;
        line-height: 1.9;
        margin-bottom: 3.5rem;
    }
}

.project-info__cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--color-border-light);
    border-radius: 0.5rem;
    color: var(--color-text-white);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .project-info__cta {
        padding: 1rem 2rem;
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .project-info__cta {
        font-size: 0.95rem;
        padding: 1.25rem 2.5rem;
    }
}

.project-info__cta:hover {
    border-color: var(--color-primary);
    background-color: var(--color-overlay-lighter);
    transform: translateY(-2px);
}

.project-info__cta:hover .project-info__cta-icon {
    background-color: var(--color-primary);
    color: var(--color-background-dark);
}

.project-info__cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-text-white);
    color: var(--color-background-dark);
    border-radius: 0.25rem;
    font-size: 1.25rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .project-info__cta-icon {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
}

.project-info__cta-text {
    text-transform: uppercase;
}

.projects-horizontal__progress {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

@media (min-width: 768px) {
    .projects-horizontal__progress {
        bottom: 3rem;
        right: 3rem;
    }
}

.projects-horizontal__progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-border-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.projects-horizontal__progress-dot--active {
    background-color: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}


/* Contact Us Section Block */
.contact {
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    border: 1px solid var(--color-border-primary);
    border-radius: 0.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

@media (min-width: 1024px) {
    .contact__container {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
        padding: 4rem;
    }
}

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

.contact__form-wrapper {
    width: 100%;
}

.contact__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .contact__title {
        font-size: 2.25rem;
    }
}

.location-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-light);
    border-radius: 0.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.location-card:hover {
    border-color: var(--color-border-primary);
    background-color: var(--color-overlay-lighter);
    transform: translateY(-2px);
}

.location-card:nth-child(1) {
    animation-delay: 0.1s;
}

.location-card:nth-child(2) {
    animation-delay: 0.2s;
}

.location-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.location-card__divider {
    width: 100%;
    height: 1px;
    background: var(--gradient-gold);
    margin-bottom: 1.5rem;
}

.location-card__address {
    font-style: normal;
    margin-bottom: 1.5rem;
}

.location-card__text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.location-card__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    color: var(--color-text-white);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-card__button:hover {
    background-color: rgba(197, 160, 89, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateX(4px);
}

.location-card__icon {
    width: 1rem;
    height: 1rem;
}

.hotline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background-color: transparent;
    border: 1px solid var(--color-border-primary);
    border-radius: 0.5rem;
    margin-top: auto;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.hotline__icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-primary);
}

.hotline__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: 0.05em;
}

.hotline:hover {
    background-color: rgba(197, 160, 89, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateX(4px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form__submit {
    padding: 1rem 2.5rem;
    background-color: #000000;
    border: 1px solid var(--color-border-primary);
    border-radius: 0.25rem;
    color: var(--color-text-white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.contact-form__submit:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.contact-form__submit:active {
    transform: translateY(0);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.form-group:nth-child(4) {
    animation-delay: 0.4s;
}

.form-group:nth-child(5) {
    animation-delay: 0.5s;
}

.form-group__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-white);
    letter-spacing: 0.025em;
}

.form-group__input,
.form-group__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--color-overlay-lighter);
    border: 1px solid var(--color-border-light);
    border-radius: 0.25rem;
    color: var(--color-text-white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group__input::placeholder,
.form-group__textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group__input:focus,
.form-group__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-group__input:hover,
.form-group__textarea:hover {
    border-color: var(--color-border-primary);
}

.form-group__textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.form-group__textarea::-webkit-scrollbar {
    width: 8px;
}

.form-group__textarea::-webkit-scrollbar-track {
    background: var(--color-overlay-lighter);
    border-radius: 4px;
}

.form-group__textarea::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

.form-group__textarea::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

.form-group__input[type="date"],
.form-group__input[type="time"] {
    color-scheme: dark;
    position: relative;
}

.form-group__input[type="date"]::-webkit-calendar-picker-indicator,
.form-group__input[type="time"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) saturate(100%) invert(67%) sepia(34%) saturate(442%) hue-rotate(5deg) brightness(93%) contrast(87%);
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.form-group__input[type="date"]::-webkit-calendar-picker-indicator:hover,
.form-group__input[type="time"]::-webkit-calendar-picker-indicator:hover {
    filter: brightness(0) saturate(100%) invert(77%) sepia(44%) saturate(552%) hue-rotate(5deg) brightness(103%) contrast(97%);
    opacity: 1;
}

.form-group__input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.form-group__input[type="time"]::-webkit-datetime-edit-fields-wrapper {
    color: var(--color-text-muted);
}

.form-group__input[type="date"]::-webkit-datetime-edit-text,
.form-group__input[type="time"]::-webkit-datetime-edit-text {
    color: var(--color-text-muted);
}

.form-group__input[type="date"]::-webkit-datetime-edit-month-field,
.form-group__input[type="date"]::-webkit-datetime-edit-day-field,
.form-group__input[type="date"]::-webkit-datetime-edit-year-field,
.form-group__input[type="time"]::-webkit-datetime-edit-month-field,
.form-group__input[type="time"]::-webkit-datetime-edit-day-field,
.form-group__input[type="time"]::-webkit-datetime-edit-year-field {
    color: var(--color-text-white);
    padding: 0 0.25rem;
}

.form-group__input[type="date"]:focus::-webkit-datetime-edit-month-field,
.form-group__input[type="date"]:focus::-webkit-datetime-edit-day-field,
.form-group__input[type="date"]:focus::-webkit-datetime-edit-year-field,
.form-group__input[type="time"]:focus::-webkit-datetime-edit-month-field,
.form-group__input[type="time"]:focus::-webkit-datetime-edit-day-field,
.form-group__input[type="time"]:focus::-webkit-datetime-edit-year-field {
    background-color: rgba(197, 160, 89, 0.2);
    border-radius: 0.125rem;
}

.form-group__input[type="time"]::-webkit-datetime-edit-hour-field,
.form-group__input[type="time"]::-webkit-datetime-edit-minute-field,
.form-group__input[type="time"]::-webkit-datetime-edit-ampm-field {
    color: var(--color-text-white);
    padding: 0 0.25rem;
}

.form-group__input[type="time"]:focus::-webkit-datetime-edit-hour-field,
.form-group__input[type="time"]:focus::-webkit-datetime-edit-minute-field,
.form-group__input[type="time"]:focus::-webkit-datetime-edit-ampm-field {
    background-color: rgba(197, 160, 89, 0.2);
    border-radius: 0.125rem;
}

.form-group__select {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--color-overlay-lighter);
    border: 1px solid var(--color-border-light);
    border-radius: 0.25rem;
    color: var(--color-text-white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-background-card);
}

.form-group__select option {
    background-color: var(--color-background-card);
    color: var(--color-text-white);
    padding: 1rem;
    border: none;
}

.form-group__select option:hover {
    background-color: rgba(197, 160, 89, 0.1);
}

.form-group__select option:checked {
    background-color: rgba(197, 160, 89, 0.2);
    color: var(--color-primary);
}

.form-group__select option[disabled] {
    color: var(--color-text-muted);
}

.form-group__select option[value=""] {
    color: var(--color-text-muted);
}

.form-group__select:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-group__select:hover {
    border-color: var(--color-border-primary);
}

.form-group__select:invalid {
    color: var(--color-text-muted);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Footer */
.footer {
    background-color: #0a1628;
    padding: 4rem 1.5rem 2rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 5rem 2rem 2rem;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 6rem 3rem 2rem;
    }
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer__content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .footer__content {
        gap: 6rem;
    }
}

.footer__brand {
    max-width: 500px;
}

.footer__logo--img {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    height: 200px;
}

@media (min-width: 768px) {
    .footer__logo--img {
        font-size: 1.75rem;
    }
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #8b95a8;
}

@media (min-width: 768px) {
    .footer__tagline {
        font-size: 1rem;
    }
}

.footer__heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .footer__heading {
        font-size: 0.8rem;
    }
}

.footer__list {
    list-style: none;
}

.footer__list-item {
    margin-bottom: 1rem;
}

.footer__list-item:last-child {
    margin-bottom: 0;
}

.footer__link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

@media (min-width: 768px) {
    .footer__link {
        font-size: 1rem;
    }
}

.footer__link:hover {
    color: #ffffff;
}

.footer__bottom {
    background-color: #0a1628;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #1a2942;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
}

.footer__copyright {
    font-size: 0.875rem;
    color: #6b7b94;
}

@media (min-width: 768px) {
    .footer__copyright {
        font-size: 0.9rem;
    }
}

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

.footer__legal-link {
    color: #6b7b94;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .footer__legal-link {
        font-size: 0.9rem;
    }
}

.footer__legal-link:hover {
    color: #e5e7eb;
}


/* Blog Section Block */
.blog-section {
    padding: 80px 20px;
    min-height: 100vh;
}

.blog-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-section__header {
    margin-bottom: 60px;
}

.blog-section__title {
    color: var(--color-text-white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.blog-section__subtitle {
    color: var(--color-text-gray);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.01);
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.7) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-card__date {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.blog-card__author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card__author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.blog-card__author-name {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.blog-card__title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 20px;
    }

    .blog-section__title {
        font-size: 36px;
    }

    .blog-section__subtitle {
        font-size: 16px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card__title {
        font-size: 20px;
    }
}


.blog-post {
    padding-top: 8rem;
}

.blog-post__hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--color-border-light);
}

.blog-post__title {
    color: var(--color-text-light);
}

.blog-post__meta {
    color: var(--color-text-gray);
}

.blog-post__content {
    margin-top: 40px;
}

.blog-post__paragraph {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-family: "Georgia", serif;
}

.blog-post__paragraph--dropcap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 1;
    font-weight: bold;
    margin-right: 12px;
    color: var(--color-primary);
}

.blog-post__quote {
    margin: 3rem 0;
    padding: 20px 40px;
    border-left: 4px solid var(--color-primary);
    background-color: var(--color-background-card);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-text-white);
}

.blog-post__subtitle {
    font-size: 2rem;
    margin: 4rem 0 1.5rem;
    color: var(--color-text-white);
    font-family: var(--font-family-base);
}

.container--narrow {
    max-width: 740px;
    margin: 0 auto;
}


.blog-section {
    padding: 80px 20px;
    background-color: var(--color-background-dark);
    font-family: var(--font-family-base);
}

.blog-section__title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--color-text-white);
    font-weight: 700;
}

.blog-section__grid {
    display: grid;
    gap: 24px;
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .blog-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-section__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
}

.blog-card__image-wrapper {
    width: 100%;
    padding: 12px;
}

.blog-card__image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.blog-card__content {
    padding: 10px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--color-text-white);
    font-weight: 600;
    flex-grow: 1;
}

.blog-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    border-top: 1px solid var(--color-border-light);
    padding-top: 16px;
}

.blog-card__author {
    color: var(--color-text-gray);
}

.blog-card__date {
    color: var(--color-primary);
    font-weight: 600;
}

.blog_button {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}


.ceo-message {
    padding: 80px 20px;
    background-color: var(--color-background-dark);
    font-family: var(--font-family-base);
    color: var(--color-text-white);
}

.ceo-message__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .ceo-message__container {
        flex-direction: row;
        gap: 80px;
    }
}

.ceo-message__visual {
    width: 100%;
}

@media (min-width: 1024px) {
    .ceo-message__visual {
        width: 45%;
    }
}

.ceo-message__image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
    background-color: var(--color-background-card);
}

.ceo-message__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ceo-message__content {
    width: 100%;
}

@media (min-width: 1024px) {
    .ceo-message__content {
        width: 55%;
    }
}

.ceo-message__title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--color-text-white);
}

.ceo-message__body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ceo-message__body p:last-child {
    margin-bottom: 40px;
}

.ceo-message__signature {
    border-top: 1px solid var(--color-border-divider);
    padding-top: 20px;
}

.ceo-message__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 5px;
}

.ceo-message__role {
    font-size: 14px;
    color: var(--color-primary);
    letter-spacing: 1px;
    font-weight: 600;
}


.chr-about {
    padding: 60px 20px;
    background-color: var(--color-background-dark);
    color: var(--color-text-white);
    font-family: var(--font-family-base);
    overflow: hidden;
}

@media (min-width: 768px) {
    .chr-about {
        padding: 100px 40px;
    }
}

.chr-about__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .chr-about__container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
    }
}

.chr-about__label {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-gray);
    margin-bottom: 15px;
}

.chr-about__title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--color-text-white);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .chr-about__title {
        font-size: 48px;
    }
}

.chr-about__description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-gray);
    margin-bottom: 20px;
    max-width: 600px;
    text-align: justify;
}

.chr-about__description p:last-child {
    margin-bottom: 0;
}

.chr-about__visual {
    position: relative;
    width: 100%;
}

.chr-about__image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .chr-about__image-wrapper {
        aspect-ratio: 1/1;
    }
}

.chr-about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.chr-about__img:hover {
    transform: scale(1.05);
}


.features {
    padding: 80px 20px;
    background-color: var(--color-background-dark);
    font-family: var(--font-family-base);
    text-align: center;
}

.features__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
}

.features__header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features__title {
    color: var(--color-text-white);
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 20px;
    font-weight: 700;
}

.features__subtitle {
    color: var(--color-text-gray);
    line-height: 1.6;
    font-size: 16px;
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--color-border-light);
}

@media (min-width: 768px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.features__item {
    padding: 60px 40px;
    border-bottom: 1px solid var(--color-border-light);
    transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
    .features__item:not(:nth-child(2n)) {
        border-right: 1px solid var(--color-border-light);
    }
}

@media (min-width: 1024px) {
    .features__item:not(:nth-child(2n)) {
        border-right: none;
    }

    .features__item:not(:nth-child(3n)) {
        border-right: 1px solid var(--color-border-light);
    }
}

.features__item:hover {
    background-color: var(--color-overlay-light);
}

.features__icon-wrapper {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.features__icon {
    width: 32px;
    height: 32px;
}

.features__item-title {
    color: var(--color-text-white);
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.features__item-text {
    color: var(--color-text-gray);
    font-size: 15px;
    line-height: 1.6;
}


.stats {
    background-color: var(--color-background-dark);
    padding: 100px 0;
    font-family: var(--font-family-base);
}

.stats__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 1024px) {
    .stats__container {
        flex-direction: row;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .stats__content {
        width: 45%;
        position: sticky;
        top: 100px;
    }
}

.stats__title {
    color: var(--color-text-white);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.stats__description {
    color: var(--color-text-gray);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.stats__btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.stats__btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.stats__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 1024px) {
    .stats__list {
        width: 55%;
    }
}

.stats__card {
    background-color: var(--color-background-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
    transition: border-color 0.3s ease;
}

.stats__card:hover {
    border-color: var(--color-border-primary);
}

.stats__number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 8px;
}

.stats__label {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.stats__text {
    color: var(--color-text-gray-dark);
    line-height: 1.5;
    font-size: 15px;
}


.team {
    padding: 80px 20px;
    background-color: var(--color-background-dark);
    font-family: var(--font-family-base);
    overflow: hidden;
}

.team__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .team__container {
        flex-direction: row;
        align-items: center;
    }
}

.team__header {
    flex: 0 0 350px;
}

@media (max-width: 768px) {
    .team__header {
        flex: 0 0 0;
        /* أو flex: 1 1 auto; */
    }
}

.team__title {
    color: var(--color-text-white);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.team__subtitle {
    color: var(--color-text-gray);
    font-size: 16px;
    margin-bottom: 40px;
}

.team__navigation {
    display: flex;
    gap: 12px;
}

.team__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-border-light);
    background: transparent;
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team__nav-btn:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.team__nav-btn--next {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.team__slider {
    width: 100%;
    cursor: grab;
}

.team__image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    margin-bottom: 20px;
    background-color: var(--color-background-card);
}

.team__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team__name {
    color: var(--color-text-white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team__role {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* ── NEW: wraps role + linkedin icon in one row ── */
.team__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* ── NEW: linkedin icon link ── */
.team__linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-border-light);
    color: var(--color-text-muted);
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team__linkedin:hover {
    background-color: #0a66c2;
    border-color: #0a66c2;
    color: #fff;
}



.testimonials {
    padding: 80px 20px;
    background-color: var(--color-background-dark);
    font-family: var(--font-family-base);
    text-align: center;
}

.testimonials__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
}

.testimonials__header {
    margin-bottom: 50px;
}

.testimonials__subtitle {
    display: block;
    color: var(--color-text-gray);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.testimonials__title {
    color: var(--color-text-white);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
}

.testimonials__slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 24px;
    padding: 10px 0;
    scrollbar-width: none;
}

.testimonials__slider::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .testimonials__slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonials__card {
    background-color: var(--color-background-card);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 32px;
    text-align: left;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
    min-width: 300px;
}

.testimonials__card--active {
    border: 1px solid var(--color-primary);
    box-shadow: 10px 20px 30px rgba(0, 0, 0, 0.04);
}

.testimonials__card:hover {
    transform: translateY(-5px);
}

.testimonials__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.testimonials__star {
    color: #f59e0b;
    font-size: 18px;
}

.testimonials__score {
    color: #4f46e5;
    font-weight: 600;
    font-size: 16px;
}

.testimonials__text {
    color: var(--color-text-gray);
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 30px;
    min-height: 80px;
}

.testimonials__user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border-light);
}

.testimonials__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials__name {
    color: var(--color-text-white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.testimonials__role {
    color: var(--color-text-muted);
    font-size: 14px;
    margin: 0;
}

.testimonials__pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-border-divider);
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        width 0.3s ease;
}

.testimonials__dot--active {
    background-color: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

.testimonials__slider {
    padding: 20px 0 60px;
    overflow: hidden;
}

.testimonials__card {
    height: auto;
    background-color: var(--color-background-card);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 32px;
    transition: border-color 0.3s ease;
}

.testimonials__card.swiper-slide-active {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonials__pagination {
    bottom: 0 !important;
}

.testimonials__pagination .swiper-pagination-bullet {
    background: var(--color-text-gray);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonials__pagination .swiper-pagination-bullet-active {
    background: var(--color-primary) !important;
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}


.previous-projects {
    padding: 80px 20px;
    background-color: var(--color-background-dark);
    color: var(--color-text-white);
    font-family: var(--font-family-base);
}

.previous-projects__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .previous-projects__container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.previous-projects__subtitle {
    display: block;
    color: var(--color-text-gray);
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.previous-projects__title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-text-white);
    font-weight: 700;
}

@media (min-width: 1024px) {
    .previous-projects__title {
        font-size: 44px;
    }
}

.previous-projects__description {
    color: var(--color-text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 16px;
}

.previous-projects__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.previous-projects__item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-text-light);
    font-size: 15px;
}

.previous-projects__check-icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.previous-projects__check-icon svg {
    width: 10px;
    height: 10px;
}

.previous-projects__action-btn {
    background-color: var(--color-primary);
    color: #fff;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.previous-projects__action-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.previous-projects__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .previous-projects__gallery {
        gap: 20px;
    }
}

.previous-projects__photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.previous-projects__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.previous-projects__photo:hover img {
    transform: scale(1.05);
}

.previous-projects__photo--small {
    aspect-ratio: 1/1;
}

@media (min-width: 1024px) {
    .previous-projects__photo--small {
        aspect-ratio: 4/3;
    }
}

.previous-projects__photo--wide {
    grid-column: span 2;
    aspect-ratio: 16/8;
}


.project-showcase {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    background-color: var(--color-background-dark);
    position: relative;
    overscroll-behavior-y: contain;
}

.project-showcase::-webkit-scrollbar {
    display: none;
}

.project-showcase {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.project-showcase::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    background: linear-gradient(to bottom,
            var(--color-background-dark) 20%,
            transparent 100%);
    z-index: 400;
    pointer-events: none;
}

.project-item {
    height: 100vh;
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    padding: 0 5%;
    box-sizing: border-box;
    position: relative;
    padding-top: 150px;
}

@media (max-width: 1000px) {
    .project-item {
        padding-top: 100px;
    }
}

.project-item__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

@media (min-width: 1024px) {
    .project-item__container {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }

    .project-item__container--reverse {
        flex-direction: row-reverse !important;
    }
}

.project-item .project-item__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: calc(100vh - 180px);
}

@media (min-width: 1024px) {
    .project-item .project-item__container {
        flex-direction: row;
        align-items: center;
        gap: 80px;
        max-height: none;
    }

    .project-item__container--reverse {
        flex-direction: row-reverse !important;
    }
}

.project-item__visual {
    position: relative;
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    height: 25vh;
    width: 100%;
}

@media (min-width: 1024px) {
    .project-item__visual {
        height: 55vh;
        border-radius: 30px;
        flex: 1.2;
    }
}

.project-item__visual:hover .tooltip {
    opacity: 1;
    transform: translate(-50%, -10px);
}

.project-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
    display: block;
}

.project-item:hover .project-item__img {
    transform: scale(1.08);
}

.project-item__content {
    flex: 1;
    max-height: 45vh;
}

@media (min-width: 1024px) {
    .project-item__content {
        max-height: none;
        overflow-y: visible;
    }
}

.project-item__content::-webkit-scrollbar {
    display: none;
}

.project-item__content {
    scrollbar-width: none;
}

.project-item__label {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.project-item__title {
    color: var(--color-text-white);
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.project-item__description {
    color: var(--color-text-gray);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.project-item__specs {
    list-style: none;
    padding: 0;
    padding-top: 20px;
    padding-right: 20px;
}

.project-item__specs li {
    color: var(--color-text-light);
    margin-bottom: 10px;
    font-size: 14px;
}

.project-item__specs li strong {
    color: var(--color-primary);
    margin-right: 10px;
}

.project-item .project-info__cta {
    margin-top: 30px;
}

@media (max-width: 500px) {
    .project-item .project-info__cta {
        display: none;
    }
}

.project-item .tooltip {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.project-item .tooltip::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.8);
}

.project__footer {
    border-top: 1px solid var(--color-border-divider);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .project__footer {
        flex-direction: row;
    }
}

.project-intro {
    padding-top: 4rem;
    position: fixed;
    top: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    z-index: 500;
    pointer-events: none;
}

@media (max-width: 500px) {
    .project-intro {
        top: 3rem;
    }
}

.project-intro__title {
    color: var(--color-text-white);
    font-size: clamp(1.8rem, 4vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.project-intro__subtitle {
    color: var(--color-text-white);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 auto;
    opacity: 0.8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .project-intro__subtitle {
        display: none;
    }
}

.project-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

@media (max-width: 500px) {
    .project-nav {
        left: 8px;
    }
}

.project-nav__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.project-nav__link {
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    transition: 0.3s ease;
}

.project-nav__link--active,
.project-nav__link:hover {
    background: var(--color-primary);
    transform: scale(1.3);
}


.project-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #0a1628;
}

.project-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.project-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(26, 35, 50, 0.4) 0%,
            #0a1628 100%);
    z-index: 2;
}

.project-hero__container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 5%;
    margin-top: 4rem;
}

.project-hero__breadcrumbs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.project-hero__crumb {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

.project-hero__crumb:hover {
    color: #c5a059;
}

.project-hero__crumb--active {
    color: #ffffff;
    pointer-events: none;
}

.project-hero__separator {
    color: #c5a059;
    font-size: 0.8rem;
}

.project-hero__title {
    color: #ffffff;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    margin: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.project-hero__scroll {
    position: absolute;
    bottom: -4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(197, 160, 89, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.project-hero__scroll-dot {
    width: 4px;
    height: 4px;
    background: #c5a059;
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}


.project-details {
    background-color: var(--color-background-dark);
    padding: 100px 0;
    position: relative;
}

.project-details__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .project-details__container {
        grid-template-columns: 450px 1fr;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .project-details__info {
        position: sticky;
        top: 120px;
    }
}

.project-details__label {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.project-details__title {
    color: var(--color-text-white);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 40px;
}

.project-details__table {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-details__row {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 20px;
}

.project-details__row span:first-child {
    color: var(--color-text-white);
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.project-details__row span:last-child {
    color: var(--color-text-gray);
    font-size: 15px;
    text-align: right;
    line-height: 1.4;
}

.project-details__gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-details__image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-details__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.project-details__image-wrapper img:hover {
    transform: scale(1.05);
}


.services {
    background-color: var(--color-background-dark);
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
}

.services__label {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.services__title {
    color: var(--color-text-white);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin: 0;
}

.services__slider {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

.services__track {
    padding: 10px;
    display: flex;
    width: max-content;
    gap: 30px;
}

.services__track--left {
    animation: infiniteScrollLeft 40s linear infinite;
}

.services__track--right {
    animation: infiniteScrollRight 40s linear infinite;
}

.services__track:hover {
    animation-play-state: paused;
}

.services__card {
    flex-shrink: 0;
    width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.services__card:hover {
    background: rgba(197, 160, 89, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-10px);
}

.services__icon {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.4));
}

.services__name {
    color: var(--color-text-white);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

@keyframes infiniteScrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes infiniteScrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}


.plans {
    background-color: var(--color-background-dark);
    padding: 100px 0;
    overflow: hidden;
}

.plans__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    padding: 0 5%;
}

.plans__header {
    margin-bottom: 50px;
}

.plans__label {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.plans__title {
    color: var(--color-text-white);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-transform: uppercase;
}

.plans__image-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    aspect-ratio: 1/1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: zoom-in;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
}

.plans__image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.plans__image-box img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.plans__floor-name {
    color: var(--color-text-white);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.plans__pagination {
    position: relative !important;
    margin-top: 40px !important;
}

.plans__pagination .swiper-pagination-bullet {
    background: transparent;
    border: 2px solid var(--color-primary);
    opacity: 1;
    width: 12px;
    height: 12px;
}

.plans__pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.2);
}


.construction {
    background-color: var(--color-background-dark);
    padding: 100px 0;
}

.construction__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    padding: 0 5%;
}

.construction__header {
    margin-bottom: 60px;
    text-align: left;
}

.construction__label {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.construction__title {
    color: var(--color-text-white);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.construction__subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.construction__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .construction__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .construction__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.construction__video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    margin-bottom: 15px;
}

.construction__video-wrapper:hover .construction__thumbnail {
    transform: scale(1.05);
    opacity: 0.7;
}

.construction__video-wrapper:hover .construction__play-btn {
    background: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.construction__video-wrapper:hover .construction__tooltip {
    opacity: 1;
    transform: translate(-50%, -10px);
}

.construction__tooltip {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.construction__tooltip::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.8);
}

.construction__thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    opacity: 0.8;
}

.construction__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.construction__play-btn i {
    margin-left: 4px;
}

.construction__project-name {
    color: var(--color-text-white);
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.construction__project-name:hover {
    color: var(--color-primary);
}

.construction__video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    margin-bottom: 15px;
}

.construction__video-wrapper:hover .construction__thumbnail {
    transform: scale(1.05);
    opacity: 0.5;
}

.construction__video-wrapper:hover .construction__play-btn {
    background: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.construction__thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    opacity: 0.8;
    display: block;
}

.construction__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.construction__project-name {
    color: var(--color-text-white);
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal__content {
    width: 90%;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.video-modal__close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.video-modal__close:hover {
    color: var(--color-primary);
}


.updates {
    background-color: var(--color-background-dark);
    padding: 150px 0;
    color: #fff;
}

.updates__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media (min-width: 1024px) {
    .updates__container {
        flex-direction: row;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .updates__left {
        flex: 0 0 35%;
        position: sticky;
        top: 120px;
    }
}

.updates__label {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.updates__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-text-white);
}

.updates__description {
    color: var(--color-text-gray);
}

.updates__right {
    flex: 1;
    position: relative;
    padding-left: 40px;
}

.updates__timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border-divider);
}

.updates__item {
    position: relative;
    margin-bottom: 80px;
}

.updates__item:last-child {
    margin-bottom: 0;
}

.updates__marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    display: flex;
    justify-content: center;
}

.updates__circle {
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 4px solid var(--color-background-dark);
    z-index: 2;
}

.updates__date {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    transform: translateY(-12px);
}

.updates__subtext {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin: 5px 0 20px;
}

.updates__media-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.updates__media-wrapper img,
.updates__media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.updates__media-wrapper:hover img,
.updates__media-wrapper:hover video {
    transform: scale(1.05);
}

.updates__project-name {
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.updates {
    background-color: var(--color-background-dark);
    padding: 150px 0;
    color: #fff;
}

.updates__container {
    max-width: var(--breakpoint-large);
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media (min-width: 1024px) {
    .updates__container {
        flex-direction: row;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .updates__left {
        flex: 0 0 35%;
        position: sticky;
        top: 120px;
    }
}

.updates__label {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.updates__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-text-white);
}

.updates__description {
    color: var(--color-text-gray);
}

.updates__right {
    flex: 1;
    position: relative;
    padding-left: 40px;
}

.updates__timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border-divider);
}

.updates__item {
    position: relative;
    margin-bottom: 80px;
}

.updates__item:last-child {
    margin-bottom: 0;
}

.updates__marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    display: flex;
    justify-content: center;
}

.updates__circle {
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 4px solid var(--color-background-dark);
    z-index: 2;
}

.updates__date {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    transform: translateY(-12px);
}

.updates__subtext {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin: 5px 0 20px;
}

.updates__media-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.updates__media-wrapper img,
.updates__media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.updates__media-wrapper:hover img,
.updates__media-wrapper:hover video {
    transform: scale(1.05);
}

.updates__project-name {
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

/* ── NEW: YouTube poster play overlay ─────────────────────────────── */

.updates__youtube-poster {
    cursor: pointer;
}

/* Dim the poster image slightly so the button stands out */
.updates__youtube-poster img {
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.75);
}

.updates__youtube-poster:hover img {
    transform: scale(1.05);
    filter: brightness(0.55);
}

/* Full-cover overlay that holds the play button */
.updates__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* clicks pass through to the wrapper */
}

/* The circular play button */
.updates__play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.85);
    /* YouTube red */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.updates__youtube-poster:hover .updates__play-btn {
    transform: scale(1.12);
    background: #ff0000;
}

.updates__play-btn i {
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

/*# sourceMappingURL=app.css.map */


/* ============================================================
   RTL Overrides for Arabic
   ============================================================ */

/* --- Navbar & Menu Overlay --- */
[lang="ar"] .menu-overlay {
    padding-left: 0;
    padding-right: 8%;
}

[lang="ar"] .menu-overlay__close {
    left: auto;
    right: 20px;
}

[lang="ar"] .menu-overlay__item {
    flex-direction: row-reverse;
}

/* --- Side Actions --- */

[lang="ar"] .side-actions {
    right: auto;
    left: 20px;
}

[lang="ar"] .side-actions__social-group:hover .side-actions__sub-menu {
    transform: translateX(60px);
}

[lang="ar"] .side-actions__sub-menu {
    right: auto;
    left: 0;
}

/* --- Theme Toggle --- */
/* [lang="ar"] .theme-toggle {
    right: auto;
    left: 2rem;
}
/* @media (max-width: 768px) {
    [lang="ar"] .side-actions {
        left: 8px;
        right: auto;
    }

    [lang="ar"] .side-actions__social-group:hover .side-actions__sub-menu,
    [lang="ar"] .side-actions__social-group.active .side-actions__sub-menu {
        transform: translateX(48px);
    }
} */

/* --- About Section --- */
[lang="ar"] .about__label {
    padding-left: 0;
    padding-right: 50px;
}

[lang="ar"] .about__label::before {
    left: auto;
    right: 0;
}

[lang="ar"] .about__feature:hover {
    transform: translateX(-8px);
}

/* --- Project Slide (Horizontal) --- */
[lang="ar"] .project-slide__scroll {
    left: auto;
    right: 2rem;
}

@media (min-width: 768px) {
    [lang="ar"] .project-slide__scroll {
        right: 3rem;
    }
}

@media (min-width: 1024px) {
    [lang="ar"] .project-slide__scroll {
        right: 6rem;
    }
}

[lang="ar"] .project-slide__social-link:hover {
    transform: translateX(-5px);
}

[lang="ar"] .project-slide__content {
    padding: 3rem 2rem;
}

@media (min-width: 1024px) {
    [lang="ar"] .project-slide__content {
        padding: 5rem 6rem 5rem 4rem;
    }
}

@media (min-width: 1200px) {
    [lang="ar"] .project-slide__content {
        padding: 6rem 8rem 6rem 5rem;
    }
}

/* --- Map Card --- */
/* [lang="ar"] .map-card__controls {
    left: auto;
    right: 30px;
}

[lang="ar"] .map-card__directions-btn {
    right: auto;
    left: 30px;
} */

/* --- Contact / Location Card --- */
[lang="ar"] .location-card__button:hover {
    transform: translateX(-4px);
}

[lang="ar"] .hotline:hover {
    transform: translateX(-4px);
}

/* Select arrow — flip to left side */
[lang="ar"] .form-group__select {
    background-position: left 1rem center;
    padding-right: 1rem;
    padding-left: 2.5rem;
}

/* --- Blog Post Quote --- */
[lang="ar"] .blog-post__quote {
    border-left: none;
    border-right: 4px solid var(--color-primary);
    padding-left: 20px;
    padding-right: 40px;
}

/* --- Blog Post Dropcap --- */
[lang="ar"] .blog-post__paragraph--dropcap::first-letter {
    float: right;
    margin-right: 0;
    margin-left: 12px;
}

/* --- Project Nav (dot nav) --- */
[lang="ar"] .project-nav {
    left: auto;
    right: 20px;
}

/* --- Project Item specs --- */
[lang="ar"] .project-item__specs {
    padding-right: 0;
    padding-left: 20px;
}

[lang="ar"] .project-item__specs li strong {
    margin-right: 0;
    margin-left: 10px;
}

/* --- Project Details table --- */
[lang="ar"] .project-details__row span:last-child {
    text-align: left;
}

/* --- Updates Timeline --- */
[lang="ar"] .updates__right {
    padding-left: 0;
    padding-right: 40px;
}

[lang="ar"] .updates__timeline-line {
    left: auto;
    right: 0;
}

[lang="ar"] .updates__marker {
    left: auto;
    right: -40px;
}

/* --- Progress Dots (horizontal projects) --- */
[lang="ar"] .projects-horizontal__progress {
    right: auto;
    left: 2rem;
}

@media (min-width: 768px) {
    [lang="ar"] .projects-horizontal__progress {
        left: 3rem;
    }
}

/* --- Scroll Progress Bar --- */
[lang="ar"] .scroll-progress {
    left: auto;
    right: 0;
}

[lang="ar"] body,
[lang="ar"] p,
[lang="ar"] h1,
[lang="ar"] h2,
[lang="ar"] h3,
[lang="ar"] h4,
[lang="ar"] h5,
[lang="ar"] h6,
[lang="ar"] span,
[lang="ar"] a,
[lang="ar"] li,
[lang="ar"] input,
[lang="ar"] button,
[lang="ar"] textarea {
    font-family: "Cairo", sans-serif !important;
}

[lang="ar"] body {
    direction: rtl !important;
    text-align: right !important;
}

/*--- Loader */
/* .loader-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: #0a1628;
    z-index: 9999998;
} */

/* .loader::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    background-color: #0a1628;
    z-index: 9999998;
} */

/* From Uiverse.io by nima-mollazadeh */
.loader {
    --dur: 2s;
    display: block;
    margin: auto;
    width: 14em;
    height: auto;
    z-index: 9999998;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader__glare-top,
.loader__glare-bottom,
.loader__model,
.loader__motion-thick,
.loader__motion-medium,
.loader__motion-thin,
.loader__sand-drop,
.loader__sand-fill,
.loader__sand-grain-left,
.loader__sand-grain-right,
.loader__sand-line-left,
.loader__sand-line-right,
.loader__sand-mound-top,
.loader__sand-mound-bottom {
    animation-duration: var(--dur);
    animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
    animation-iteration-count: infinite;
}

.loader__glare-top {
    animation-name: glare-top;
}

.loader__glare-bottom {
    animation-name: glare-bottom;
}

.loader__model {
    animation-name: loader-flip;
    transform-origin: 12.25px 16.75px;
}

.loader__motion-thick,
.loader__motion-medium,
.loader__motion-thin {
    transform-origin: 26px 26px;
}

.loader__motion-thick {
    animation-name: motion-thick;
}

.loader__motion-medium {
    animation-name: motion-medium;
}

.loader__motion-thin {
    animation-name: motion-thin;
}

.loader__sand-drop {
    animation-name: sand-drop;
}

.loader__sand-fill {
    animation-name: sand-fill;
}

.loader__sand-grain-left {
    animation-name: sand-grain-left;
}

.loader__sand-grain-right {
    animation-name: sand-grain-right;
}

.loader__sand-line-left {
    animation-name: sand-line-left;
}

.loader__sand-line-right {
    animation-name: sand-line-right;
}

.loader__sand-mound-top {
    animation-name: sand-mound-top;
}

.loader__sand-mound-bottom {
    animation-name: sand-mound-bottom;
    transform-origin: 12.25px 31.5px;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: hsl(var(--hue), 90%, 10%);
        --fg: hsl(var(--hue), 90%, 90%);
    }
}

/* Animation */
@keyframes loader-flip {
    from {
        transform: translate(13.75px, 9.25px) rotate(-180deg);
    }

    24%,
    to {
        transform: translate(13.75px, 9.25px) rotate(0);
    }
}

@keyframes glare-top {
    from {
        stroke: rgba(255, 255, 255, 0);
    }

    24%,
    to {
        stroke: white;
    }
}

@keyframes glare-bottom {
    from {
        stroke: white;
    }

    24%,
    to {
        stroke: rgba(255, 255, 255, 0);
    }
}

@keyframes motion-thick {
    from {
        animation-timing-function: cubic-bezier(0.33, 0, 0.67, 0);
        stroke: rgba(255, 255, 255, 0);
        stroke-dashoffset: 153.94;
        transform: rotate(0.67turn);
    }

    20% {
        animation-timing-function: cubic-bezier(0.33, 1, 0.67, 1);
        stroke: rgb(32, 32, 32);
        stroke-dashoffset: 141.11;
        transform: rotate(1turn);
    }

    40%,
    to {
        stroke: rgba(255, 255, 255, 0);
        stroke-dashoffset: 153.94;
        transform: rotate(1.33turn);
    }
}

@keyframes motion-medium {

    from,
    8% {
        animation-timing-function: cubic-bezier(0.33, 0, 0.67, 0);
        stroke: rgba(255, 255, 255, 0);
        stroke-dashoffset: 153.94;
        transform: rotate(0.5turn);
    }

    20% {
        animation-timing-function: cubic-bezier(0.33, 1, 0.67, 1);
        stroke: white;
        stroke-dashoffset: 147.53;
        transform: rotate(0.83turn);
    }

    32%,
    to {
        stroke: rgba(255, 255, 255, 0);
        stroke-dashoffset: 153.94;
        transform: rotate(1.17turn);
    }
}

@keyframes motion-thin {

    from,
    4% {
        animation-timing-function: cubic-bezier(0.33, 0, 0.67, 0);
        stroke: rgba(255, 255, 255, 0);
        stroke-dashoffset: 153.94;
        transform: rotate(0.33turn);
    }

    24% {
        animation-timing-function: cubic-bezier(0.33, 1, 0.67, 1);
        stroke: rgb(53, 53, 53);
        stroke-dashoffset: 134.7;
        transform: rotate(0.67turn);
    }

    44%,
    to {
        stroke: rgba(255, 255, 255, 0);
        stroke-dashoffset: 153.94;
        transform: rotate(1turn);
    }
}

@keyframes sand-drop {

    from,
    10% {
        animation-timing-function: cubic-bezier(0.12, 0, 0.39, 0);
        stroke-dashoffset: 1;
    }

    70%,
    to {
        stroke-dashoffset: -107;
    }
}

@keyframes sand-fill {

    from,
    10% {
        animation-timing-function: cubic-bezier(0.12, 0, 0.39, 0);
        stroke-dashoffset: 55;
    }

    70%,
    to {
        stroke-dashoffset: -54;
    }
}

@keyframes sand-grain-left {

    from,
    10% {
        animation-timing-function: cubic-bezier(0.12, 0, 0.39, 0);
        stroke-dashoffset: 29;
    }

    70%,
    to {
        stroke-dashoffset: -22;
    }
}

@keyframes sand-grain-right {

    from,
    10% {
        animation-timing-function: cubic-bezier(0.12, 0, 0.39, 0);
        stroke-dashoffset: 27;
    }

    70%,
    to {
        stroke-dashoffset: -24;
    }
}

@keyframes sand-line-left {

    from,
    10% {
        animation-timing-function: cubic-bezier(0.12, 0, 0.39, 0);
        stroke-dashoffset: 53;
    }

    70%,
    to {
        stroke-dashoffset: -55;
    }
}

@keyframes sand-line-right {

    from,
    10% {
        animation-timing-function: cubic-bezier(0.12, 0, 0.39, 0);
        stroke-dashoffset: 14;
    }

    70%,
    to {
        stroke-dashoffset: -24.5;
    }
}

@keyframes sand-mound-top {

    from,
    10% {
        animation-timing-function: linear;
        transform: translate(0, 0);
    }

    15% {
        animation-timing-function: cubic-bezier(0.12, 0, 0.39, 0);
        transform: translate(0, 1.5px);
    }

    51%,
    to {
        transform: translate(0, 13px);
    }
}

@keyframes sand-mound-bottom {

    from,
    31% {
        animation-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
        transform: scale(1, 0);
    }

    56%,
    to {
        transform: scale(1, 1);
    }
}




.body--loading>*:not(.loader) {
    visibility: hidden;
}

@keyframes ht {
    100% {
        height: 0px
    }
}

.loader--hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}