﻿.luxury-hero {
    background: linear-gradient(135deg, #fefaf0 0%, #fff9e6 100%);
    padding: 60px 0;
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

.luxury-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    background: white;
    height: 500px;
}

.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(212, 175, 55, 0.2);
    z-index: 10;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #F4E4A6);
    width: 0%;
    transition: width 5s linear;
}

.slider-wrapper {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

    .slide.active {
        opacity: 1;
    }

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 50px;
    z-index: 2;
}

.content-wrapper {
    max-width: 500px;
    width: 100%;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D4AF37;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.product-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    word-wrap: break-word;
}

.product-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
    word-wrap: break-word;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.price {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #D4AF37;
}

.currency {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
}

.action-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #D4AF37;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

    .primary-btn:hover {
        background: #B8860B;
        transform: translateY(-2px);
    }

.slider-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: auto;
    min-width: fit-content;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #D4AF37;
    background: white;
    color: #D4AF37;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .nav-btn:hover {
        background: #D4AF37;
        color: white;
    }

.slide-indicators {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
}

.indicator {
    width: 35px;
    height: 35px;
    border: 1px solid #D4AF37;
    background: white;
    color: #D4AF37;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

    .indicator.active {
        background: #D4AF37;
        color: white;
    }

    .indicator:hover {
        background: #D4AF37;
        color: white;
    }

.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.luxury-card {
    position: relative;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    height: auto;
    min-height: 220px;
}

    .luxury-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.service-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.card-icon {
    font-size: 2rem;
    opacity: 0.9;
}

.card-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-body {
    flex-grow: 1;
    margin-bottom: 15px;
}

    .card-body h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .card-body p {
        font-size: 0.85rem;
        opacity: 0.9;
        margin-bottom: 15px;
        line-height: 1.4;
    }

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    opacity: 0.9;
}

.feature-icon {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.card-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.7rem;
    opacity: 0.8;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

    .card-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateX(-3px);
    }

@media (max-width: 1200px) {
    .hero-layout {
        grid-template-columns: 1fr 350px;
        gap: 25px;
    }

    .luxury-slider {
        height: 450px;
    }

    .slide-content {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .luxury-hero {
        padding: 40px 0;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sidebar-section {
        flex-direction: row;
        gap: 15px;
    }

    .luxury-card {
        flex: 1;
        min-height: 200px;
        padding: 20px;
    }

    .luxury-slider {
        height: 400px;
    }

    .card-body h3 {
        font-size: 1.1rem;
    }

    .card-body p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }

    .sidebar-section {
        flex-direction: column;
        gap: 15px;
    }

    .luxury-slider {
        height: 350px;
        border-radius: 15px;
    }

    .slide-content {
        padding: 0 30px;
    }

    .content-wrapper {
        text-align: center;
    }

    .action-buttons {
        justify-content: center;
    }

    .slider-navigation {
        bottom: 15px;
        padding: 10px 16px;
        gap: 12px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
    }

    .indicator {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .luxury-card {
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    .luxury-slider {
        height: 300px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .luxury-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .product-title {
        margin-bottom: 10px;
    }

    .product-description {
        margin-bottom: 15px;
    }

    .price-container {
        margin-bottom: 20px;
    }

    .primary-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .slider-navigation {
        bottom: 10px;
        padding: 8px 14px;
        gap: 8px;
    }

    .nav-btn {
        width: 32px;
        height: 32px;
    }

    .indicator {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .luxury-card {
        padding: 18px;
        min-height: 180px;
    }

    .card-header {
        margin-bottom: 12px;
    }

    .card-icon {
        font-size: 1.7rem;
    }

    .card-body h3 {
        font-size: 1rem;
    }

    .card-body p {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }

    .card-features {
        gap: 6px;
        margin-bottom: 12px;
    }

    .feature {
        font-size: 0.75rem;
        gap: 6px;
    }

    .card-stats {
        gap: 12px;
        margin-bottom: 12px;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .card-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .luxury-slider {
        height: 280px;
    }

    .slide-content {
        padding: 0 15px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .primary-btn {
        justify-content: center;
    }

    .slider-navigation {
        width: 90%;
        justify-content: space-between;
    }

    .slide-indicators {
        gap: 4px;
    }

    .indicator {
        width: 25px;
        height: 25px;
        font-size: 0.65rem;
    }
}

.slide-content * {
    max-width: 100%;
}

.content-wrapper {
    overflow: hidden;
}
