@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-gold: var(--bs-primary);
    --dark-gold: #B8941F;
    --light-gold: #F4E4A6;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2c2c2c;
    --text-light: #6c757d;
    --delux-gold: var(--bs-primary);
    --delux-dark-gold: var(--bs-primary);
    --delux-black: #1a1a1a;
    --delux-charcoal: #2c2c2c;
    --delux-silver: #c0c0c0;
    --delux-white: #ffffff;
    --delux-gradient: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #b8941f 100%);
    --delux-dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --delux-luxury: linear-gradient(45deg, #000000, #434343, #000000);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.4)),                      url('https://blog.suisa.ch/wp-content/uploads/2022/05/Werbespots-scaled.jpg') center/cover;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
}

.btn-gold {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    color: white;
}

.btn-outline-gold {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    padding: 13px 38px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 250px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
    text-align: left;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary-gold);
}

.timeline-item:nth-child(odd)::before {
    right: -13px;
}

.timeline-item:nth-child(even)::before {
    left: -13px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

/* Offers Section */
.offers-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: white;
}

.offer-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: all 0.6s ease;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.offer-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light-gold);
}

.offer-list {
    list-style: none;
    padding: 0;
}

.offer-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 2rem;
}

.offer-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.offer-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 1.5rem 0;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.review-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.review-stars {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.review-role {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 4rem !important;
        padding-right: 1rem !important;
        text-align: left !important;
    }

    .timeline-item::before {
        left: 20px !important;
    }

    .offer-card,
    .review-card {
        margin-bottom: 2rem;
    }
}

.contact-section {
    background: var(--delux-charcoal);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, transparent 49%, rgba(212, 175, 55, 0.03) 50%, transparent 51%),
                linear-gradient(-45deg, transparent 49%, rgba(212, 175, 55, 0.03) 50%, transparent 51%);
    background-size: 60px 60px;
    animation: luxuryPattern 20s linear infinite;
}

@keyframes luxuryPattern {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 60px 60px, -60px 60px;
    }
}

.contact-form-container {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--delux-gold);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--delux-gradient);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.1;
}

.form-control-luxury {
    background: rgba(44, 44, 44, 0.9);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 20px 25px;
    color: var(--delux-white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.form-control-luxury:focus {
    background: rgba(44, 44, 44, 1);
    border-color: var(--delux-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    color: var(--delux-white);
    transform: translateY(-2px);
}

.form-control-luxury::placeholder {
    color: var(--delux-silver);
    opacity: 0.7;
}

.form-label-luxury {
    color: var(--delux-gold);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--delux-gradient);
    color: var(--delux-black);
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.luxury-modal .modal-content {
    background: var(--delux-luxury);
    border: 2px solid var(--delux-gold);
    border-radius: 25px;
    color: var(--delux-white);
}

.luxury-modal .modal-header {
    border-bottom: 1px solid var(--delux-gold);
}

.success-icon {
    font-size: 5rem;
    color: var(--delux-gold);
    margin-bottom: 20px;
    animation: luxuryPulse 1.5s ease-in-out;
}

@keyframes luxuryPulse {
    0% {
        transform: scale(0) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(180deg);
    }

    100% {
        transform: scale(1) rotate(360deg);
    }
}

.floating-cars {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-car {
    position: absolute;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.1);
    animation: floatCar 15s infinite linear;
}

.floating-car:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.floating-car:nth-child(2) {
    left: 50%;
    animation-delay: 5s;
}

.floating-car:nth-child(3) {
    left: 80%;
    animation-delay: 10s;
}

@keyframes floatCar {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.brand-logo {
    background: var(--delux-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}