/* Organic & Natural Style - Flower Shop */
:root {
    --color-light: #D1D3D0;
    --color-medium: #B78FB1;
    --color-dark: #A95993;
    --color-text: #2c2c2c;
    --color-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    background-image: url('../image/picture1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-medium) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-dark);
    text-decoration: none;
    transition: transform 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo:hover {
    transform: scale(1.05);
}

/* Header Contacts */
.header-contacts {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    max-width: 600px;
}

.contact-phone,
.contact-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s;
    border: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-phone:hover,
.contact-address:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-phone .icon,
.contact-address .icon {
    width: 18px;
    height: 18px;
    stroke: var(--color-dark);
    flex-shrink: 0;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0;
    padding: 0;
    position: relative;
}

nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

nav a:hover::before {
    left: 100%;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-medium), var(--color-dark));
    border-radius: 3px;
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--color-medium);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(169, 89, 147, 0.2);
}

nav a:hover::after {
    width: 80%;
}

/* Active menu item */
nav a.active {
    color: var(--color-dark);
    background: linear-gradient(135deg, rgba(183, 143, 177, 0.3) 0%, rgba(169, 89, 147, 0.3) 100%);
    border-color: var(--color-medium);
    box-shadow: 0 2px 8px rgba(169, 89, 147, 0.15);
}

nav a.active::after {
    width: 80%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--color-dark);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--color-dark);
    transition: all 0.3s;
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.menu-toggle.active {
    background: var(--color-dark);
    border-color: var(--color-dark);
}

.menu-toggle.active .menu-icon span {
    background: var(--color-white);
}

.menu-icon {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.menu-icon span {
    width: 100%;
    height: 3px;
    background: var(--color-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .menu-icon span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Banner */
.banner {
    background: linear-gradient(rgba(169, 89, 147, 0.1), rgba(183, 143, 177, 0.1));
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 300;
}

.banner p {
    font-size: 1.2rem;
    color: var(--color-text);
    max-width: 800px;
    margin: 0 auto;
}

.banner-image {
    width: 100%;
    max-width: 1200px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: var(--color-medium);
    margin-bottom: 1rem;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    background-color: var(--color-light);
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-dark);
    fill: none;
    stroke-width: 2;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: var(--color-dark);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-medium) 100%);
    color: var(--color-white);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--color-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--color-white);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Contact Page */
.contact-info {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.map-container {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Success Page */
.success-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.success-content {
    max-width: 800px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(209, 211, 208, 0.95) 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.success-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(169, 89, 147, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.success-icon {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    animation: checkmarkAnimation 0.6s ease-in-out;
}

@keyframes checkmarkAnimation {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.success-content h1 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.success-message {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 3rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.detail-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(169, 89, 147, 0.2);
    border-color: var(--color-medium);
}

.detail-card .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    stroke: var(--color-dark);
}

.detail-card h3 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.detail-card p {
    color: var(--color-text);
    font-size: 0.95rem;
    margin: 0;
}

.detail-card a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
}

.detail-card a:hover {
    color: var(--color-medium);
    text-decoration: underline;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-medium) 100%);
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(169, 89, 147, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(169, 89, 147, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Creative Contact Page */
.contact-hero {
    background: linear-gradient(135deg, rgba(169, 89, 147, 0.1) 0%, rgba(183, 143, 177, 0.1) 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 0 0 50px 50px;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(209, 211, 208, 0.9) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(169, 89, 147, 0.2);
    border-color: var(--color-medium);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-medium) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.contact-card:hover .contact-card-icon {
    transform: rotate(360deg) scale(1.1);
}

.contact-card-icon .icon {
    width: 40px;
    height: 40px;
    stroke: var(--color-dark);
}

.contact-card h3 {
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-card a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--color-medium);
    text-decoration: underline;
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(209, 211, 208, 0.95) 100%);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin: 3rem 0;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--color-light);
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-medium);
    box-shadow: 0 0 0 3px rgba(169, 89, 147, 0.1);
    background: var(--color-white);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-medium) 100%);
    color: var(--color-white);
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(169, 89, 147, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(169, 89, 147, 0.4);
}

.form-submit:active {
    transform: translateY(-1px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-medium) 100%);
    color: var(--color-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-white);
}

