* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #001f4d, #0044cc, #00b3ff);
    background-attachment: fixed;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Гарантированный каллиграфический стиль для Podo Space */
.logo {
    font-family: 'Alex Brush', 'Apple Chancery', 'Brush Script MT', 'Comic Sans MS', cursive;
    font-size: 38px;
    font-weight: 300; /* Делаем шрифт максимально тонким, как на визитке */
    letter-spacing: 2px;
    line-height: 0.9;
    font-style: italic; /* Добавляем элегантный наклон */
}

.logo span {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    font-weight: 300;
}

.veteran-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00ffff;
    opacity: 0.9;
    margin-top: 4px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    font-style: normal; /* Название бизнес-статуса оставляем строгим */
}

nav a {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.hero {
    text-align: center;
    padding: 140px 20px;
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.85;
    font-weight: 300;
}

.hero-action-container {
    display: inline-block;
    position: relative;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #00ffff, #0088ff);
    color: #001133;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 25px rgba(0, 255, 255, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.7);
}

.hero-social-dropdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.4s ease;
}

.hero-social-dropdown.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-social-dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.hero-social-dropdown a:hover {
    transform: scale(1.15);
}

.hero-social-dropdown img {
    width: 24px;
    height: 24px;
}

.hero-social-dropdown .icon-vb:hover { background: #7360f2; box-shadow: 0 0 15px rgba(115, 96, 242, 0.5); }
.hero-social-dropdown .icon-tg:hover { background: #0088cc; box-shadow: 0 0 15px rgba(0, 136, 204, 0.5); }
.hero-social-dropdown .icon-wa:hover { background: #25d366; box-shadow: 0 0 15px rgba(37, 211, 102, 0.5); }

.content-section {
    max-width: 1050px;
    margin: 70px auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.content-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: #00ffff;
    margin-top: 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 35px 0 0 0;
}

.services-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.services-list li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 14px;
    background: linear-gradient(90deg, #00ffff, #0044cc);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

.services-list li:last-child {
    margin-bottom: 0;
}

.contacts-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
}

.contact-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.1);
}

.contact-item strong {
    color: #00ffff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.social-icons a:hover {
    transform: scale(1.15);
}

.social-icons img {
    width: 18px;
    height: 18px;
}

.icon-tg:hover { background: #0088cc !important; }
.icon-vb:hover { background: #7360f2 !important; }
.icon-wa:hover { background: #25d366 !important; }

footer {
    text-align: center;
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 120px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .contacts-wrapper {
        flex-direction: column;
    }
    .navbar {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .logo-group {
        align-items: center;
    }
    nav a {
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 36px;
    }
}
/* Кнопка перемикання мов */
.lang-switch {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(0, 255, 255, 0.4);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
    margin-left: 30px;
    transition: all 0.3s;
}

.lang-switch:hover {
    background: #00ffff;
    color: #001133;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Сітка для завантажених фотографій Анастасії */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.portfolio-item {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

.empty-portfolio {
    text-align: center;
    font-style: italic;
    opacity: 0.7;
    grid-column: 1 / -1;
    padding: 20px;
}