/* ===================================
   Buttons
   =================================== */

   .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-secondary {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border: 1px solid var(--secondary);
    background: transparent;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: var(--secondary);
    color: #ffffff;
}

.btn-primary {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0d1f28;
}

@media (max-width: 768px) {

    .btn-outline-white,
    .btn-outline-secondary,
    .btn-primary {
        font-size: 14px;
        padding: 12px 20px;
    }
}

/* ===================================
   Header / Navigation
   =================================== */

.header-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 54px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-center {
    flex: 0 0 auto;
}

.logo {
    height: 73px;
    width: auto;
    cursor: pointer;
}

.menu-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-text {
    color: #ffffff;
    font-size: 16px;
}

.nav-text-black {
    color: #000;
    font-size: 16px;

}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    transition: opacity 0.3s ease;
}

.language-selector:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {

    .nav-right,
    .nav-left {
        gap: 20px;
    }

    .logo {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        padding: 30px 0;
    }

    .nav-wrapper {
        flex-wrap: wrap;
    }

    .nav-text,
    .nav-text-black {
        font-size: 14px;
    }

    .logo {
        height: 50px;
    }

    .btn-outline-white span {
        display: none;
    }

    .nav-left {
        display: none;
    }
}



/* ===================================
   Menu
   =================================== */

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    overflow-y: auto;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    transform: translateY(0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.menu.menu-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
}

.menu.menu-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.menu .app-container {
    display: flex;
    min-height: 100vh;
    background: #ffffff;
    flex-direction: row-reverse;
}

.menu .hero-gallery {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.menu .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    height: 100%;
    min-height: 100vh;
}

.menu .gallery-card {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.menu .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.menu .gallery-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
    max-width: 100%;
}

.menu .gallery-title {
    font-family: 'Aktiv Grotesk VF Trial', 'Helvetica', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
    text-align: right;
}

.menu .gallery-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Aktiv Grotesk VF Trial', 'Helvetica', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #cdcdcd;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: auto;
}

.menu .gallery-link:hover {
    color: #ffffff;
}

.menu .arrow-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.menu .sidebar {
    width: 100%;
    max-width: 484px;
    background: linear-gradient(180deg, rgba(250, 245, 242, 1) 0%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(0deg, rgba(250, 245, 242, 1) 0%, rgba(250, 245, 242, 1) 100%);
    box-shadow: inset 0px 0px 55.5px 22.5px rgba(0, 0, 0, 0.03), 0px 3px 3px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.menu .sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.25rem 2.375rem;
    position: relative;
}

.menu .close-btn {
    position: absolute;
    top: 2.25rem;
    right: 2.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 1.5rem;
    height: 1.5rem;
    transition: opacity 0.3s ease;
}

.menu .close-btn:hover {
    opacity: 0.7;
}

.menu .close-btn img {
    width: 100%;
    height: 100%;
    display: block;
}

.menu .main-nav {
    margin-top: 6rem;
    flex: 1;
}

.menu .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.3125rem;
}

.menu .nav-item {
    text-align: right;
}

.menu .nav-link {
    font-family: 'Aktiv Grotesk VF Trial', 'Helvetica', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
    position: relative;
}

.menu .nav-link:hover {
    color: var(--primary);
}

.menu .nav-item.active .nav-link {
    color: var(--primary);
}

.menu .nav-underline {
    width: 63px;
    height: 1px;
    object-fit: cover;
}

.menu .sidebar-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 25px;
}

.menu .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu .social-link {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #696559;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.menu .social-link:hover {
    opacity: 0.7;
    color: var(--primary);
}

.menu .social-link svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.menu .copyright {
    font-family: 'Aktiv Grotesk VF Trial', 'Helvetica', sans-serif;
    font-weight: 500;
    font-size: 0.8125rem;
    color: #696559;
    margin: 0;
    text-align: right;
    max-width: 166px;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .menu .app-container {
        flex-direction: column-reverse;
    }

    .menu .sidebar {
        max-width: 100%;
    }

    .menu .gallery-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .menu .gallery-card {
        min-height: 300px;
    }

    .menu .sidebar-content {
        padding: 1.5rem;
    }

    .menu .close-btn {
        top: 1.5rem;
        right: 1.5rem;
    }

    .menu .main-nav {
        margin-top: 4rem;
    }

    .menu .nav-link {
        font-size: 1.25rem;
    }

    .menu .gallery-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .menu .gallery-grid {
        grid-template-columns: 1fr;
    }

    .menu .gallery-card {
        min-height: 250px;
    }

    .menu .gallery-overlay {
        padding: 1.5rem;
    }

    .menu .gallery-title {
        font-size: 1.25rem;
    }

    .menu .gallery-link {
        font-size: 0.9375rem;
    }

    .menu .sidebar-content {
        padding: 1.25rem;
    }

    .menu .close-btn {
        top: 1.25rem;
        right: 1.25rem;
    }

    .menu .main-nav {
        margin-top: 3rem;
    }

    .menu .nav-list {
        gap: 1rem;
    }

    .menu .nav-link {
        font-size: 1.125rem;
    }

    .menu .sidebar-footer {
        gap: 1rem;
    }

    .menu .copyright {
        font-size: 0.6875rem;
    }
}

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

