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

a {
    text-decoration: none;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #090909;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

body.hamburger-opened {
    overflow: hidden;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.navbar-wrapper {
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.navbar {
    margin: 25px 0;
    border-radius: 35px;
    position: fixed;
    top: 0;
    width: 100%;
    max-width: min(1210px, 95%);
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 995;
    transition: all 0.3s ease;
    height: 69px;
}

.glass-effect {
    backdrop-filter: blur(25px);
    border: 1px solid #181d1d;
    transition: all 0.3s ease;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #03befd;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 30px;
    flex-shrink: 0;
}

.logo:hover {
    text-shadow: 0 0 20px #03befd;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    color: #fff;
}

.nav-links a:hover {
    color: #03befd;
    text-shadow: 0 0 20px #03befd;
}

.contact-hero {
    margin-top: 130px;
    display: flex;
    min-height: 80vh;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact-left {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 450px;
}

.contact-left h3 {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 30px;
    text-align: left;
}

.contact-left p {
    font-size: 20px;
    text-align: left;
    color: #ffffffa8;
    margin-bottom: 30px;
}

.contact-right-hero {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    flex: 1 1 450px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-feature {
    display: flex;
    background: transparent;
    width: min(400px, 100%);
    height: 100px;
    font-size: 72px;
    padding: 20px;
    border-radius: 15px;
    align-items: center;
    gap: 15px;
}


.hero-feature i {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03befd;
    background: linear-gradient(135deg, rgba(3, 190, 253, 0.1) 0%, rgba(3, 190, 253, 0.05) 100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.hero-feature-content h4 {
    font-size: 22.5px;
    line-height: 1;
}

.hero-feature-content p {
    font-size: 17.5px;
    line-height: 1;
    color: #ffffffa8;
    margin-bottom: 0px;
}

.hero-feature:hover i {
    box-shadow: #03befd21 0 5px 15px;
    font-size: 28px;
}

.hero-feature:hover {
    transform: translateX(10px) scale(1.02);
}

.contact-right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
    flex: 1 1 450px;
    width: 50%;
}

.contact-form-container {
    width: min(500px, 100%);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(25px);
    border: 1px solid #181d1d;
    background: rgba(9, 9, 9, 0.3);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form-header h4 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-form-header p {
    color: #ffffffa8;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(24, 29, 29, 0.6);
    border: 1px solid #181d1d;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #03befd;
    box-shadow: 0 0 0 2px rgba(3, 190, 253, 0.2);
}

.form-input::placeholder {
    color: #ffffff66;
}

.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(24, 29, 29, 0.6);
    border: 1px solid #181d1d;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    resize: none;
    min-height: 120px;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #03befd;
    box-shadow: 0 0 0 2px rgba(3, 190, 253, 0.2);
}

.form-textarea::placeholder {
    color: #ffffff66;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #03befd;
}

.checkbox-label {
    font-size: 14px;
    color: #ffffffa8;
    line-height: 1.4;
}

.checkbox-label a {
    color: #03befd;
    transition: all 0.3s ease;
}

.checkbox-label a:hover {
    text-shadow: 0 0 10px #03befd;
}

.captcha-container {
    display: flex;
    justify-content: flex-start;
    padding: 20px 0px;
    width: 100%;
}

.cf-turnstile {
    width: 100%;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #03befd;
    border-radius: 12px;
    color: #03befd;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: scale(1.02);
}

.footer {
    color: #fff;
    padding: 3rem 2rem;
    border-top: 2px solid #181d1d;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.footer-left {
    flex: 1;
}

.footer-left img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.footer p {
    font-size: 1rem;
    margin: 10px 0;
    opacity: 0.8;
}

.createdBy {
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #03befd;
}

.createdBy:hover {
    transform: scale(1.03);
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #03befd;
    transform: scale(1.2);
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right h3 {
    color: #03befd;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-right ul {
    list-style: none;
}

.footer-right li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-right a:hover {
    color: #03befd;
    opacity: 1;
}

.toggle-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    height: 30px;
    cursor: pointer;
    z-index: 998;
}

.toggle-hamburger .line {
    height: 3px;
    background-color: #03befd;
    border-radius: 2px;
    width: 30px;
    transition: background-color 0.25s;
}

.toggle-hamburger:hover .line {
    background-color: #03befdaa;
}

.toggle-hamburger.open .line:nth-child(1) {
    animation: hamburger-icon-firstline 1s forwards;
}

.toggle-hamburger.open .line:nth-child(2) {
    animation: hamburger-icon-midline 1s forwards;
}

.toggle-hamburger.open .line:nth-child(3) {
    animation: hamburger-icon-lastline 1s forwards;
}

.toggle-hamburger.close .line:nth-child(1) {
    animation: hamburger-icon-firstline 1s forwards reverse;
}

.toggle-hamburger.close .line:nth-child(2) {
    animation: hamburger-icon-midline 1s forwards reverse;
}

.toggle-hamburger.close .line:nth-child(3) {
    animation: hamburger-icon-lastline 1s forwards reverse;
}

@keyframes hamburger-icon-firstline {
    0% {
        transform: none;
    }

    100% {
        transform: rotate(45deg) translateY(7px) translateX(7px);
    }
}

@keyframes hamburger-icon-midline {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes hamburger-icon-lastline {
    0% {
        transform: none;
    }

    100% {
        transform: rotate(-45deg) translateY(-7px) translateX(7px);
    }
}

.hamburger {
    display: flex;
    margin: 25px 0;
    border-radius: 35px;
    position: fixed;
    top: 80px;
    width: 100%;
    max-width: min(1250px, 95%);
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    z-index: 995;
    transition: all 0.3s ease;
    height: calc(100vh - 80px - 40px);
    text-align: center;
    flex-direction: column;
    gap: 20px;
}

.hamburger a {
    font-size: 35px;
    font-weight: 500;
    color: #fff;
}

.hamburger-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 994;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hamburger-wrapper.opened {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.hamburger-wrapper.closed {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

@media (max-width: 1040px) {
    .contact-hero {
        gap: 70px;
        flex-direction: column;
    }

    .contact-left,
    .contact-right,
    .contact-right-hero {
        width: 100%;
        align-items: center;
    }

    .contact-left h3 {
        text-align: center;
        font-size: 50px;
    }

    .contact-left p {
        text-align: center;
    }

    .hero-feature p {
        text-align: left;
        line-height: 1.2;
    }

}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .toggle-hamburger {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-right {
        text-align: center;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

}

@media (min-width: 901px) {
    .hamburger-wrapper {
        display: none !important;
    }
}

.notifications-container {
    position: fixed;
    top: 20px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    align-items: flex-end;
    width: fit-content;
    margin: 0 20px;
}


.notification {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 12px;
    backdrop-filter: blur(25px);
    border: 1px solid #181d1d;
    background: rgba(9, 9, 9, 0.3);
    color: #fff;
    font-size: 16px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease-out forwards;
    width: min(100%, 430px);
    max-width: 100%;
}

.notification .icon {
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.notification .message {
    flex-grow: 1;
}

.notification .close-btn {
    font-size: 20px;
    margin-left: 15px;
    cursor: pointer;
    color: #ffffffa8;
    transition: color 0.2s ease;
}

.notification .close-btn:hover {
    color: #fff;
}

.notification.success {
    color: #03befd;
}

.notification.error {
    color: #ff6347;
}


@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 18px 32px;
    font-size: 18px;
    z-index: 996;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.cookie-banner a {
    color: #03befd;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#cookie-accept {
    color: #03befd;
    border: 1px solid #03befd;
    border-radius: 999px;
    background: transparent;
    font-weight: 500;
    font-size: 1.1rem;
    width: 220px;
    margin-right: 10px;
    transition: transform 0.3s;
    padding: 10px;
    cursor: pointer;
}

#cookie-accept:hover {
    transform: scale(1.03);
}

#cookie-decline {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 999px;
    background: transparent;
    font-weight: 500;
    font-size: 1.1rem;
    width: 160px;
    margin-right: 10px;
    transition: transform 0.3s;
    padding: 10px;
    cursor: pointer;
}

#cookie-decline:hover {
    transform: scale(1.03);
}

.powered-by {
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #48b864;
}

.powered-by:hover {
    transform: scale(1.03);
}

.created-by {
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #03befd;
}

.created-by:hover {
    transform: scale(1.03);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        font-size: 16px;
    }

    .cookie-banner span {
        margin: 10px 70px;
        display: block;
        font-size: 23px;
    }

    .cookie-buttons {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    #cookie-accept,
    #cookie-decline {
        border-radius: 999px;
        text-align: center;
        width: 70%;
        font-size: 1rem;
        padding: 12px;
        margin: 0;
    }
}