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

ul li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #3d3d4e;
    background: linear-gradient(135deg, #7f5af0 0%, #5c4bc5 100%);
    min-height: 100vh;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: clip;
}

main {
    flex-grow: 1;
}

[class*="__container"] {
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 15px;
}

.header-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7f5af0, #5c4bc5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-menu {
    display: flex;
    gap: 2rem;
}

.header-menu a {
    font-weight: 500;
    color: #72757e;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.header-menu a:hover {
    color: #7f5af0;
    transform: translateY(-2px);
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #7f5af0, #5c4bc5);
    transition: width 0.3s ease;
}

.header-menu a:hover::after {
    width: 100%;
}

.title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.title__container {
    position: relative;
    z-index: 2;
}

.title__container h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.title__container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(226, 232, 240, 0.95) 100%);
    padding: 80px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(72, 187, 120, 0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(72, 187, 120, 0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(72, 187, 120, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
    height: fit-content;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: 300px !important;
    object-fit: cover;
    object-position: center;
}

.hero-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #3d3d4e;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7f5af0, #5c4bc5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.1rem;
    color: #72757e;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.9) 100%),
    url('{{ "assets/img/scena-na-kurinoi-ferme-s-pticei-i-lud-mi_11zon_11zon.webp"|theme }}') center/cover;
    padding: 80px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
}

.about__container {
    position: relative;
    z-index: 2;
}

.about__container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #7f5af0, #5c4bc5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about__container>p {
    text-align: center;
    font-size: 1.2rem;
    color: #72757e;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-contant {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-contant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #7f5af0, #5c4bc5);
    transition: all 0.3s ease;
}

.about-contant:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-contant:hover::before {
    left: 0;
}

.about-contant p {
    font-weight: 500;
    color: #3d3d4e;
    font-size: 1.1rem;
}

/* Solutions Section */
.solutions-section {
    background: white;
    padding: 80px 0;
}

.solutions__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solutions-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7f5af0, #5c4bc5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-text p {
    font-size: 1.1rem;
    color: #72757e;
    margin-bottom: 1.5rem;
}

.solutions-text ul {
    list-style: none;
}

.solutions-text li {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid #7f5af0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solutions-text li::before {
    content: '✦';
    color: #7f5af0;
    font-weight: bold;
    margin-right: 0.5rem;
}

.solutions-text li:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #7f5af0, #5c4bc5);
    color: white;
}

.solutions-text li:hover::before {
    color: white;
}

.solutions-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(5deg);
}

.solutions-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background: url('/assets/img/stado-ptic-na-pole_11zon_11zon.webp') center/cover;
}

/* Why Section */
.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 55, 72, 0.3);
    backdrop-filter: blur(1px);
}

.why__container {
    position: relative;
    z-index: 2;
}

.why__container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.why__container>p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.why-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.why-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.2);
}

.why-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #a2f2ff;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.9) 100%),
        url('/assets/img/vysokougol-nyi-vid-cyplat-na-pticevodstve_11zon_11zon.webp') center/cover;
    padding: 80px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
}

.testimonials__container {
    position: relative;
    z-index: 2;
}

.testimonials__container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7f5af0, #5c4bc5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials__container>p {
    text-align: center;
    font-size: 1.2rem;
    color: #72757e;
    margin-bottom: 3rem;
}

.testimonials-block {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonials-block::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #7f5af0;
    font-family: 'Playfair Display', serif;
}

.testimonials-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.2);
}

.testimonials-block h3 {
    color: #3d3d4e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonials-block p {
    color: #72757e;
    font-style: italic;
    line-height: 1.7;
}

/* Info Section */
.info-section {
    background: white;
    padding: 80px 0;
}

.info__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.info-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
}

.info-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7f5af0, #5c4bc5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-text p {
    font-size: 1.1rem;
    color: #72757e;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #5c4bc5 0%, #276749 100%);
    padding: 80px 0;
    position: relative;
    color: white;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.footer__container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
}

.contact-block {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.contact-block p,
.contact-block a {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: white;
}

.contact-block p:hover,
.contact-block a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-menu {
        display: none;
    }

    .title__container h1 {
        font-size: 2.5rem;
    }

    .hero__container,
    .solutions__container,
    .info__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-block {
        grid-template-columns: 1fr;
    }

    .contact-block {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image {
        transform: none;
    }

    .solutions-image {
        transform: none;
        order: -1;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.privacy__container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-block: 150px;
    color: white;
}