/* ===================================
   Carousel Base Styles
   =================================== */

.carousel-controls {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.carousel-buttons {
    display: flex;
    gap: 20px;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 0.79px solid #8d8d8d;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1.97px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    color: var(--primary);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #ffffff;
}

.carousel-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    rotate: 180deg;
}

.carousel-progress {
    flex: 1;
    max-width: 1128px;
}

.carousel-progress-bar {
    width: 100%;
    height: 2px;
    background-color: rgba(190, 117, 90, 0.2);
    position: relative;
    cursor: pointer;
    border-radius: 2px;
}

.carousel-progress-fill {
    height: 100%;
    background-color: var(--secondary);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
    position: relative;
    margin-left: 0;
}

/* RTL support: fill starts from right */
[dir="rtl"] .carousel-progress-fill,
html[dir="rtl"] .carousel-progress-fill {
    margin-left: auto;
    margin-right: 0;
}

.carousel-progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--secondary);
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    position: relative;
    min-height: 513px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    overflow: hidden;
    padding: 80px 20px;
}

.cta-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0.2;
    transform: translate(-50%, -50%);
}

.circle-1 {
    width: 1240px;
    height: 1240px;
    top: 50%;
    left: 50%;
}

.circle-2 {
    width: 1040px;
    height: 1040px;
    top: 50%;
    left: 50%;
}

.circle-3 {
    width: 840px;
    height: 840px;
    top: 50%;
    left: 50%;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 21, 0) 0%, rgba(20, 20, 21, 1) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 959px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin: auto;
}

.cta-title {
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -2.02px;
}

.cta-subtitle {
    font-size: 15px;
    color: #e6e6e6;
    opacity: 0.8;
    max-width: 420px;
}

.cta-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-link:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .cta-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        min-height: 400px;
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 14px;
    }
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: #141415;
    padding: 0 80px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(79, 79, 79, 0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 0 64px;
    gap: 60px;
}

.footer-logo img {
    width: 175px;
    height: auto;
}

.footer-links {
    display: flex;
    gap: 240px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-link,
.footer-social,
.footer-contact {
    font-size: 14px;
    color: #e6e6e6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover,
.footer-social:hover,
.footer-contact:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    fill: currentColor;
    transition: fill 0.3s ease;
}

.footer-bottom {
    padding: 49px 0;
    text-align: center;
}

.footer-social img {
    filter: brightness(15);
}

.footer-copyright {
    font-family: 'Aktiv Grotesk VF Trial', Helvetica, sans-serif;
    font-size: 13px;
    color: var(--gray-light);
}

@media (max-width: 1024px) {
    .footer {
        padding: 0 40px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        gap: 60px;
    }
}

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

    .footer-content {
        padding: 60px 0 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .footer-column {
        align-items: center;
    }
}

/* ===================================
   Pagination
   =================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #eaeaea;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 0.75rem;
    border: 1px solid #eaeaea;
    background: #ffffff;
    color: #616161;
    font-size: 1rem;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pagination-link:hover {
    background: #f7f7f7;
    border-color: #122b37;
    color: #122b37;
}

.pagination-link.active {
    background: #122b37;
    border-color: #122b37;
    color: #ffffff;
    font-weight: 600;
}

.pagination-link.pagination-prev,
.pagination-link.pagination-next {
    border-color: #eaeaea;
    background: #f7f7f7;
    rotate: 180deg;
}

.pagination-link.pagination-prev:hover,
.pagination-link.pagination-next:hover {
    background: #eeeeee;
    border-color: #122b37;
}

.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    color: #616161;
    font-size: 1rem;
    font-family: 'Aktiv Grotesk VF Trial', Helvetica;
}

@media (max-width: 768px) {
    .pagination {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .pagination-link {
        min-width: 40px;
        height: 40px;
        font-size: 0.9375rem;
        padding: 0 0.5rem;
    }

    .pagination-dots {
        min-width: 40px;
        height: 40px;
        font-size: 0.9375rem;
    }

    .pagination-list {
        gap: 0.375rem;
    }
}

@media (max-width: 480px) {
    .pagination-link {
        min-width: 36px;
        height: 36px;
        font-size: 0.8125rem;
        padding: 0 0.375rem;
    }

    .pagination-dots {
        min-width: 36px;
        height: 36px;
        font-size: 0.8125rem;
    }

    .pagination-list {
        gap: 0.25rem;
    }
}