/* Базові налаштування та кольори */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #1a1a1a; /* Глибокий чорний */
    --accent-color: #c5a059; /* Золотий/Бронзовий (як браслети на фото) */
    --accent-hover: #a88746;
    --bg-light: #f9f9f9;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 { color: var(--primary-color); line-height: 1.3; margin-bottom: 15px; }
h2 { font-size: 32px; margin-bottom: 10px; }
.text-center { text-align: center; }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 40px; font-size: 18px; }
section { padding: 80px 0; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; border-radius: var(--border-radius); display: block; }

/* Кнопки */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.btn-primary { background-color: var(--primary-color); color: var(--white); }
.btn-primary:hover { background-color: var(--accent-color); }
.btn-secondary { background-color: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-secondary:hover { background-color: var(--primary-color); color: var(--white); }

/* Шапка (Header) */
.header { padding: 20px 0; background-color: var(--white); border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.header-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.logo { font-size: 24px; font-weight: 700; color: var(--primary-color); }
.social-links a { margin-right: 15px; font-weight: 600; color: var(--text-light); }
.social-links a:hover { color: var(--accent-color); }
.lang-switch .active { font-weight: bold; color: var(--primary-color); }
.phone { font-weight: 700; font-size: 18px; color: var(--primary-color); }
.phone:hover { color: var(--accent-color); }

/* Головний екран (Hero) */
.hero { background-color: var(--bg-light); padding: 60px 0; }
.hero-wrapper { display: flex; align-items: center; gap: 50px; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 42px; margin-bottom: 20px; }
.hero-text span { color: var(--accent-color); }
.hero-text p { font-size: 18px; color: var(--text-light); margin-bottom: 30px; }
.hero-image { flex: 1; text-align: right; }
.hero-image img { max-height: 600px; width: 100%; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Бренди (Trust Badges) */
.trust-badges { background-color: #f0f0f0; padding: 20px 0; }
.badges-title { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.badges-wrapper { display: flex; justify-content: center; gap: 40px; opacity: 0.5; flex-wrap: wrap; font-size: 20px; font-weight: 700; color: var(--primary-color); }

/* Сітка для карток (Послуги, Відгуки, Кейси) */
.services-grid, .cases-grid, .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }

/* Картки послуг */
.service-card { background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #eee; transition: var(--transition); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.link-more { color: var(--accent-color); font-weight: 600; margin-top: 15px; display: inline-block; }
.link-more:hover { text-decoration: underline; }

/* Картки кейсів */
.case-card { background: var(--white); border-radius: var(--border-radius); overflow: hidden; border: 1px solid #eee; text-align: left; }
.case-info { padding: 20px; }
.social-call { margin: 40px 0 20px; font-size: 18px; }
.cases-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq { background-color: var(--bg-light); }
.faq-wrapper { max-width: 800px; margin: 40px auto 0; }
details { background: var(--white); margin-bottom: 15px; padding: 20px; border-radius: var(--border-radius); border: 1px solid #eee; cursor: pointer; }
summary { font-weight: 600; font-size: 18px; outline: none; }
details p { margin-top: 15px; color: var(--text-light); }

/* Етапи та Ціни */
.process-steps { display: flex; gap: 20px; margin: 40px 0; flex-wrap: wrap; justify-content: center; text-align: center; }
.step { flex: 1; min-width: 200px; }
.step-num { font-size: 40px; font-weight: 700; color: var(--accent-color); margin-bottom: 10px; opacity: 0.8; }
.pricing-box { max-width: 700px; margin: 0 auto; background: var(--bg-light); padding: 40px; border-radius: var(--border-radius); border: 1px solid #eee; }
.pricing-box ul { list-style: none; margin-top: 20px; }
.pricing-box li { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px dashed #ccc; }
.pricing-note { font-size: 13px; color: #888; text-align: center; margin-top: 20px; }

/* Контакти та Форма */
.contacts { background-color: var(--bg-light); }
.contact-wrapper { display: flex; gap: 50px; margin-top: 40px; background: var(--white); padding: 40px; border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-details { flex: 1; }
.contact-details p { margin-bottom: 15px; font-size: 16px; }
.contact-details .btn-secondary { margin-top: 20px; }
.booking-form { flex: 1; }
.booking-form form { display: flex; flex-direction: column; gap: 15px; }
.booking-form input { padding: 15px; border: 1px solid #ddd; border-radius: var(--border-radius); font-size: 16px; font-family: inherit; }
.booking-form input:focus { outline: none; border-color: var(--accent-color); }

/* Підвал */
footer { background-color: var(--primary-color); color: var(--white); padding: 30px 0; text-align: center; }
.footer-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.legal-links a { color: #aaa; margin-right: 15px; font-size: 14px; text-decoration: underline; }
.legal-links a:hover { color: var(--white); }

/* Плаваюча кнопка Telegram */
.sticky-widget {
    position: fixed; bottom: 20px; right: 20px; z-index: 999;
    background-color: #2AABEE; width: 60px; height: 60px;
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 15px rgba(42, 171, 238, 0.4); transition: transform 0.3s ease;
}
.sticky-widget:hover { transform: scale(1.1); }

/* Адаптивність (Мобільні пристрої) */
@media (max-width: 768px) {
    .hero-wrapper, .contact-wrapper { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 32px; }
    .hero-image { text-align: center; }
    .header-wrapper { justify-content: center; }
    .badges-wrapper { gap: 20px; font-size: 16px; }
    .footer-wrapper { justify-content: center; flex-direction: column; }
    .pricing-box li { flex-direction: column; text-align: left; gap: 5px; }
}