@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

:root {
    --background-color:  #f6f6f6;
    --first-color:    #04819E;
    --dark-color:   rgb(11, 103, 124);
    --secondary-color:    #ffc7c7;
    --third-color:    #38B2CE;
    --alternative-color:    #8785a2;
    --main-color: #cddfe8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.directions {
    padding: 100px 0 70px;
    margin: 7% 5%;
    position: relative;
    z-index: 5;
    background-color: var(--background-color);
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Montserrat, 'Helvetica Neue', sans-serif;
    background-color: var(--background-color);
    color: #1a2a3a;
    line-height: 1.4;
}

.container {
    margin: 0 4%;
    padding: 24px 24px;
}

.header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.7s ease,
    backdrop-filter 0.7s ease,
    padding 0.7s ease,
    box-shadow 0.7s ease;
    padding: 16px 0;
}

.header.scrolled {
    background-color: #070707e5;
    backdrop-filter: blur(8px);
}

.img-logo {
    width: 70px;
    height: 70px;
}

.img-icon {
    width: 30px;
    height: 30px;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.slide-left {
    transform: translateX(-30px);
}
.scroll-animate.slide-left.visible {
    transform: translateX(0);
}

.scroll-animate.slide-right {
    opacity: 0;
    transform: translateX(70px);
}
.scroll-animate.slide-right.visible {
    opacity: 1;
    transform: translateX(0px);
}

.video-div {
    min-height: 100dvh;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    align-items: flex-end;
    margin: 0;
    background-color: #161516;
}

.main-video {
    width: 100%;
    align-items: self-end;
    object-fit: cover;
    margin: 0 0 0 0;
    overflow-clip-margin: content-box;
    overflow: clip;
}

.land-button {
    opacity: 0;
    animation: slideRight 1s ease-out forwards;
    font-size: 1rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Montserrat, 'Helvetica Neue', sans-serif;
    padding: 1.5rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    background-color: #04819E;
    font-weight: 600;
    margin-top: 20rem;
    border-radius: 2rem;
    border-width: 0px;
    transition: background-color 0.7s ease,
    backdrop-filter 0.7s ease,
    padding 0.7s ease;
}

.land-button:hover {
    cursor: pointer;
    color: #ffffff;
    background-color: #292929;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 16px;
}
.logo h1 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--third-color), var(--first-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.logo p {
    font-size: 0.8rem;
    color: #4b6a7c;
}
.contact-email {
    display: block;
    background: #383838;
    padding: 8px 18px;
    border-radius: 60px;
    font-weight: 500;
}
.contact-email a {
    text-decoration: none;
    color: #d4edf3;
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.contact-email a:hover {
    text-decoration: underline;
}

.hero-fullscreen {
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fc 0%, #e8eef5 100%);
    position: relative;
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 120px 0 60px;
    padding: 5% auto;
    gap: 48px;
    align-items: center;
    justify-content: space-between;
}
.hero-text {
    flex: 1.2;
    color: #000;
}
.hero-badge {
    animation: slideUp 0.6s ease-out forwards;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--first-color);
    font-weight: 600;
    margin-bottom: 16px;
}
.hero-text h1 {
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    font-size: 3rem;
    font-weight: 700;
    line-height: 0.8;
    margin-bottom: 22px;
    color: #ececec;
}
.hero-text p {
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    font-size: 1.2rem;
    color: #bebebe;
    margin-bottom: 28px;
    max-width: 85%;
}
.hero-stats {
    display: flex;
    gap: 28px;
    flex-direction: row-reverse;
    flex-wrap: wrap;
}
.stat {
    animation: show 2s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
}

.stat p {
    font-size: 1.2rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--first-color), var(--third-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4),
    0 2px 0 rgba(0, 0, 0, 0.2),
    0 3px 8px rgba(0, 0, 0, 0.5);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e6b5e;
}
.hero-right {
    flex: 0.8;
    background: #eef3fc;
    padding: 28px 24px;
    border-radius: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1px solid #dce9f2;
}

.hero-right h3 {
    margin-bottom: 12px;
}
.mail-line {
    background: white;
    padding: 12px 16px;
    border-radius: 48px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 1rem;
    border: 1px solid #cddfe8;
}

.directions {
    padding: 70px 0;
}
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #0a2e3f;
}
.section-sub {
    text-align: center;
    color: #4d6a7c;
    margin-bottom: 48px;
}
.cards-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.card {
    padding: 12px 12px;
    transition: all 1.2s ease;
    display: flex;
    flex-direction: row;
}
.card-image {
    width: 96px;
    height: 96px;
    font-size: 2rem;
    margin-bottom: 16px;
}

.card-text {
    font-size: 2rem;
    margin-left: 2rem;
}


