* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f0f0f;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background: #000;
    padding: 20px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 600;
    font-size: 22px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 15px;
    opacity: 0.8;
}

.nav a:hover {
    opacity: 1;
}

.btn {
    background: #d3a16d;
    padding: 10px 20px;
    border-radius: 30px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    padding: 60px 0;
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero__content {
    width: 55%;
    position: relative;
    padding: 40px;
    background: linear-gradient(90deg, #2b1b0f 0%, #0f0f0f 100%);
    border-radius: 20px;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero__text {
    color: #c7c7c7;
    margin-bottom: 20px;
    font-size: 16px;
}

.hero__clients {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #ddd;
}

.clients-icon {
    font-size: 18px;
}

.plus {
    background: #d3a16d;
    color: #000;
    padding: 6px 12px;
    border-radius: 50%;
    margin-left: 10px;
    font-weight: bold;
}

.hero__cards {
    display: flex;
    gap: 20px;
}

.card {
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.card__title {
    font-weight: 600;
}

.card__price {
    font-size: 14px;
    color: #555;
}

.hero__image {
    width: 45%;
    position: relative;
}

.hero__image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2ecc71;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .hero__inner {
        flex-direction: column;
    }

    .hero__content,
    .hero__image {
        width: 100%;
    }

    .hero__title {
        font-size: 34px;
    }
}

.contact {
    padding: 80px 0;
    background: #111;
}

.contact__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact__info {
    width: 50%;
}

.contact__info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact__text {
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact__details p {
    margin-bottom: 10px;
    color: #ddd;
}

.contact__map {
    width: 50%;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    background: linear-gradient(135deg, #2b1b0f, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c89b6d;
    font-size: 20px;
    font-weight: 500;
}

.footer {
    background: #000;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
}

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.8s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}
.clients-gif {
    width: 24px;
    height: 24px;
}
.clients-gif {
    width: 24px;
    height: 24px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}
.clients-icon {
    width: 20px;
    height: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.plus {
    background: #d3a16d;
    color: #000;
    padding: 6px 12px;
    border-radius: 50%;
    margin-left: 10px;
    font-weight: bold;

    animation: heartbeat 1.9s infinite;
}

@keyframes heartbeat {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.2); }
    40%  { transform: scale(1); }
    60%  { transform: scale(1.25); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 0 0 rgba(211,161,109, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(211,161,109, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211,161,109, 0); }
}