* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family:'Inter', sans-serif;
    background:#0f172a;
    color:white;
}

.container {
    max-width:1100px;
    margin:0 auto;
    padding:0 20px;
}

section {
    padding:80px 0;
}

h1 {
    font-size:42px;
    margin-bottom:20px;
}

h2 {
    font-size:32px;
    margin-bottom:40px;
    text-align:center;
}

.hero {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Адаптив */
@media (max-width: 900px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 34px;
    }

    .hero-buttons {
        justify-content: center;
    }
}


.btn {
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
    display:inline-block;
}

.primary {
    background:#2563eb;
    color:white;
}

.primary:hover {
    transform:translateY(-3px);
}

.whatsapp {
    background:#25D366;
    color:white;
}

.grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card {
    background:#1e293b;
    padding:25px;
    border-radius:16px;
    transition:0.3s;
}

.card:hover {
    transform:translateY(-5px);
    background:#243447;
}

.price {
    font-size:22px;
    font-weight:800;
    margin-top:10px;
    color:#3b82f6;
}

.gallery img {
    width:100%;
    border-radius:16px;
    transition:0.3s;
}

.gallery img:hover {
    transform:scale(1.05);
}

form {
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width:500px;
    margin:0 auto;
}

input, textarea {
    padding:14px;
    border:none;
    border-radius:10px;
}

footer {
    background:#020617;
    text-align:center;
    padding:40px 0;
}

.floating-btn {
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    padding:15px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.contact {
    background: linear-gradient(135deg,#0f172a,#111827);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    opacity: 0.8;
    margin-top: 15px;
}

.contact-form {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 15px 10px;
    background: rgba(255,255,255,0.07);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    outline: none;
}

.form-group textarea {
    resize: none;
    height: 100px;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 16px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: 0.3s;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: 5px;
    font-size: 12px;
    color: #3b82f6;
}

.full {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Адаптив */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
}