.card h3 {
    font-size: 2rem;
    color: var(--first-color);
    padding-bottom: 12px;
    font-weight: 600;
}
.card p {
    padding-top: 12px;
    border-top: 1px solid #879a9e;
    color: #616161;
    font-size: 0.95rem;
    line-height: 1.45;
}
.okwad {
    position: relative;
    margin: 0;
    padding: 4% 8%;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.okwad-div {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px 5px;
    font-size: 0.85rem;
    color: #ffffff;
    padding: 30px;
    border-radius: 24px;
    backdrop-filter: blur(2px);
}

.logo-horizontal {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.mail-setup {
    background: white;
    padding: 48px 40px;
    border-radius: 40px;
    margin: 30px 0 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1px solid #dfeaf2;
}

.mail-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.mail-text {
    flex: 1;
}

.mail-text h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    background: #1a6c7e;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: 0.2s;
}

.btn:hover {
    background: #0f4f5e;
}

.mail-image {
    flex: 0.6;
    text-align: center;
    font-size: 4rem;
}

.confidential {
    padding: 8% 10%;
    position: relative;
    z-index: 3;
}

.conf-div {
    position: relative;
    margin: 0;
    overflow: hidden;
    min-height: 400px;
}

.conf-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.conf-video .main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.conf-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 6;
    pointer-events: none;
}

.confidential h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--third-color);
    z-index: 10;
}

.confidential p {
    max-width: 680px;
    opacity: 0.85;
    font-size: 1rem;
    margin-bottom: 25px;
    color: #b1b1b1;
    z-index: 10;
}

