/* ============================================
   БАЗОВІ НАЛАШТУВАННЯ ТА ЗМІННІ
   Тут легко змінювати всю палітру кольорів!
   ============================================ */

:root {
    /* Кольори - ЗМІНИ тут щоб змінити весь дизайн */
    --primary-color: #FFB6C1;      /* М'який рожевий */
    --secondary-color: #FFC0CB;     /* Світло-рожевий */
    --accent-color: #FF69B4;        /* Яскравий рожевий для акцентів */
    --dark-color: #2c2c2c;          /* Темний текст */
    --light-color: #ffffff;         /* Білий */
    --gray-color: #f8f9fa;          /* Світло-сірий фон */
    --text-color: #444444;          /* Колір тексту */
    
    /* Шрифти */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Відступи */
    --section-padding: 80px 20px;
    --container-max-width: 1200px;
}

/* Скидання стилів браузера */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Контейнер для контенту */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Загальні стилі секцій */
section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

/* ============================================
   НАВІГАЦІЙНЕ МЕНЮ
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Бургер меню для мобільних */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
}

/* ============================================
   СЕКЦІЯ ACCUEIL (ГОЛОВНА)
   ============================================ */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    text-align: center;
    padding: var(--section-padding);
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--light-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 1rem;
    font-weight: 300;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Курсор що блимає (typewriter) */
.typewriter-cursor {
    display: inline-block;
    animation: blink 1s infinite;
    font-weight: 400;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

#typewriter {
    display: inline-block;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--light-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Кнопка */
.btn-primary {
    display: inline-block;
    padding: 15px 45px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--light-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.4);
    filter: brightness(1.1);
}

/* Анімація появи */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   СЕКЦІЯ À PROPOS (ПРО МЕНЕ)
   ============================================ */

.about {
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-skills {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.skill-item span {
    font-weight: 500;
}

/* Анімований лічильник */
.counter {
    font-weight: 700;
    color: var(--accent-color);
}

/* ============================================
   СЕКЦІЯ PORTFOLIO
   ============================================ */

.portfolio {
    background: var(--gray-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px 20px 20px;
    color: var(--light-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* ============================================
   LIGHTBOX (перегляд фото на весь екран)
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* ============================================
   СЕКЦІЯ SERVICES
   ============================================ */

.services {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--gray-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light-color);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.price-tag {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--light-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.price-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

/* ============================================
   ПРАЙС-ЛИСТ (АКОРДЕОН)
   ============================================ */

.price-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.price-list-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.price-category {
    margin-bottom: 15px;
    background: var(--gray-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-category-header {
    width: 100%;
    padding: 20px 25px;
    background: var(--light-color);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.price-category-header:hover {
    background: var(--gray-color);
}

.price-category-header.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.price-category-header.active .category-title,
.price-category-header.active .arrow-icon {
    color: var(--light-color);
}

.category-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-title i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.price-category-header.active .category-title i {
    color: var(--light-color);
}

.arrow-icon {
    font-size: 1rem;
    color: var(--dark-color);
    transition: transform 0.3s ease;
}

.price-category-header.active .arrow-icon {
    transform: rotate(180deg);
}

.price-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.price-category-content.open {
    max-height: 500px;
}

.price-items {
    padding: 20px 25px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.price-item:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: var(--dark-color);
}

.service-price {
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
    margin-left: 20px;
}

/* Примітка під прайсом */
.price-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
}

.price-note i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* Інформація про терміни виконання */
.delivery-info {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.delivery-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 35px;
    background: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.delivery-card:hover {
    transform: translateY(-5px);
}

.delivery-card.urgent {
    border-left-color: #FF6B6B;
}

.delivery-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.delivery-card.urgent i {
    color: #FF6B6B;
}

.delivery-text h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.delivery-text p {
    color: var(--text-color);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

/* ============================================
   СЕКЦІЯ FAQ
   ============================================ */

.faq {
    background: var(--gray-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--light-color);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 1rem;
}

.faq-question:hover {
    background: var(--gray-color);
}

.faq-question.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--light-color);
}

.faq-question-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
}

.faq-question.active .faq-question-text {
    color: var(--light-color);
}

.faq-question-text i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.faq-question.active .faq-question-text i {
    color: var(--light-color);
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: var(--dark-color);
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--light-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px 25px;
    line-height: 1.8;
    color: var(--text-color);
}

/* ============================================
   СЕКЦІЯ CONTACT
   ============================================ */

.contact {
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eeeeee;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.8;
}

.form-note i {
    color: var(--accent-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

.location-info {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

.location-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.location-info h4 i {
    color: var(--accent-color);
    margin-right: 8px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   МОДАЛЬНЕ ВІКНО (для повідомлень)
   ============================================ */

.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.notification-modal.active {
    display: flex;
}

.notification-content {
    background: var(--light-color);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.notification-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.notification-icon.success {
    color: #4CAF50;
}

.notification-icon.error {
    color: #FF6B6B;
}

.notification-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.notification-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.btn-notification {
    padding: 12px 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--light-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.btn-notification:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   КНОПКА "ВГОРУ"
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 20px 20px;
    width: 100%;
    margin: 0;
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-tagline {
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-location {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ============================================
   АНІМАЦІЇ ПРИ ПРОКРУТЦІ
   ============================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   АДАПТИВНІСТЬ ДЛЯ МОБІЛЬНИХ
   ============================================ */

@media (max-width: 768px) {
    /* Загальні налаштування */
    :root {
        --section-padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Навігація */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--light-color);
        width: 100%;
        text-align: center;
        padding: 30px 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    /* Головна секція */
    .hero {
        padding: 120px 20px 80px;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        min-height: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .btn-primary {
        padding: 12px 35px;
        font-size: 0.95rem;
    }
    
    /* Секція Про мене */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-skills {
        align-items: center;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .portfolio-item {
        height: 300px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .price-list-title {
        font-size: 1.6rem;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .service-price {
        margin-left: 0;
    }
    
    .category-title {
        font-size: 1.05rem;
    }
    
    /* Терміни доставки */
    .delivery-info {
        flex-direction: column;
        align-items: stretch;
    }
    
    .delivery-card {
        justify-content: center;
    }
    
    /* Контакти */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-info {
        margin-top: 30px;
    }
    
    .map-container {
        max-width: 100%;
    }
    
    /* Кнопка вгору */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Для дуже маленьких екранів */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        min-height: 1.6rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
