/* Base Styles */
:root {
--primary-color: #00aaf0;
    --primary-dark: #1b5adb;
    --secondary-color: #9bf000;
    --accent-color: #4CD964;
    --dark-color: #2A2D43;
    --light-color: #F8F9FA;
    --gray-color: #6C757D;
    --light-gray: #E9ECEF;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.section-title {
    position: relative;
    margin-bottom: 60px;
    font-size: 2.2rem !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-title-main {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

/* Notification Banner */
.notification-banner {
    background-color: #FFEAA7;
    color: #2D3436;
    padding: 12px 0;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 1000;
}

.notification-banner a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
}

.notification-banner a:hover {
    color: var(--primary-color);
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.logo-360 {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: 30px;
    position: relative;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

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

.cta-nav .btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--dark-color);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 30px;
}

.btn-hero {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.el1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.el2 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 10%;
    animation-delay: 1s;
}

.el3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 20%;
    animation-delay: 2s;
}

.el4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Services Section */
.services {
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    color: white;
}

.service-card:hover .service-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

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

.service-card h4 {
    margin-bottom: 15px;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.portfolio-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.portfolio-info {
    padding: 25px;
}

.portfolio-info h4 {
    margin-bottom: 10px;
}

.portfolio-item {
  position: relative; /* важно */
}

.portfolio-item-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  text-indent: -9999px; /* скрыть текст */
  overflow: hidden;
}


/* Process Section */
.process {
    background-color: var(--light-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-features {
    margin-bottom: 30px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--light-gray);
}

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

/*Bottom pricing*/
/* ========== ДОДАТКОВІ ПОСЛУГИ ТАБЛИЦЯ ========== */
.services-table-section {
    padding: 80px 0;
  /*  background-color: var(--light-color);*/
}

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

.services-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

/* Заголовок таблицы (caption) */
.services-table caption {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
    padding: 24px 30px;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--dark-color);
    border-bottom: 2px solid var(--light-gray);
    caption-side: top;
    letter-spacing: -0.01em;
}

/* Заголовки колонок */
.services-table thead tr {
    background-color: var(--light-gray);
    border-bottom: 2px solid var(--secondary-color);
}

.services-table th {
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    padding: 18px 30px;
    text-align: left;
    white-space: nowrap;
}

/* Ячейки */
.services-table td {
    padding: 18px 30px;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-color);
    vertical-align: top;
    font-size: 0.95rem;
}

/* Выравнивание цен */
.services-table td:last-child,
.services-table th:last-child {
    text-align: right;
    font-weight: 600;
    white-space: nowrap;
    color: var(--primary-color);
}

/* Четные строки */
.services-table tbody tr:nth-child(even) {
    background-color: rgba(0, 170, 240, 0.02);
}

/* Ховер для десктопа */
@media (hover: hover) {
    .services-table tbody tr:hover {
        background: linear-gradient(90deg, rgba(0, 170, 240, 0.04), rgba(155, 240, 0, 0.04));
        transition: var(--transition);
    }
    
    .services-table tbody tr:hover td:last-child {
        color: var(--secondary-color);
    }
}

/* Стиль для "индивидуальный расчет" */
.services-table td:last-child:contains("індивідуальний"),
.services-table td:last-child:contains("индивидуальный") {
    font-style: italic;
    font-weight: 400;
    color: var(--gray-color);
}

/* ========== АДАПТИВ ========== */

/* Планшеты */
@media screen and (max-width: 992px) {
    .services-table-section {
        padding: 60px 0;
    }
    
    .services-table caption {
        font-size: 1.3rem;
        padding: 20px 24px;
    }
    
    .services-table th,
    .services-table td {
        padding: 16px 24px;
    }
}

/* Мобилки — карточки */
@media screen and (max-width: 768px) {
    .services-table-section {
        padding: 50px 0;
    }
    
    .services-table-container {
        padding: 0 16px;
    }
    
    /* Сбрасываем таблицу */
    .services-table,
    .services-table thead,
    .services-table tbody,
    .services-table tr,
    .services-table td {
        display: block;
    }
    
    /* Прячем заголовки */
    .services-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }
    
    /* Капшн теперь как заголовок секции */
    .services-table caption {
        display: block;
        font-size: 1.5rem;
        padding: 20px;
        margin-bottom: 16px;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        background: white;
        border-bottom: 3px solid var(--secondary-color);
        text-align: center;
    }
    
    /* Карточка */
    .services-table tr {
        background: white;
        margin-bottom: 20px;
        padding: 24px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        border: 1px solid var(--light-gray);
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        transition: var(--transition);
    }
    
    .services-table tr:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-4px);
    }
    
    /* Описание */
    .services-table td:first-child {
        width: 70%;
        padding: 0;
        border: none;
        font-weight: 600;
        color: var(--dark-color);
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Цена */
    .services-table td:last-child {
        width: 28%;
        padding: 0;
        border: none;
        text-align: right;
        font-weight: 700;
        color: var(--primary-color);
        font-size: 1.1rem;
        white-space: normal;
    }
    
    /* Индивидуальный расчет на мобилках */
    .services-table td:last-child:contains("індивідуальний"),
    .services-table td:last-child:contains("индивидуальный") {
        color: var(--gray-color);
        font-size: 0.95rem;
    }
}

/* Очень маленькие экраны */
@media screen and (max-width: 480px) {
    .services-table caption {
        font-size: 1.3rem;
        padding: 16px;
    }
    
    .services-table tr {
        padding: 20px;
        flex-direction: column;
    }
    
    .services-table td:first-child {
        width: 100%;
        margin-bottom: 16px;
        font-size: 0.95rem;
    }
    
    .services-table td:last-child {
        width: 100%;
        text-align: left;
        border-top: 1px dashed var(--light-gray);
        padding-top: 16px;
        font-size: 1.1rem;
    }
}

/* SEO Content */
.seo-content {
    background-color: var(--light-color);
}

.seo-subtitle {
    font-size: 1.5rem !important;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.seo-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

/* Contact Section */
.contact-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-centered {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-item-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item-centered:hover .contact-icon-wrapper {
    transform: rotate(15deg) scale(1.1);
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.contact-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
}

.contact-value:hover {
    color: var(--primary-color);
}

.contact-messengers-centered {
    margin-top: 40px;
    margin-bottom: 40px;
}

.messengers-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.messenger-buttons-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.messenger-btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    min-width: 160px;
    justify-content: center;
}

.messenger-btn.viber {
    background-color: #7360F2;
    color: white;
}

.messenger-btn.telegram {
    background-color: #2AABEE;
    color: white;
}

.messenger-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    opacity: 0.9;
}

.contact-cta {
    margin-top: 40px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-call i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.new-site-link a {
    color: var(--primary-color);
    font-weight: 600;
}

.new-site-link a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .contact-info-centered {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .cta-nav {
        margin-top: 10px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2, .section-title, .section-title-main {
        font-size: 1.8rem !important;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.3rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .messenger-buttons-centered {
        flex-direction: column;
        align-items: center;
    }
    
    .messenger-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .contact-item-centered {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-hero {
        width: 100%;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-centered {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-value {
        font-size: 1.1rem;
    }
}