﻿.ix-page {
    background: #0a0a0f;
    min-height: 100vh;
}

@keyframes ixFloat {
    0% {
        transform: translateY(110vh);
        opacity: 0;
    }

    8% {
        opacity: 0.12;
    }

    92% {
        opacity: 0.12;
    }

    100% {
        transform: translateY(-8vh);
        opacity: 0;
    }
}

@keyframes ixFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ixSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ixSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes ixPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes ixShine {
    0% {
        left: -60%;
    }

    100% {
        left: 130%;
    }
}

@keyframes ixCountUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── HERO ── */
.ix-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.ix-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.ix-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 54px 54px;
}

.ix-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ix-glow1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 65%);
}

.ix-glow2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -80px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 65%);
}

.ix-fp {
    position: absolute;
    border-radius: 50%;
    background: #c9a84c;
    opacity: 0.12;
    animation: ixFloat linear infinite;
}

.ix-fp1 {
    width: 6px;
    height: 6px;
    left: 12%;
    animation-duration: 13s;
    animation-delay: 0s;
}

.ix-fp2 {
    width: 4px;
    height: 4px;
    left: 35%;
    animation-duration: 18s;
    animation-delay: 3s;
}

.ix-fp3 {
    width: 7px;
    height: 7px;
    left: 62%;
    animation-duration: 15s;
    animation-delay: 1s;
}

.ix-fp4 {
    width: 5px;
    height: 5px;
    left: 85%;
    animation-duration: 20s;
    animation-delay: 5s;
}

/* Carousel */
.ix-carousel {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.ix-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ix-slide {
    flex: 0 0 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.ix-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.ix-slide.ix-active .ix-slide-img {
    transform: scale(1);
}

.ix-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100% );
}

.ix-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    max-width: 680px;
    animation: ixFadeUp 0.7s ease both 0.2s;
}

.ix-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e8c96a;
    margin-bottom: 18px;
    width: fit-content;
}

.ix-slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.ix-slide-desc {
    font-size: clamp(14px, 2vw, 17px);
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 500px;
}

.ix-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: linear-gradient(135deg, #c9a84c, #e8c96a);
    color: #0a0a0f;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    width: fit-content;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

    .ix-slide-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(201,168,76,0.5);
        color: #0a0a0f;
    }

.ix-car-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    color: #e8c96a;
    font-size: 15px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    backdrop-filter: blur(6px);
}

    .ix-car-btn:hover {
        background: rgba(201,168,76,0.2);
        border-color: rgba(201,168,76,0.6);
        transform: translateY(-50%) scale(1.08);
    }

.ix-car-prev {
    left: 20px;
}

.ix-car-next {
    right: 20px;
}

.ix-car-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.ix-car-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

    .ix-car-dot.ix-dot-active {
        width: 24px;
        border-radius: 4px;
        background: #c9a84c;
    }

/* ── SERVICES BAR ── */
.ix-services-bar {
    background: #111118;
    border-top: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 28px 20px;
}

.ix-services-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ix-svc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    border-radius: 16px;
    border: 1px solid rgba(201,168,76,0.1);
    background: rgba(255,255,255,0.02);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 100px;
}

    .ix-svc-item:hover {
        background: rgba(201,168,76,0.08);
        border-color: rgba(201,168,76,0.35);
        transform: translateY(-4px);
    }

.ix-svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c, #e8c96a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0f;
    font-size: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 14px rgba(201,168,76,0.25);
}

.ix-svc-item:hover .ix-svc-icon {
    transform: scale(1.12);
    box-shadow: 0 8px 22px rgba(201,168,76,0.4);
}

.ix-svc-label {
    font-size: 12px;
    font-weight: 700;
    color: #a0a0b0;
    text-align: center;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.ix-svc-item:hover .ix-svc-label {
    color: #e8c96a;
}

/* ── STATS BAR ── */
.ix-stats-bar {
    background: linear-gradient(135deg, #111118, #1a1a24);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    padding: 36px 20px;
}

.ix-stats-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.ix-stat {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ix-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #c9a84c, #e8c96a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.ix-stat-plus,
.ix-stat-slash {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: #c9a84c;
    display: inline;
    vertical-align: top;
    margin-top: 4px;
}

.ix-stat-label {
    font-size: 12px;
    color: #8a8a9a;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ix-stat-div {
    width: 1px;
    height: 50px;
    background: rgba(201,168,76,0.15);
    flex-shrink: 0;
}

/* ── SECTION HEADERS ── */
.ix-section-head {
    text-align: center;
    margin-bottom: 36px;
}

.ix-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 16px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 16px;
}

    .ix-section-badge i {
        font-size: 10px;
    }

.ix-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 900;
    color: #f0ede8;
    margin-bottom: 12px;
    line-height: 1.2;
}

.ix-gold {
    background: linear-gradient(135deg, #c9a84c, #e8c96a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ix-section-sub {
    font-size: 15px;
    color: #8a8a9a;
    margin: 0;
}

/* ── OFFERS ── */
.ix-offers-section {
    background: #0a0a0f;
    padding: 70px 0;
}

.ix-offers-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ix-offer-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ix-ofr-btn {
    padding: 8px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50px;
    color: #8a8a9a;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

    .ix-ofr-btn:hover {
        background: rgba(201,168,76,0.08);
        color: #f0ede8;
        border-color: rgba(201,168,76,0.3);
    }

.ix-ofr-active {
    background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(232,201,106,0.1));
    border-color: rgba(201,168,76,0.5);
    color: #e8c96a;
    box-shadow: 0 4px 14px rgba(201,168,76,0.15);
}

.ix-offer-slider {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ix-offer-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: ixSlide 28s linear infinite;
}

    .ix-offer-track:hover {
        animation-play-state: paused;
    }

.ix-offer-card {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.12);
    background: #111118;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

    .ix-offer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.5);
        border-color: rgba(201,168,76,0.3);
    }