.cookie-banner-content a {
    color: var(--color-light);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-banner-content a:hover {
    color: var(--color-white);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--color-white);
    color: var(--color-dark);
}

.cookie-btn-accept:hover {
    background: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--color-white);
    border: none;
    text-decoration: underline;
    padding: 0.7rem 1rem;
}

.cookie-btn-settings:hover {
    color: var(--color-light);
}

.cookie-settings {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-settings.show {
    display: block;
}

.cookie-setting-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-setting-item label {
    flex: 1;
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-toggle.active {
    background: var(--color-white);
}

.cookie-toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--color-white);
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cookie-toggle.active .cookie-toggle-slider {
    transform: translateX(24px);
    background: var(--color-dark);
}

/* Policy Pages */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--color-dark);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-light);
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    color: var(--color-medium);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.policy-content p {
    margin-bottom: 1.2rem;
    text-align: left;
    font-size: 1.05rem;
}

.policy-content ul,
.policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.policy-content strong {
    color: var(--color-dark);
    font-weight: 600;
}

.policy-content a {
    color: var(--color-dark);
    text-decoration: underline;
    transition: color 0.3s;
}

.policy-content a:hover {
    color: var(--color-medium);
}

.policy-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-light);
    font-style: italic;
    color: var(--color-text);
    opacity: 0.8;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: nowrap;
        gap: 1rem;
        position: relative;
    }

    .logo {
        flex-shrink: 0;
    }

    .header-contacts {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: auto;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(180deg, var(--color-light) 0%, var(--color-medium) 50%, var(--color-dark) 100%);
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        overflow-y: auto;
        padding-top: 80px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 0.5rem;
        align-items: stretch;
    }

    nav ul li {
        margin: 0;
        padding: 0;
        border-bottom: none;
        opacity: 0;
        transform: translateX(20px);
        animation: slideInMenu 0.3s ease forwards;
    }

    nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
    nav.active ul li:nth-child(2) { animation-delay: 0.15s; }
    nav.active ul li:nth-child(3) { animation-delay: 0.2s; }
    nav.active ul li:nth-child(4) { animation-delay: 0.25s; }
    nav.active ul li:nth-child(5) { animation-delay: 0.3s; }
    nav.active ul li:nth-child(6) { animation-delay: 0.35s; }
    nav.active ul li:nth-child(7) { animation-delay: 0.4s; }

    @keyframes slideInMenu {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
        color: var(--color-white);
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 0.5rem;
        text-align: center;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    nav a::before {
        display: none;
    }

    nav a::after {
        display: none;
    }

    nav a:hover {
        color: var(--color-white);
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateX(5px) scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    nav a.active {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    }

    /* Mobile contacts in menu */
    .mobile-contacts {
        display: block;
        padding: 1.5rem;
        margin-top: 1rem;
        border-top: 2px solid rgba(255, 255, 255, 0.3);
        opacity: 0;
        transform: translateX(20px);
        animation: slideInMenu 0.3s ease 0.45s forwards;
    }

    .mobile-contacts .contact-phone,
    .mobile-contacts .contact-address {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        margin-bottom: 1rem;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        font-size: 1rem;
        color: var(--color-white);
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .mobile-contacts .contact-phone:hover,
    .mobile-contacts .contact-address:hover {
        background: rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .mobile-contacts .contact-phone .icon,
    .mobile-contacts .contact-address .icon {
        width: 20px;
        height: 20px;
        stroke: var(--color-white);
    }

    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .banner h1 {
        font-size: 1.8rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .banner-image {
        height: 250px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .header-container {
        padding: 0 10px;
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    nav {
        width: 100%;
        max-width: 100%;
    }

    .banner {
        padding: 2rem 1rem;
    }

    .banner h1 {
        font-size: 1.5rem;
    }

    main {
        padding: 1rem 10px;
    }

    .gallery-item img {
        height: 200px;
    }

    .map-container iframe {
        height: 300px;
    }

    .success-content {
        padding: 2rem 1.5rem;
    }

    .success-content h1 {
        font-size: 1.8rem;
    }

    .success-details {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .policy-content p {
        font-size: 1rem;
    }

    .cookie-banner {
        padding: 1.2rem 1.5rem;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-content {
        min-width: 100%;
        margin-bottom: 1rem;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-setting-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

