/* Luxury Reveal Animations */

:root {
    --reveal-duration: 1.2s;
    --reveal-ease: cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--reveal-duration) var(--reveal-ease),
        transform var(--reveal-duration) var(--reveal-ease);
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay Utilities */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Image Reveal mask */
.reveal-image-container {
    position: relative;
    overflow: hidden;
    display: block;
}

.reveal-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111;
    transform: translateX(0);
    transition: transform 1s var(--reveal-ease);
    z-index: 2;
}

.reveal-image-container.active::after {
    transform: translateX(101%);
}

.brand-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.8s var(--reveal-ease);
    min-width: 50px;
    min-height: 50px;
}

.project:hover .brand-overlay {
    transform: translateX(-50%) translateY(-5px);
}

.brand-info {
    display: none !important;
}

.project:hover .brand-overlay {
    transform: translateX(0);
}

.brand-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-powered {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 2px;
}

.brand-name-text {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

/* Navigation Line Animation */
.navbar-desctop-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c3924e;
    transition: width 0.4s var(--reveal-ease);
}

.navbar-desctop-menu li:hover a::after,
.navbar-desctop-menu li.active a::after {
    width: 100%;
}

/* Benefits Section Styles */
.benefits {
    padding: 100px 0;
}

.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff0c;
    border: 1px solid #f0f0f01e;
    transition: transform 0.4s var(--reveal-ease), box-shadow 0.4s var(--reveal-ease);
    margin-bottom: 30px;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 25px;
}

.benefit-item h3 {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.benefit-list li {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}


/* Roadmap Styles */
.roadmap-item {
    position: relative;
    padding: 30px;
    border-left: 2px solid #c3924e;
    margin-left: 20px;
    margin-bottom: 40px;
    background: #fff;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 35px;
    left: -11px;
    width: 20px;
    height: 20px;
    background: #c3924e;
    border-radius: 50%;
}

/* Flagship Highlights / Stats */
.stat-item {
    text-align: center;
    padding: 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #c3924e;
    font-family: 'Oswald', sans-serif;
    display: block;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
}