.ix-offer-img-wrap {
    position: relative;
    overflow: hidden;
}

.ix-offer-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.ix-offer-card:hover .ix-offer-img {
    transform: scale(1.06);
}

.ix-offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: rgba(201,168,76,0.9);
    color: #0a0a0f;
    font-size: 10px;
    font-weight: 800;
    border-radius: 50px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* ── WHY US ── */
.ix-why-section {
    background: #111118;
    padding: 70px 0;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.ix-why-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.ix-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ix-why-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .ix-why-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #c9a84c, transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .ix-why-card:hover {
        background: rgba(201,168,76,0.05);
        border-color: rgba(201,168,76,0.28);
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

        .ix-why-card:hover::before {
            opacity: 1;
        }

.ix-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(232,201,106,0.08));
    border: 1px solid rgba(201,168,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #c9a84c;
    transition: all 0.3s;
}

.ix-why-card:hover .ix-why-icon {
    background: linear-gradient(135deg, #c9a84c, #e8c96a);
    color: #0a0a0f;
    transform: scale(1.08);
}

.ix-why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: #f0ede8;
    margin-bottom: 10px;
}

.ix-why-card p {
    font-size: 13px;
    color: #8a8a9a;
    line-height: 1.65;
    margin: 0;
}

/* ── CTA ── */
.ix-cta-section {
    background: #0a0a0f;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.ix-cta-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.ix-cta-wrap {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.ix-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color: #f0ede8;
    margin-bottom: 14px;
    line-height: 1.2;
}

.ix-cta-sub {
    font-size: 15px;
    color: #8a8a9a;
    margin-bottom: 36px;
    line-height: 1.65;
}

.ix-cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ix-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #c9a84c, #e8c96a);
    color: #0a0a0f;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 22px rgba(201,168,76,0.35);
    position: relative;
    overflow: hidden;
}

    .ix-cta-btn-primary::after {
        content: '';
        position: absolute;
        top: 0;
        left: -60%;
        width: 40%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
        transform: skewX(-15deg);
        animation: ixShine 3s ease infinite;
    }

    .ix-cta-btn-primary:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(201,168,76,0.45);
        color: #0a0a0f;
    }

.ix-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    color: #c9a84c;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}

    .ix-cta-btn-outline:hover {
        background: rgba(201,168,76,0.1);
        border-color: rgba(201,168,76,0.7);
        transform: translateY(-2px);
        color: #e8c96a;
    }

.ix-modal-backdrops {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(5px);
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    animation: ixFadeUp 0.25s ease;
}

.ix-modals {
    position: relative;
    background: #111118;
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 22px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0,0,0,0.7);
    animation: ixFadeUp 0.35s ease both;
    box-sizing: border-box;
}

    .ix-modals::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    }

.ix-modals-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50%;
    color: #8a8a9a;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

    .ix-modals-close:hover {
        background: rgba(201,168,76,0.1);
        color: #c9a84c;
        transform: rotate(90deg);
    }

.ix-modals-body {
    padding: 44px 36px 36px;
    text-align: center;
}

.ix-modals-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ea4335, #fbbc04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(234,67,53,0.3);
}

.ix-modals-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: #f0ede8;
    margin-bottom: 10px;
}

.ix-modals-sub {
    font-size: 14px;
    color: #8a8a9a;
    line-height: 1.6;
    margin-bottom: 28px;
}

.ix-google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ea4335, #fbbc04);
    color: #fff;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(234,67,53,0.3);
    box-sizing: border-box;
}

    .ix-google-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
        color: #fff;
    }

.ix-modals-note {
    font-size: 11.5px;
    color: #555566;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
}

    .ix-modals-note i {
        color: rgba(201,168,76,0.5);
    }

@keyframes ixFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .ix-modals {
        max-width: 95%;
        border-radius: 18px;
    }

    .ix-modals-body {
        padding: 32px 22px 26px;
    }

    .ix-modals-title {
        font-size: 19px;
    }
}

.ix-hide {
    animation: ixFadeDown 0.25s ease forwards;
}

@keyframes ixFadeDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(20px);
    }
}