.conf-inner h3 {
    z-index: 10;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

input:focus,
textarea:focus,
button:focus,
select:focus,
a:focus {
    outline: none;
    box-shadow: none;
}

input:focus,
textarea:focus {
    -webkit-tap-highlight-color: transparent;
}

.conf-inner input {
    color: #dadada;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    width: 100%;
    border: 0;
    padding: 6px;
    background: none;
    border-bottom: 1px solid rgba(206, 206, 206, 0.779);
}

.conf-inner p {
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.85;
    font-size: 1rem;
    color: #959799;
}

.conf-inner i {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.conf-inner {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

footer {
    text-align: center;
    padding: 40px 0 30px;
    color: #d7d8d8;
    background-color: #252525;
    font-size: 0.85rem;
}

.modal-button {
    animation: slideUp 1s ease-out forwards;
    font-size: 1rem;
    font-family: system-ui, -apple-system, 'Segoe UI', Montserrat, 'Helvetica Neue', sans-serif;
    padding: 1.5rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    background-color: #04819E;
    font-weight: 600;
    margin-top: 2rem;
    border-radius: 2rem;
    border-width: 0px;
    transition: background-color 0.7s ease,
    backdrop-filter 0.7s ease,
    padding 0.7s ease;
}

.modal-button:hover {
    cursor: pointer;
    color: #ffffff;
    background-color: #292929;
}

.contact-modal {
    padding: 8px 18px;
    font-weight: 500;
    border-bottom-color: var(--first-color);
    border-bottom-width: 2px;
    width: 80%;
}

.contact-modal a {
    text-decoration: none;
    color: #d4edf3;
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: center;
}

.contact-modal a:hover {
    text-decoration: underline;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    border-radius: 32px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    padding: 20px 24px;
    margin-left: 25px;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #f2f6fa;
    margin: 0;
}

.modal-close {
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    background: #202020;
}

.modal-body p {
    margin-bottom: 20px;
    color: #4d6a7c;
}

.contact-form-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.contact-form-section.active {
    animation: slideDown 0.4s ease-out;
    display: flex;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 90%;
    background: #ffffff;
    border-radius: 32px;
    padding: 48px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8edf2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.contact-form-header {
    opacity: 0;
    animation: show 0.5s ease-out forwards;
    text-align: center;
    margin-bottom: 32px;
}

.contact-form-header i {
    font-size: 3rem;
    color: var(--first-color);
    margin-bottom: 16px;
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #0a2e3f;
    margin-bottom: 12px;
}

.contact-form-header p {
    color: #6b8a9c;
    font-size: 1rem;
}

.form-group {
    opacity: 0;
    margin-bottom: 20px;
    animation: slideRight 0.4s ease-out forwards;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #dce5ed;
    border-radius: 20px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafcfd;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--first-color);
    box-shadow: 0 0 0 3px rgba(4, 129, 158, 0.1);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--first-color), var(--third-color));
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(4, 129, 158, 0.3);
    filter: brightness(1.05);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    opacity: 0;
    animation: show 1s ease-out forwards;
    animation-delay: 1s;
    text-align: center;
    font-size: 0.75rem;
    color: #8aa4b4;
    margin-top: 20px;
}

.land-button-div {
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    align-self: center;
    padding-bottom: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 8px 18px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    border-radius: 10px;
    border-bottom-color: #04819E;
    border-width: 2px;
}

.nav-link.active {
    color: #ffffff;
    color: #ffffff;
    border-radius: 10px;
    border-bottom-color: #04819E;
    border-width: 2px;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--first-color);
    border-radius: 2px;
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.header.scrolled .nav-link:hover {
    color: #ffffff;
}

.header.scrolled .nav-link.active {
    color: #ffffff;
    border-radius: 10px;
    border-bottom-color: #04819E;
    border-width: 2px;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.burger-line {
    width: 28px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

#heroCtaBtn:hover {
    color: #FFFFFF;
    cursor: pointer;
}

.nav-div {

    display: none;
    flex-direction: column;
    border-radius: 10px;
    border-top-color: #04819E;
    border-width: 2px;
}

.nav-div a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    text-decoration: none;
    padding-bottom: 10px;
}

@media (max-width: 1000px) {
    .logo h1 {font-size: 1.6rem;}
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p { max-width: 100%; }
    .hero-grid { flex-direction: column; }
    .section-title { font-size: 1.8rem; }

    .img-icon {
        width: 28px;
        height: 28px;
    }
    .img-logo {
        width: 60px;
        height: 60px;
    }
    .land-button {
        font-size: 0.9rem;
        padding: 1.4rem 2.4rem;
        text-transform: uppercase;
        letter-spacing: 1.4px;
        color: #ffffff;
        background-color: #04819E;
        font-weight: 600;
        margin-top: 1.8rem;
        border-radius: 1.8rem;
    }
    .directions-image {
        display: none;
    }
}

@media (max-width: 820px) {
    .nav-div {
        display: flex;
    }
    .burger-btn {
        display: flex;
        order: 2;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(12px);
        padding: 80px 32px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(255,255,255,0.05);
        overflow-y: auto;
        align-items: flex-start;
        order: 3;
        width: 75%;
        border-top: none;
        padding-top: 80px;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        flex-wrap: nowrap;
    }

    .nav-link {
        display: block;
        padding: 14px 20px;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
        border-radius: 16px;
        transition: all 0.3s ease;
        width: 100%;
        text-align: left;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
    }

    .nav-link.active {
        background: rgba(4, 129, 158, 0.2);
        color: var(--first-color);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    .nav-contacts {
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid rgba(255,255,255,0.06);
        width: 100%;
    }

    .nav-contacts a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        padding: 10px 0;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .nav-contacts a:hover {
        color: #ffffff;
    }

    .contact-email {
        display: none;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .contact-form-header h2 {
        font-size: 1.6rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
    }

    .submit-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    .okwad {
        padding: 15% 7%;
    }
    .card-text h3 {
        font-size: 1.5rem;
    }
    .card-image {
        width: 72px;
        height: 72px;
    }
    .header {
        padding: 8px 0px;
    }
    .logo h1 {font-size: 1.4rem;}
    .hero-text h1 { font-size: 2.2rem; }
    .hero-text p { max-width: 100%; }
    .hero-grid { flex-direction: column; }
    .section-title { font-size: 1.8rem; }
    .img-icon {
        width: 24px;
        height: 24px;
    }
    .img-logo {
        width: 55px;
        height: 55px;
    }
    .land-button {
        font-size: 0.8rem;
        padding: 1.2rem 2rem;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: #ffffff;
        background-color: #04819E;
        font-weight: 600;
        margin-top: 1.4rem;
        border-radius: 1.4rem;
    }
    .stat p {
        font-size: 0.9rem;
    }
    .hero-grid {
        padding-top: 15%;
        padding: 3% auto;
        gap: 20px;
    }
    .land-button-div {
        animation-delay: 1s;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        text-align: center;
    }
    .conf-inner {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .conf-inner input {
        padding-bottom: 20px;
    }
}

@media (max-width: 500px) {
    .logo-horizontal {
        gap: 15px;
    }
    .nav-link {
        padding: 4px 10px;
        font-size: 0.9rem;
    }
    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .contact-form-header h2 {
        font-size: 1.4rem;
    }
    .logo h1 {font-size: 1.2rem;}
    .hero-text h1 { font-size: 2.1rem; }
    .hero-text p { max-width: 100%; }
    .hero-grid { flex-direction: column; }
    .section-title { font-size: 1.8rem; }
    .img-icon {
        width: 25px;
        height: 25px;
    }
    .img-logo {
        width: 25px;
        height: 25px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .logo p {
        display: none;
    }
}

@media (max-height: 1200px) {
    .hero-grid {
        padding: 100px 0 40px;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .land-button {
        padding: 1rem 2rem;
        margin-top: 1rem;
    }
}

.toast-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #1a6c7e;
    color: #fff;
    padding: 18px 24px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    font-size: 15px;
    max-width: 320px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-notification.error {
    background: #b33a3a;
}

.toast-notification i {
    font-size: 20px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .toast-notification {
        right: 16px;
        left: 16px;
        max-width: none;
    }
}