@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --flex-gap: 4rem;
    --content-width: 90%;
    --primary-color: #3EACC4;
    --text-color: #2E3F55;
    --bg-color: #ffffff;
    --accent-color: #f8f9fa;
    --gradient-start: rgba(62, 172, 196, 0.08);
    --gradient-end: rgba(45, 138, 157, 0.03);
}

section#om {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 4rem 0 6rem;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

section#om::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(248, 249, 250, 0.7) 100%);
    transform: rotate(-12deg);
    z-index: 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

section#om .wrapper {
    display: flex;
    gap: var(--flex-gap);
    align-items: flex-start;
    width: var(--content-width);
    max-width: 1400px;
    position: relative;
    z-index: 2;
}

.content-side {
    flex: 1.2;
    padding-right: 3rem;
}

.text-content {
    max-width: 800px;
}

.text-content h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(120deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.text-content p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
    font-weight: 400;
}

.text-content .lead {
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 2.5rem;
}

.text-content .highlight {
    background: linear-gradient(120deg, var(--gradient-start), transparent);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    position: relative;
    margin: 3rem 0;
}

.text-content .highlight::before {
    content: '🌱';
    position: absolute;
    top: -15px;
    left: -15px;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    margin: 3.5rem 0;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(62, 172, 196, 0.1);
}

.contact-info p {
    font-size: 1.5rem;
    line-height: 1.7;
}

.cta-text {
    font-size: 1.7rem !important;
    color: var(--primary-color) !important;
    text-align: center;
    margin-top: 2rem;
    font-weight: 600 !important;
}

.visual-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.image-container,
.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.image-container::after,
.map-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.image-container:hover,
.map-container:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(62, 172, 196, 0.15);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.image-container:hover .main-image {
    transform: scale(1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

.buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary-color), #2d8a9d);
    color: white;
    box-shadow: 0 4px 15px rgba(62, 172, 196, 0.2);
}

.btn.secondary {
    background: white;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(62, 172, 196, 0.25);
}

.btn.secondary:hover {
    background: var(--accent-color);
    border-color: rgba(62, 172, 196, 0.2);
}

@media screen and (max-width: 1200px) {
    :root {
        --content-width: 95%;
        --flex-gap: 3rem;
    }

    .text-content h2 {
        font-size: 2.6rem;
    }

    .text-content p {
        font-size: 1.3rem;
    }

    .text-content .lead {
        font-size: 1.6rem;
    }

    .contact-info p {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 900px) {
    section#om {
        padding: 3rem 0;
    }

    section#om::before {
        opacity: 0.5;
    }

    section#om .wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .content-side {
        padding-right: 0;
    }

    .text-content {
        padding: 0 1.5rem;
    }

    .visual-side {
        padding: 0 1.5rem;
    }

    .buttons {
        justify-content: center;
    }

    .main-image {
        height: 350px;
    }

    .text-content h2 {
        font-size: 2.4rem;
    }

    .text-content p {
        font-size: 1.25rem;
    }

    .text-content .lead {
        font-size: 1.5rem;
    }

    .contact-info p {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 600px) {
    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .text-content .lead {
        font-size: 1.3rem;
    }
}